File tree 3 files changed +16
-4
lines changed
packages/datadog-api-client-v2/models
3 files changed +16
-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.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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -16666,6 +16666,10 @@ components:
16666
16666
public_id:
16667
16667
description: The organization public ID.
16668
16668
type: string
16669
+ region:
16670
+ description: The region of the Datadog instance that the organization belongs
16671
+ to.
16672
+ type: string
16669
16673
timeseries:
16670
16674
description: List of usage data reported for each requested hour.
16671
16675
items:
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ export class UsageAttributesObject {
24
24
* The organization public ID.
25
25
*/
26
26
"publicId" ?: string ;
27
+ /**
28
+ * The region of the Datadog instance that the organization belongs to.
29
+ */
30
+ "region" ?: string ;
27
31
/**
28
32
* List of usage data reported for each requested hour.
29
33
*/
@@ -54,6 +58,10 @@ export class UsageAttributesObject {
54
58
baseName : "public_id" ,
55
59
type : "string" ,
56
60
} ,
61
+ region : {
62
+ baseName : "region" ,
63
+ type : "string" ,
64
+ } ,
57
65
timeseries : {
58
66
baseName : "timeseries" ,
59
67
type : "Array<UsageTimeSeriesObject>" ,
You can’t perform that action at this time.
0 commit comments