Skip to content

Commit 9dc5dc0

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0fac706f of spec repo
1 parent ca7af7f commit 9dc5dc0

File tree

6 files changed

+61
-4
lines changed

6 files changed

+61
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
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-25 12:25:26.250184",
8-
"spec_repo_commit": "1a77c0b6"
7+
"regenerated": "2023-08-28 20:29:20.861535",
8+
"spec_repo_commit": "0fac706f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-08-25 12:25:26.263034",
13-
"spec_repo_commit": "1a77c0b6"
12+
"regenerated": "2023-08-28 20:29:20.877322",
13+
"spec_repo_commit": "0fac706f"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17220,6 +17220,12 @@ components:
1722017220
UsageProfilingHour:
1722117221
description: The number of profiled hosts for each hour for a given organization.
1722217222
properties:
17223+
aas_count:
17224+
description: Contains the total number of profiled Azure app services reporting
17225+
during a given hour.
17226+
format: int64
17227+
nullable: true
17228+
type: integer
1722317229
avg_container_agent_count:
1722417230
description: Get average number of container agents for that hour.
1722517231
format: int64
@@ -17863,6 +17869,11 @@ components:
1786317869
items:
1786417870
$ref: '#/components/schemas/UsageSummaryDateOrg'
1786517871
type: array
17872+
profiling_aas_count_top99p:
17873+
description: Shows the 99th percentile of all profiled Azure app services
17874+
over all hours in the current date for all organizations.
17875+
format: int64
17876+
type: integer
1786617877
profiling_host_top99p:
1786717878
description: Shows the 99th percentile of all profiled hosts over all hours
1786817879
in the current date for all organizations.
@@ -18293,6 +18304,11 @@ components:
1829318304
date for the given org.
1829418305
format: int64
1829518306
type: integer
18307+
profiling_aas_count_top99p:
18308+
description: Shows the 99th percentile of all profiled Azure app services
18309+
over all hours in the current date for all organizations.
18310+
format: int64
18311+
type: integer
1829618312
profiling_host_top99p:
1829718313
description: Shows the 99th percentile of all profiled hosts over all hours
1829818314
in the current date for the given org.
@@ -18755,6 +18771,11 @@ components:
1875518771
months for all organizations.
1875618772
format: int64
1875718773
type: integer
18774+
profiling_aas_count_top99p_sum:
18775+
description: Shows the 99th percentile of all profiled Azure app services
18776+
over all hours in the current months for all organizations.
18777+
format: int64
18778+
type: integer
1875818779
profiling_container_agent_count_avg:
1875918780
description: Shows the average number of profiled containers over all hours
1876018781
in the current months for all organizations.

packages/datadog-api-client-v1/models/UsageProfilingHour.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010
* The number of profiled hosts for each hour for a given organization.
1111
*/
1212
export class UsageProfilingHour {
13+
/**
14+
* Contains the total number of profiled Azure app services reporting during a given hour.
15+
*/
16+
"aasCount"?: number;
1317
/**
1418
* Get average number of container agents for that hour.
1519
*/
@@ -40,6 +44,11 @@ export class UsageProfilingHour {
4044
* @ignore
4145
*/
4246
static readonly attributeTypeMap: AttributeTypeMap = {
47+
aasCount: {
48+
baseName: "aas_count",
49+
type: "number",
50+
format: "int64",
51+
},
4352
avgContainerAgentCount: {
4453
baseName: "avg_container_agent_count",
4554
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryDate.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,10 @@ export class UsageSummaryDate {
275275
* Organizations associated with a user.
276276
*/
277277
"orgs"?: Array<UsageSummaryDateOrg>;
278+
/**
279+
* Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
280+
*/
281+
"profilingAasCountTop99p"?: number;
278282
/**
279283
* Shows the 99th percentile of all profiled hosts over all hours in the current date for all organizations.
280284
*/
@@ -690,6 +694,11 @@ export class UsageSummaryDate {
690694
baseName: "orgs",
691695
type: "Array<UsageSummaryDateOrg>",
692696
},
697+
profilingAasCountTop99p: {
698+
baseName: "profiling_aas_count_top99p",
699+
type: "number",
700+
format: "int64",
701+
},
693702
profilingHostTop99p: {
694703
baseName: "profiling_host_top99p",
695704
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryDateOrg.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,10 @@ export class UsageSummaryDateOrg {
274274
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current date for the given org.
275275
*/
276276
"opentelemetryHostTop99p"?: number;
277+
/**
278+
* Shows the 99th percentile of all profiled Azure app services over all hours in the current date for all organizations.
279+
*/
280+
"profilingAasCountTop99p"?: number;
277281
/**
278282
* Shows the 99th percentile of all profiled hosts over all hours in the current date for the given org.
279283
*/
@@ -696,6 +700,11 @@ export class UsageSummaryDateOrg {
696700
type: "number",
697701
format: "int64",
698702
},
703+
profilingAasCountTop99p: {
704+
baseName: "profiling_aas_count_top99p",
705+
type: "number",
706+
format: "int64",
707+
},
699708
profilingHostTop99p: {
700709
baseName: "profiling_host_top99p",
701710
type: "number",

packages/datadog-api-client-v1/models/UsageSummaryResponse.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,10 @@ export class UsageSummaryResponse {
292292
* Shows the 99th percentile of all hosts reported by the Datadog exporter for the OpenTelemetry Collector over all hours in the current months for all organizations.
293293
*/
294294
"opentelemetryHostTop99pSum"?: number;
295+
/**
296+
* Shows the 99th percentile of all profiled Azure app services over all hours in the current months for all organizations.
297+
*/
298+
"profilingAasCountTop99pSum"?: number;
295299
/**
296300
* Shows the average number of profiled containers over all hours in the current months for all organizations.
297301
*/
@@ -747,6 +751,11 @@ export class UsageSummaryResponse {
747751
type: "number",
748752
format: "int64",
749753
},
754+
profilingAasCountTop99pSum: {
755+
baseName: "profiling_aas_count_top99p_sum",
756+
type: "number",
757+
format: "int64",
758+
},
750759
profilingContainerAgentCountAvg: {
751760
baseName: "profiling_container_agent_count_avg",
752761
type: "number",

0 commit comments

Comments
 (0)