Skip to content

Commit 02831c4

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit be350e98 of spec repo
1 parent 6cbea23 commit 02831c4

File tree

4 files changed

+48
-4
lines changed

4 files changed

+48
-4
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"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"
99
},
1010
"v2": {
1111
"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"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -6240,6 +6240,9 @@ components:
62406240
FullAPIKeyAttributes:
62416241
description: Attributes of a full API key.
62426242
properties:
6243+
category:
6244+
description: The category of the API key.
6245+
type: string
62436246
created_at:
62446247
description: Creation date of the API key.
62456248
example: '2020-11-23T10:00:00.000Z'
@@ -6265,6 +6268,9 @@ components:
62656268
description: Name of the API key.
62666269
example: API Key for submitting metrics
62676270
type: string
6271+
remote_config_read_enabled:
6272+
description: The remote config read enabled status.
6273+
type: boolean
62686274
type: object
62696275
FullApplicationKey:
62706276
description: Datadog application key.
@@ -11752,6 +11758,9 @@ components:
1175211758
PartialAPIKeyAttributes:
1175311759
description: Attributes of a partial API key.
1175411760
properties:
11761+
category:
11762+
description: The category of the API key.
11763+
type: string
1175511764
created_at:
1175611765
description: Creation date of the API key.
1175711766
example: '2020-11-23T10:00:00.000Z'
@@ -11773,6 +11782,9 @@ components:
1177311782
description: Name of the API key.
1177411783
example: API Key for submitting metrics
1177511784
type: string
11785+
remote_config_read_enabled:
11786+
description: The remote config read enabled status.
11787+
type: boolean
1177611788
type: object
1177711789
PartialApplicationKey:
1177811790
description: Partial Datadog application key.

packages/datadog-api-client-v2/models/FullAPIKeyAttributes.ts

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010
* Attributes of a full API key.
1111
*/
1212
export class FullAPIKeyAttributes {
13+
/**
14+
* The category of the API key.
15+
*/
16+
"category"?: string;
1317
/**
1418
* Creation date of the API key.
1519
*/
@@ -30,6 +34,10 @@ export class FullAPIKeyAttributes {
3034
* Name of the API key.
3135
*/
3236
"name"?: string;
37+
/**
38+
* The remote config read enabled status.
39+
*/
40+
"remoteConfigReadEnabled"?: boolean;
3341

3442
/**
3543
* @ignore
@@ -40,6 +48,10 @@ export class FullAPIKeyAttributes {
4048
* @ignore
4149
*/
4250
static readonly attributeTypeMap: AttributeTypeMap = {
51+
category: {
52+
baseName: "category",
53+
type: "string",
54+
},
4355
createdAt: {
4456
baseName: "created_at",
4557
type: "string",
@@ -60,6 +72,10 @@ export class FullAPIKeyAttributes {
6072
baseName: "name",
6173
type: "string",
6274
},
75+
remoteConfigReadEnabled: {
76+
baseName: "remote_config_read_enabled",
77+
type: "boolean",
78+
},
6379
};
6480

6581
/**

packages/datadog-api-client-v2/models/PartialAPIKeyAttributes.ts

+16
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010
* Attributes of a partial API key.
1111
*/
1212
export class PartialAPIKeyAttributes {
13+
/**
14+
* The category of the API key.
15+
*/
16+
"category"?: string;
1317
/**
1418
* Creation date of the API key.
1519
*/
@@ -26,6 +30,10 @@ export class PartialAPIKeyAttributes {
2630
* Name of the API key.
2731
*/
2832
"name"?: string;
33+
/**
34+
* The remote config read enabled status.
35+
*/
36+
"remoteConfigReadEnabled"?: boolean;
2937

3038
/**
3139
* @ignore
@@ -36,6 +44,10 @@ export class PartialAPIKeyAttributes {
3644
* @ignore
3745
*/
3846
static readonly attributeTypeMap: AttributeTypeMap = {
47+
category: {
48+
baseName: "category",
49+
type: "string",
50+
},
3951
createdAt: {
4052
baseName: "created_at",
4153
type: "string",
@@ -52,6 +64,10 @@ export class PartialAPIKeyAttributes {
5264
baseName: "name",
5365
type: "string",
5466
},
67+
remoteConfigReadEnabled: {
68+
baseName: "remote_config_read_enabled",
69+
type: "boolean",
70+
},
5571
};
5672

5773
/**

0 commit comments

Comments
 (0)