Skip to content

Commit 74b6fac

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add synthetics_parallel_testing to Usage Metering API (#951)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 7f0dec8 commit 74b6fac

File tree

7 files changed

+49
-6
lines changed

7 files changed

+49
-6
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.4",
7-
"regenerated": "2022-12-15 14:58:14.613900",
8-
"spec_repo_commit": "f91a4f5c"
7+
"regenerated": "2022-12-16 13:14:59.785376",
8+
"spec_repo_commit": "ea9a41e2"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2022-12-15 14:58:14.625845",
13-
"spec_repo_commit": "f91a4f5c"
12+
"regenerated": "2022-12-16 13:14:59.798656",
13+
"spec_repo_commit": "ea9a41e2"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16576,6 +16576,11 @@ components:
1657616576
the current date for all organizations.
1657716577
format: int64
1657816578
type: integer
16579+
synthetics_parallel_testing_max_slots_hwm:
16580+
description: Shows the high-water mark of used synthetics parallel testing
16581+
slots over all hours in the current date for all organizations.
16582+
format: int64
16583+
type: integer
1657916584
trace_search_indexed_events_count_sum:
1658016585
description: Shows the sum of all Indexed Spans indexed over all hours in
1658116586
the current date for all organizations.
@@ -16945,6 +16950,11 @@ components:
1694516950
the current date for the given org.
1694616951
format: int64
1694716952
type: integer
16953+
synthetics_parallel_testing_max_slots_hwm:
16954+
description: Shows the high-water mark of used synthetics parallel testing
16955+
slots over all hours in the current date for the given org.
16956+
format: int64
16957+
type: integer
1694816958
trace_search_indexed_events_count_sum:
1694916959
description: Shows the sum of all Indexed Spans indexed over all hours in
1695016960
the current date for the given org.
@@ -17356,6 +17366,11 @@ components:
1735617366
the current months for all organizations.
1735717367
format: int64
1735817368
type: integer
17369+
synthetics_parallel_testing_max_slots_hwm_sum:
17370+
description: Shows the sum of the high-water marks of used synthetics parallel
17371+
testing slots over all hours in the current month for all organizations.
17372+
format: int64
17373+
type: integer
1735917374
trace_search_indexed_events_count_agg_sum:
1736017375
description: Shows the sum of all Indexed Spans indexed over all hours in
1736117376
the current months for all organizations.

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17852,7 +17852,8 @@ paths:
1785217852
`online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`,
1785317853
`sds`, `snmp`,
1785417854

17855-
`synthetics_api`, `synthetics_browser`, and `timeseries`.'
17855+
`synthetics_api`, `synthetics_browser`, `synthetics_parallel_testing`, and
17856+
`timeseries`.'
1785617857
in: query
1785717858
name: filter[product_families]
1785817859
required: true

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,10 @@ export class UsageSummaryDate {
287287
* Shows the sum of all Synthetic API tests over all hours in the current date for all organizations.
288288
*/
289289
"syntheticsCheckCallsCountSum"?: number;
290+
/**
291+
* Shows the high-water mark of used synthetics parallel testing slots over all hours in the current date for all organizations.
292+
*/
293+
"syntheticsParallelTestingMaxSlotsHwm"?: number;
290294
/**
291295
* Shows the sum of all Indexed Spans indexed over all hours in the current date for all organizations.
292296
*/
@@ -653,6 +657,11 @@ export class UsageSummaryDate {
653657
type: "number",
654658
format: "int64",
655659
},
660+
syntheticsParallelTestingMaxSlotsHwm: {
661+
baseName: "synthetics_parallel_testing_max_slots_hwm",
662+
type: "number",
663+
format: "int64",
664+
},
656665
traceSearchIndexedEventsCountSum: {
657666
baseName: "trace_search_indexed_events_count_sum",
658667
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,10 @@ export class UsageSummaryDateOrg {
294294
* Shows the sum of all Synthetic API tests over all hours in the current date for the given org.
295295
*/
296296
"syntheticsCheckCallsCountSum"?: number;
297+
/**
298+
* Shows the high-water mark of used synthetics parallel testing slots over all hours in the current date for the given org.
299+
*/
300+
"syntheticsParallelTestingMaxSlotsHwm"?: number;
297301
/**
298302
* Shows the sum of all Indexed Spans indexed over all hours in the current date for the given org.
299303
*/
@@ -667,6 +671,11 @@ export class UsageSummaryDateOrg {
667671
type: "number",
668672
format: "int64",
669673
},
674+
syntheticsParallelTestingMaxSlotsHwm: {
675+
baseName: "synthetics_parallel_testing_max_slots_hwm",
676+
type: "number",
677+
format: "int64",
678+
},
670679
traceSearchIndexedEventsCountSum: {
671680
baseName: "trace_search_indexed_events_count_sum",
672681
type: "number",

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

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -320,6 +320,10 @@ export class UsageSummaryResponse {
320320
* Shows the sum of all Synthetic API tests over all hours in the current months for all organizations.
321321
*/
322322
"syntheticsCheckCallsCountAggSum"?: number;
323+
/**
324+
* Shows the sum of the high-water marks of used synthetics parallel testing slots over all hours in the current month for all organizations.
325+
*/
326+
"syntheticsParallelTestingMaxSlotsHwmSum"?: number;
323327
/**
324328
* Shows the sum of all Indexed Spans indexed over all hours in the current months for all organizations.
325329
*/
@@ -730,6 +734,11 @@ export class UsageSummaryResponse {
730734
type: "number",
731735
format: "int64",
732736
},
737+
syntheticsParallelTestingMaxSlotsHwmSum: {
738+
baseName: "synthetics_parallel_testing_max_slots_hwm_sum",
739+
type: "number",
740+
format: "int64",
741+
},
733742
traceSearchIndexedEventsCountAggSum: {
734743
baseName: "trace_search_indexed_events_count_agg_sum",
735744
type: "number",

packages/datadog-api-client-v2/apis/UsageMeteringApi.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ export interface UsageMeteringApiGetHourlyUsageRequest {
955955
* `infra_hosts`, `incident_management`, `indexed_logs`, `indexed_spans`, `ingested_spans`, `iot`,
956956
* `lambda_traced_invocations`, `logs`, `network_flows`, `network_hosts`, `observability_pipelines`,
957957
* `online_archive`, `profiling`, `rum`, `rum_browser_sessions`, `rum_mobile_sessions`, `sds`, `snmp`,
958-
* `synthetics_api`, `synthetics_browser`, and `timeseries`.
958+
* `synthetics_api`, `synthetics_browser`, `synthetics_parallel_testing`, and `timeseries`.
959959
* @type string
960960
*/
961961
filterProductFamilies: string;

0 commit comments

Comments
 (0)