Skip to content

Commit 3e0e137

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0e8a9cfa of spec repo
1 parent 436e4b5 commit 3e0e137

File tree

5 files changed

+132
-4
lines changed

5 files changed

+132
-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": "2024-08-05 16:34:58.369594",
8-
"spec_repo_commit": "578f6c8c"
7+
"regenerated": "2024-08-06 15:05:20.278967",
8+
"spec_repo_commit": "0e8a9cfa"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-08-05 16:34:58.387579",
13-
"spec_repo_commit": "578f6c8c"
12+
"regenerated": "2024-08-06 15:05:20.297225",
13+
"spec_repo_commit": "0e8a9cfa"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+47
Original file line numberDiff line numberDiff line change
@@ -18998,6 +18998,22 @@ components:
1899818998
over all hours in the current date for the given org.
1899918999
format: int64
1900019000
type: integer
19001+
flex_logs_starter_avg:
19002+
description: Shows the average number of Flex Logs Starter Instances over
19003+
all hours in the current date for the given org.
19004+
format: int64
19005+
type: integer
19006+
flex_logs_starter_storage_index_avg:
19007+
description: Shows the average number of Flex Logs Starter Storage Index
19008+
Instances over all hours in the current date for the given org.
19009+
format: int64
19010+
type: integer
19011+
flex_logs_starter_storage_retention_adjustment_avg:
19012+
description: Shows the average number of Flex Logs Starter Storage Retention
19013+
Adjustment Instances over all hours in the current date for the given
19014+
org.
19015+
format: int64
19016+
type: integer
1900119017
flex_stored_logs_avg:
1900219018
description: Shows the average of all Flex Stored Logs over all hours in
1900319019
the current date for the given org.
@@ -19712,6 +19728,22 @@ components:
1971219728
over all hours in the current date for the given org.
1971319729
format: int64
1971419730
type: integer
19731+
flex_logs_starter_avg:
19732+
description: Shows the average number of Flex Logs Starter Instances over
19733+
all hours in the current date for the given org.
19734+
format: int64
19735+
type: integer
19736+
flex_logs_starter_storage_index_avg:
19737+
description: Shows the average number of Flex Logs Starter Storage Index
19738+
Instances over all hours in the current date for the given org.
19739+
format: int64
19740+
type: integer
19741+
flex_logs_starter_storage_retention_adjustment_avg:
19742+
description: Shows the average number of Flex Logs Starter Storage Retention
19743+
Adjustment Instances over all hours in the current date for the given
19744+
org.
19745+
format: int64
19746+
type: integer
1971519747
flex_stored_logs_avg:
1971619748
description: Shows the average of all Flex Stored Logs over all hours in
1971719749
the current date for the given org.
@@ -20435,6 +20467,21 @@ components:
2043520467
over all hours in the current months for all organizations.
2043620468
format: int64
2043720469
type: integer
20470+
flex_logs_starter_avg_sum:
20471+
description: Shows the average number of Flex Logs Starter Instances over
20472+
all hours in the current months for all organizations.
20473+
format: int64
20474+
type: integer
20475+
flex_logs_starter_storage_index_avg_sum:
20476+
description: Shows the average number of Flex Logs Starter Storage Index
20477+
Instances over all hours in the current months for all organizations.
20478+
format: int64
20479+
type: integer
20480+
flex_logs_starter_storage_retention_adjustment_avg_sum:
20481+
description: Shows the average number of Flex Logs Starter Storage Retention
20482+
Adjustment Instances over all hours in the current months for all organizations.
20483+
format: int64
20484+
type: integer
2043820485
flex_stored_logs_avg_sum:
2043920486
description: Shows the average of all Flex Stored Logs over all hours in
2044020487
the current months for all organizations.

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

