Skip to content

Commit afd8dda

Browse files
author
ci.datadog-api-spec
committedAug 2, 2023
Regenerate client from commit 75a8c502 of spec repo
1 parent e7a114d commit afd8dda

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-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.5",
7-
"regenerated": "2023-08-01 16:18:45.943422",
8-
"spec_repo_commit": "87a5a9d8"
7+
"regenerated": "2023-08-02 14:07:10.910973",
8+
"spec_repo_commit": "75a8c502"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-08-01 16:18:45.962045",
13-
"spec_repo_commit": "87a5a9d8"
12+
"regenerated": "2023-08-02 14:07:10.925368",
13+
"spec_repo_commit": "75a8c502"
1414
}
1515
}
1616
}

‎.generator/schemas/v2/openapi.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -16666,6 +16666,10 @@ components:
1666616666
public_id:
1666716667
description: The organization public ID.
1666816668
type: string
16669+
region:
16670+
description: The region of the Datadog instance that the organization belongs
16671+
to.
16672+
type: string
1666916673
timeseries:
1667016674
description: List of usage data reported for each requested hour.
1667116675
items:

‎packages/datadog-api-client-v2/models/UsageAttributesObject.ts

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export class UsageAttributesObject {
2424
* The organization public ID.
2525
*/
2626
"publicId"?: string;
27+
/**
28+
* The region of the Datadog instance that the organization belongs to.
29+
*/
30+
"region"?: string;
2731
/**
2832
* List of usage data reported for each requested hour.
2933
*/
@@ -54,6 +58,10 @@ export class UsageAttributesObject {
5458
baseName: "public_id",
5559
type: "string",
5660
},
61+
region: {
62+
baseName: "region",
63+
type: "string",
64+
},
5765
timeseries: {
5866
baseName: "timeseries",
5967
type: "Array<UsageTimeSeriesObject>",

0 commit comments

Comments
 (0)