Skip to content

Commit 9629106

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add Flex_Logs_Compute_XL to API Spec (#2750)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent bb14a47 commit 9629106

File tree

5 files changed

+41
-2
lines changed

5 files changed

+41
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "6e520c2",
3-
"generated": "2025-08-05 21:11:06.476"
2+
"spec_repo_commit": "f391bf6",
3+
"generated": "2025-08-06 15:14:28.282"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20817,6 +20817,11 @@ components:
2081720817
over all hours in the current date for the given org.
2081820818
format: int64
2081920819
type: integer
20820+
flex_logs_compute_xlarge_avg:
20821+
description: Shows the average number of Flex Logs Compute Extra Large Instances
20822+
over all hours in the current date for the given org.
20823+
format: int64
20824+
type: integer
2082020825
flex_logs_compute_xsmall_avg:
2082120826
description: Shows the average number of Flex Logs Compute Extra Small Instances
2082220827
over all hours in the current date for the given org.
@@ -21761,6 +21766,11 @@ components:
2176121766
over all hours in the current date for the given org.
2176221767
format: int64
2176321768
type: integer
21769+
flex_logs_compute_xlarge_avg:
21770+
description: Shows the average number of Flex Logs Compute Extra Large Instances
21771+
over all hours in the current date for the given org.
21772+
format: int64
21773+
type: integer
2176421774
flex_logs_compute_xsmall_avg:
2176521775
description: Shows the average number of Flex Logs Compute Extra Small Instances
2176621776
over all hours in the current date for the given org.
@@ -22712,6 +22722,11 @@ components:
2271222722
over all hours in the current months for all organizations.
2271322723
format: int64
2271422724
type: integer
22725+
flex_logs_compute_xlarge_avg_sum:
22726+
description: Shows the average number of Flex Logs Compute Extra Large Instances
22727+
over all hours in the current months for all organizations.
22728+
format: int64
22729+
type: integer
2271522730
flex_logs_compute_xsmall_avg_sum:
2271622731
description: Shows the average number of Flex Logs Compute Extra Small Instances
2271722732
over all hours in the current months for all organizations.

src/datadog_api_client/v1/model/usage_summary_date.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ def openapi_types(_):
110110
"flex_logs_compute_large_avg": (int,),
111111
"flex_logs_compute_medium_avg": (int,),
112112
"flex_logs_compute_small_avg": (int,),
113+
"flex_logs_compute_xlarge_avg": (int,),
113114
"flex_logs_compute_xsmall_avg": (int,),
114115
"flex_logs_starter_avg": (int,),
115116
"flex_logs_starter_storage_index_avg": (int,),
@@ -287,6 +288,7 @@ def openapi_types(_):
287288
"flex_logs_compute_large_avg": "flex_logs_compute_large_avg",
288289
"flex_logs_compute_medium_avg": "flex_logs_compute_medium_avg",
289290
"flex_logs_compute_small_avg": "flex_logs_compute_small_avg",
291+
"flex_logs_compute_xlarge_avg": "flex_logs_compute_xlarge_avg",
290292
"flex_logs_compute_xsmall_avg": "flex_logs_compute_xsmall_avg",
291293
"flex_logs_starter_avg": "flex_logs_starter_avg",
292294
"flex_logs_starter_storage_index_avg": "flex_logs_starter_storage_index_avg",
@@ -465,6 +467,7 @@ def __init__(
465467
flex_logs_compute_large_avg: Union[int, UnsetType] = unset,
466468
flex_logs_compute_medium_avg: Union[int, UnsetType] = unset,
467469
flex_logs_compute_small_avg: Union[int, UnsetType] = unset,
470+
flex_logs_compute_xlarge_avg: Union[int, UnsetType] = unset,
468471
flex_logs_compute_xsmall_avg: Union[int, UnsetType] = unset,
469472
flex_logs_starter_avg: Union[int, UnsetType] = unset,
470473
flex_logs_starter_storage_index_avg: Union[int, UnsetType] = unset,
@@ -816,6 +819,9 @@ def __init__(
816819
:param flex_logs_compute_small_avg: Shows the average number of Flex Logs Compute Small Instances over all hours in the current date for the given org.
817820
:type flex_logs_compute_small_avg: int, optional
818821
822+
:param flex_logs_compute_xlarge_avg: Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the current date for the given org.
823+
:type flex_logs_compute_xlarge_avg: int, optional
824+
819825
:param flex_logs_compute_xsmall_avg: Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
820826
:type flex_logs_compute_xsmall_avg: int, optional
821827
@@ -1262,6 +1268,8 @@ def __init__(
12621268
kwargs["flex_logs_compute_medium_avg"] = flex_logs_compute_medium_avg
12631269
if flex_logs_compute_small_avg is not unset:
12641270
kwargs["flex_logs_compute_small_avg"] = flex_logs_compute_small_avg
1271+
if flex_logs_compute_xlarge_avg is not unset:
1272+
kwargs["flex_logs_compute_xlarge_avg"] = flex_logs_compute_xlarge_avg
12651273
if flex_logs_compute_xsmall_avg is not unset:
12661274
kwargs["flex_logs_compute_xsmall_avg"] = flex_logs_compute_xsmall_avg
12671275
if flex_logs_starter_avg is not unset:

src/datadog_api_client/v1/model/usage_summary_date_org.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ def openapi_types(_):
106106
"flex_logs_compute_large_avg": (int,),
107107
"flex_logs_compute_medium_avg": (int,),
108108
"flex_logs_compute_small_avg": (int,),
109+
"flex_logs_compute_xlarge_avg": (int,),
109110
"flex_logs_compute_xsmall_avg": (int,),
110111
"flex_logs_starter_avg": (int,),
111112
"flex_logs_starter_storage_index_avg": (int,),
@@ -289,6 +290,7 @@ def openapi_types(_):
289290
"flex_logs_compute_large_avg": "flex_logs_compute_large_avg",
290291
"flex_logs_compute_medium_avg": "flex_logs_compute_medium_avg",
291292
"flex_logs_compute_small_avg": "flex_logs_compute_small_avg",
293+
"flex_logs_compute_xlarge_avg": "flex_logs_compute_xlarge_avg",
292294
"flex_logs_compute_xsmall_avg": "flex_logs_compute_xsmall_avg",
293295
"flex_logs_starter_avg": "flex_logs_starter_avg",
294296
"flex_logs_starter_storage_index_avg": "flex_logs_starter_storage_index_avg",
@@ -473,6 +475,7 @@ def __init__(
473475
flex_logs_compute_large_avg: Union[int, UnsetType] = unset,
474476
flex_logs_compute_medium_avg: Union[int, UnsetType] = unset,
475477
flex_logs_compute_small_avg: Union[int, UnsetType] = unset,
478+
flex_logs_compute_xlarge_avg: Union[int, UnsetType] = unset,
476479
flex_logs_compute_xsmall_avg: Union[int, UnsetType] = unset,
477480
flex_logs_starter_avg: Union[int, UnsetType] = unset,
478481
flex_logs_starter_storage_index_avg: Union[int, UnsetType] = unset,
@@ -836,6 +839,9 @@ def __init__(
836839
:param flex_logs_compute_small_avg: Shows the average number of Flex Logs Compute Small Instances over all hours in the current date for the given org.
837840
:type flex_logs_compute_small_avg: int, optional
838841
842+
:param flex_logs_compute_xlarge_avg: Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the current date for the given org.
843+
:type flex_logs_compute_xlarge_avg: int, optional
844+
839845
:param flex_logs_compute_xsmall_avg: Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current date for the given org.
840846
:type flex_logs_compute_xsmall_avg: int, optional
841847
@@ -1297,6 +1303,8 @@ def __init__(
12971303
kwargs["flex_logs_compute_medium_avg"] = flex_logs_compute_medium_avg
12981304
if flex_logs_compute_small_avg is not unset:
12991305
kwargs["flex_logs_compute_small_avg"] = flex_logs_compute_small_avg
1306+
if flex_logs_compute_xlarge_avg is not unset:
1307+
kwargs["flex_logs_compute_xlarge_avg"] = flex_logs_compute_xlarge_avg
13001308
if flex_logs_compute_xsmall_avg is not unset:
13011309
kwargs["flex_logs_compute_xsmall_avg"] = flex_logs_compute_xsmall_avg
13021310
if flex_logs_starter_avg is not unset:

src/datadog_api_client/v1/model/usage_summary_response.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ def openapi_types(_):
115115
"flex_logs_compute_large_avg_sum": (int,),
116116
"flex_logs_compute_medium_avg_sum": (int,),
117117
"flex_logs_compute_small_avg_sum": (int,),
118+
"flex_logs_compute_xlarge_avg_sum": (int,),
118119
"flex_logs_compute_xsmall_avg_sum": (int,),
119120
"flex_logs_starter_avg_sum": (int,),
120121
"flex_logs_starter_storage_index_avg_sum": (int,),
@@ -303,6 +304,7 @@ def openapi_types(_):
303304
"flex_logs_compute_large_avg_sum": "flex_logs_compute_large_avg_sum",
304305
"flex_logs_compute_medium_avg_sum": "flex_logs_compute_medium_avg_sum",
305306
"flex_logs_compute_small_avg_sum": "flex_logs_compute_small_avg_sum",
307+
"flex_logs_compute_xlarge_avg_sum": "flex_logs_compute_xlarge_avg_sum",
306308
"flex_logs_compute_xsmall_avg_sum": "flex_logs_compute_xsmall_avg_sum",
307309
"flex_logs_starter_avg_sum": "flex_logs_starter_avg_sum",
308310
"flex_logs_starter_storage_index_avg_sum": "flex_logs_starter_storage_index_avg_sum",
@@ -492,6 +494,7 @@ def __init__(
492494
flex_logs_compute_large_avg_sum: Union[int, UnsetType] = unset,
493495
flex_logs_compute_medium_avg_sum: Union[int, UnsetType] = unset,
494496
flex_logs_compute_small_avg_sum: Union[int, UnsetType] = unset,
497+
flex_logs_compute_xlarge_avg_sum: Union[int, UnsetType] = unset,
495498
flex_logs_compute_xsmall_avg_sum: Union[int, UnsetType] = unset,
496499
flex_logs_starter_avg_sum: Union[int, UnsetType] = unset,
497500
flex_logs_starter_storage_index_avg_sum: Union[int, UnsetType] = unset,
@@ -860,6 +863,9 @@ def __init__(
860863
:param flex_logs_compute_small_avg_sum: Shows the average number of Flex Logs Compute Small Instances over all hours in the current months for all organizations.
861864
:type flex_logs_compute_small_avg_sum: int, optional
862865
866+
:param flex_logs_compute_xlarge_avg_sum: Shows the average number of Flex Logs Compute Extra Large Instances over all hours in the current months for all organizations.
867+
:type flex_logs_compute_xlarge_avg_sum: int, optional
868+
863869
:param flex_logs_compute_xsmall_avg_sum: Shows the average number of Flex Logs Compute Extra Small Instances over all hours in the current months for all organizations.
864870
:type flex_logs_compute_xsmall_avg_sum: int, optional
865871
@@ -1338,6 +1344,8 @@ def __init__(
13381344
kwargs["flex_logs_compute_medium_avg_sum"] = flex_logs_compute_medium_avg_sum
13391345
if flex_logs_compute_small_avg_sum is not unset:
13401346
kwargs["flex_logs_compute_small_avg_sum"] = flex_logs_compute_small_avg_sum
1347+
if flex_logs_compute_xlarge_avg_sum is not unset:
1348+
kwargs["flex_logs_compute_xlarge_avg_sum"] = flex_logs_compute_xlarge_avg_sum
13411349
if flex_logs_compute_xsmall_avg_sum is not unset:
13421350
kwargs["flex_logs_compute_xsmall_avg_sum"] = flex_logs_compute_xsmall_avg_sum
13431351
if flex_logs_starter_avg_sum is not unset:

0 commit comments

Comments
 (0)