+27
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,18 @@ export class UsageSummaryDate {
255255
* Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
256256
*/
257257
"flexLogsComputeXsmallAvg"?: number;
258+
/**
259+
* Shows the average number of Flex Logs Starter Instances over all hours in the current date for the given org.
260+
*/
261+
"flexLogsStarterAvg"?: number;
262+
/**
263+
* Shows the average number of Flex Logs Starter Storage Index Instances over all hours in the current date for the given org.
264+
*/
265+
"flexLogsStarterStorageIndexAvg"?: number;
266+
/**
267+
* Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current date for the given org.
268+
*/
269+
"flexLogsStarterStorageRetentionAdjustmentAvg"?: number;
258270
/**
259271
* Shows the average of all Flex Stored Logs over all hours in the current date for the given org.
260272
*/
@@ -849,6 +861,21 @@ export class UsageSummaryDate {
849861
type: "number",
850862
format: "int64",
851863
},
864+
flexLogsStarterAvg: {
865+
baseName: "flex_logs_starter_avg",
866+
type: "number",
867+
format: "int64",
868+
},
869+
flexLogsStarterStorageIndexAvg: {
870+
baseName: "flex_logs_starter_storage_index_avg",
871+
type: "number",
872+
format: "int64",
873+
},
874+
flexLogsStarterStorageRetentionAdjustmentAvg: {
875+
baseName: "flex_logs_starter_storage_retention_adjustment_avg",
876+
type: "number",
877+
format: "int64",
878+
},
852879
flexStoredLogsAvg: {
853880
baseName: "flex_stored_logs_avg",
854881
type: "number",

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

+27
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,18 @@ export class UsageSummaryDateOrg {
266266
* Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
267267
*/
268268
"flexLogsComputeXsmallAvg"?: number;
269+
/**
270+
* Shows the average number of Flex Logs Starter Instances over all hours in the current date for the given org.
271+
*/
272+
"flexLogsStarterAvg"?: number;
273+
/**
274+
* Shows the average number of Flex Logs Starter Storage Index Instances over all hours in the current date for the given org.
275+
*/
276+
"flexLogsStarterStorageIndexAvg"?: number;
277+
/**
278+
* Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current date for the given org.
279+
*/
280+
"flexLogsStarterStorageRetentionAdjustmentAvg"?: number;
269281
/**
270282
* Shows the average of all Flex Stored Logs over all hours in the current date for the given org.
271283
*/
@@ -885,6 +897,21 @@ export class UsageSummaryDateOrg {
885897
type: "number",
886898
format: "int64",
887899
},
900+
flexLogsStarterAvg: {
901+
baseName: "flex_logs_starter_avg",
902+
type: "number",
903+
format: "int64",
904+
},
905+
flexLogsStarterStorageIndexAvg: {
906+
baseName: "flex_logs_starter_storage_index_avg",
907+
type: "number",
908+
format: "int64",
909+
},
910+
flexLogsStarterStorageRetentionAdjustmentAvg: {
911+
baseName: "flex_logs_starter_storage_retention_adjustment_avg",
912+
type: "number",
913+
format: "int64",
914+
},
888915
flexStoredLogsAvg: {
889916
baseName: "flex_stored_logs_avg",
890917
type: "number",

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

+27
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,18 @@ export class UsageSummaryResponse {
268268
* Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current months for all organizations.
269269
*/
270270
"flexLogsComputeXsmallAvgSum"?: number;
271+
/**
272+
* Shows the average number of Flex Logs Starter Instances over all hours in the current months for all organizations.
273+
*/
274+
"flexLogsStarterAvgSum"?: number;
275+
/**
276+
* Shows the average number of Flex Logs Starter Storage Index Instances over all hours in the current months for all organizations.
277+
*/
278+
"flexLogsStarterStorageIndexAvgSum"?: number;
279+
/**
280+
* Shows the average number of Flex Logs Starter Storage Retention Adjustment Instances over all hours in the current months for all organizations.
281+
*/
282+
"flexLogsStarterStorageRetentionAdjustmentAvgSum"?: number;
271283
/**
272284
* Shows the average of all Flex Stored Logs over all hours in the current months for all organizations.
273285
*/
@@ -909,6 +921,21 @@ export class UsageSummaryResponse {
909921
type: "number",
910922
format: "int64",
911923
},
924+
flexLogsStarterAvgSum: {
925+
baseName: "flex_logs_starter_avg_sum",
926+
type: "number",
927+
format: "int64",
928+
},
929+
flexLogsStarterStorageIndexAvgSum: {
930+
baseName: "flex_logs_starter_storage_index_avg_sum",
931+
type: "number",
932+
format: "int64",
933+
},
934+
flexLogsStarterStorageRetentionAdjustmentAvgSum: {
935+
baseName: "flex_logs_starter_storage_retention_adjustment_avg_sum",
936+
type: "number",
937+
format: "int64",
938+
},
912939
flexStoredLogsAvgSum: {
913940
baseName: "flex_stored_logs_avg_sum",
914941
type: "number",

0 commit comments

Comments
 (0)