File tree 4 files changed +48
-4
lines changed
packages/datadog-api-client-v2/models
4 files changed +48
-4
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": "2023-11-21 19:36:44.600074 ",
8
- "spec_repo_commit": "83154a77 "
7
+ "regenerated": "2023-11-21 20:40:57.853972 ",
8
+ "spec_repo_commit": "be350e98 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2023-11-21 19:36:44.618603 ",
13
- "spec_repo_commit": "83154a77 "
12
+ "regenerated": "2023-11-21 20:40:57.869056 ",
13
+ "spec_repo_commit": "be350e98 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -6240,6 +6240,9 @@ components:
6240
6240
FullAPIKeyAttributes:
6241
6241
description: Attributes of a full API key.
6242
6242
properties:
6243
+ category:
6244
+ description: The category of the API key.
6245
+ type: string
6243
6246
created_at:
6244
6247
description: Creation date of the API key.
6245
6248
example: '2020-11-23T10:00:00.000Z'
@@ -6265,6 +6268,9 @@ components:
6265
6268
description: Name of the API key.
6266
6269
example: API Key for submitting metrics
6267
6270
type: string
6271
+ remote_config_read_enabled:
6272
+ description: The remote config read enabled status.
6273
+ type: boolean
6268
6274
type: object
6269
6275
FullApplicationKey:
6270
6276
description: Datadog application key.
@@ -11752,6 +11758,9 @@ components:
11752
11758
PartialAPIKeyAttributes:
11753
11759
description: Attributes of a partial API key.
11754
11760
properties:
11761
+ category:
11762
+ description: The category of the API key.
11763
+ type: string
11755
11764
created_at:
11756
11765
description: Creation date of the API key.
11757
11766
example: '2020-11-23T10:00:00.000Z'
@@ -11773,6 +11782,9 @@ components:
11773
11782
description: Name of the API key.
11774
11783
example: API Key for submitting metrics
11775
11784
type: string
11785
+ remote_config_read_enabled:
11786
+ description: The remote config read enabled status.
11787
+ type: boolean
11776
11788
type: object
11777
11789
PartialApplicationKey:
11778
11790
description: Partial Datadog application key.
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
10
10
* Attributes of a full API key.
11
11
*/
12
12
export class FullAPIKeyAttributes {
13
+ /**
14
+ * The category of the API key.
15
+ */
16
+ "category" ?: string ;
13
17
/**
14
18
* Creation date of the API key.
15
19
*/
@@ -30,6 +34,10 @@ export class FullAPIKeyAttributes {
30
34
* Name of the API key.
31
35
*/
32
36
"name" ?: string ;
37
+ /**
38
+ * The remote config read enabled status.
39
+ */
40
+ "remoteConfigReadEnabled" ?: boolean ;
33
41
34
42
/**
35
43
* @ignore
@@ -40,6 +48,10 @@ export class FullAPIKeyAttributes {
40
48
* @ignore
41
49
*/
42
50
static readonly attributeTypeMap : AttributeTypeMap = {
51
+ category : {
52
+ baseName : "category" ,
53
+ type : "string" ,
54
+ } ,
43
55
createdAt : {
44
56
baseName : "created_at" ,
45
57
type : "string" ,
@@ -60,6 +72,10 @@ export class FullAPIKeyAttributes {
60
72
baseName : "name" ,
61
73
type : "string" ,
62
74
} ,
75
+ remoteConfigReadEnabled : {
76
+ baseName : "remote_config_read_enabled" ,
77
+ type : "boolean" ,
78
+ } ,
63
79
} ;
64
80
65
81
/**
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
10
10
* Attributes of a partial API key.
11
11
*/
12
12
export class PartialAPIKeyAttributes {
13
+ /**
14
+ * The category of the API key.
15
+ */
16
+ "category" ?: string ;
13
17
/**
14
18
* Creation date of the API key.
15
19
*/
@@ -26,6 +30,10 @@ export class PartialAPIKeyAttributes {
26
30
* Name of the API key.
27
31
*/
28
32
"name" ?: string ;
33
+ /**
34
+ * The remote config read enabled status.
35
+ */
36
+ "remoteConfigReadEnabled" ?: boolean ;
29
37
30
38
/**
31
39
* @ignore
@@ -36,6 +44,10 @@ export class PartialAPIKeyAttributes {
36
44
* @ignore
37
45
*/
38
46
static readonly attributeTypeMap : AttributeTypeMap = {
47
+ category : {
48
+ baseName : "category" ,
49
+ type : "string" ,
50
+ } ,
39
51
createdAt : {
40
52
baseName : "created_at" ,
41
53
type : "string" ,
@@ -52,6 +64,10 @@ export class PartialAPIKeyAttributes {
52
64
baseName : "name" ,
53
65
type : "string" ,
54
66
} ,
67
+ remoteConfigReadEnabled : {
68
+ baseName : "remote_config_read_enabled" ,
69
+ type : "boolean" ,
70
+ } ,
55
71
} ;
56
72
57
73
/**
You can’t perform that action at this time.
0 commit comments