File tree 4 files changed +20
-6
lines changed
packages/datadog-api-client-v2/models
4 files changed +20
-6
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2024-08-09 16:10:43.432822 ",
8
- "spec_repo_commit": "4a0f9e08 "
7
+ "regenerated": "2024-08-12 13:34:55.112510 ",
8
+ "spec_repo_commit": "0360f6c8 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-08-09 16:10:43.451410 ",
13
- "spec_repo_commit": "4a0f9e08 "
12
+ "regenerated": "2024-08-12 13:34:55.131608 ",
13
+ "spec_repo_commit": "0360f6c8 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -8496,6 +8496,7 @@ components:
8496
8496
created_at:
8497
8497
description: Creation date of the application key.
8498
8498
example: '2020-11-23T10:00:00.000Z'
8499
+ format: date-time
8499
8500
readOnly: true
8500
8501
type: string
8501
8502
key:
@@ -23415,6 +23416,10 @@ components:
23415
23416
icon:
23416
23417
description: URL of the user's icon.
23417
23418
type: string
23419
+ mfa_enabled:
23420
+ description: If user has MFA enabled.
23421
+ readOnly: true
23422
+ type: boolean
23418
23423
modified_at:
23419
23424
description: Time that the user was last modified.
23420
23425
format: date-time
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export class FullApplicationKeyAttributes {
13
13
/**
14
14
* Creation date of the application key.
15
15
*/
16
- "createdAt" ?: string ;
16
+ "createdAt" ?: Date ;
17
17
/**
18
18
* The application key.
19
19
*/
@@ -49,7 +49,8 @@ export class FullApplicationKeyAttributes {
49
49
static readonly attributeTypeMap : AttributeTypeMap = {
50
50
createdAt : {
51
51
baseName : "created_at" ,
52
- type : "string" ,
52
+ type : "Date" ,
53
+ format : "date-time" ,
53
54
} ,
54
55
key : {
55
56
baseName : "key" ,
Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ export class UserAttributes {
30
30
* URL of the user's icon.
31
31
*/
32
32
"icon" ?: string ;
33
+ /**
34
+ * If user has MFA enabled.
35
+ */
36
+ "mfaEnabled" ?: boolean ;
33
37
/**
34
38
* Time that the user was last modified.
35
39
*/
@@ -92,6 +96,10 @@ export class UserAttributes {
92
96
baseName : "icon" ,
93
97
type : "string" ,
94
98
} ,
99
+ mfaEnabled : {
100
+ baseName : "mfa_enabled" ,
101
+ type : "boolean" ,
102
+ } ,
95
103
modifiedAt : {
96
104
baseName : "modified_at" ,
97
105
type : "Date" ,
You can’t perform that action at this time.
0 commit comments