Skip to content

Commit 96c8d25

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit ca2fb7b8 of spec repo
1 parent 9301cd0 commit 96c8d25

File tree

5 files changed

+56
-4
lines changed

5 files changed

+56
-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.4",
7-
"regenerated": "2023-02-13 19:39:23.939884",
8-
"spec_repo_commit": "e92a3dde"
7+
"regenerated": "2023-02-13 20:03:57.202739",
8+
"spec_repo_commit": "ca2fb7b8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-02-13 19:39:23.954474",
13-
"spec_repo_commit": "e92a3dde"
12+
"regenerated": "2023-02-13 20:03:57.220950",
13+
"spec_repo_commit": "ca2fb7b8"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16683,11 +16683,21 @@ components:
1668316683
over all hours in the current month for all organizations.
1668416684
format: int64
1668516685
type: integer
16686+
cloud_cost_management_host_count_avg:
16687+
description: Host count average of Cloud Cost Management for the given date
16688+
and given organization.
16689+
format: int64
16690+
type: integer
1668616691
container_avg:
1668716692
description: Shows the average of all distinct containers over all hours
1668816693
in the current date for all organizations.
1668916694
format: int64
1669016695
type: integer
16696+
container_excl_agent_avg:
16697+
description: Shows the average of containers without the Datadog Agent over
16698+
all hours in the current date for all organizations.
16699+
format: int64
16700+
type: integer
1669116701
container_hwm:
1669216702
description: Shows the high-water mark of all distinct containers over all
1669316703
hours in the current date for all organizations.
@@ -17064,6 +17074,11 @@ components:
1706417074
in the current date for the given org.
1706517075
format: int64
1706617076
type: integer
17077+
container_excl_agent_avg:
17078+
description: Shows the average of containers without the Datadog Agent over
17079+
all hours in the current date for the given organization.
17080+
format: int64
17081+
type: integer
1706717082
container_hwm:
1706817083
description: Shows the high-water mark of all distinct containers over all
1706917084
hours in the current date for the given org.
@@ -17448,6 +17463,11 @@ components:
1744817463
in the current months for all organizations.
1744917464
format: int64
1745017465
type: integer
17466+
container_excl_agent_avg_sum:
17467+
description: Shows the average of the containers without the Datadog Agent
17468+
over all hours in the current month for all organizations.
17469+
format: int64
17470+
type: integer
1745117471
container_hwm_sum:
1745217472
description: Shows the sum of the high-water marks of all distinct containers
1745317473
over all hours in the current months for all organizations.

src/datadog_api_client/v1/model/usage_summary_date.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ def openapi_types(_):
4343
"ci_test_indexed_spans_sum": (int,),
4444
"ci_visibility_pipeline_committers_hwm": (int,),
4545
"ci_visibility_test_committers_hwm": (int,),
46+
"cloud_cost_management_host_count_avg": (int,),
4647
"container_avg": (int,),
48+
"container_excl_agent_avg": (int,),
4749
"container_hwm": (int,),
4850
"cspm_aas_host_top99p": (int,),
4951
"cspm_aws_host_top99p": (int,),
@@ -119,7 +121,9 @@ def openapi_types(_):
119121
"ci_test_indexed_spans_sum": "ci_test_indexed_spans_sum",
120122
"ci_visibility_pipeline_committers_hwm": "ci_visibility_pipeline_committers_hwm",
121123
"ci_visibility_test_committers_hwm": "ci_visibility_test_committers_hwm",
124+
"cloud_cost_management_host_count_avg": "cloud_cost_management_host_count_avg",
122125
"container_avg": "container_avg",
126+
"container_excl_agent_avg": "container_excl_agent_avg",
123127
"container_hwm": "container_hwm",
124128
"cspm_aas_host_top99p": "cspm_aas_host_top99p",
125129
"cspm_aws_host_top99p": "cspm_aws_host_top99p",
@@ -196,7 +200,9 @@ def __init__(
196200
ci_test_indexed_spans_sum: Union[int, UnsetType] = unset,
197201
ci_visibility_pipeline_committers_hwm: Union[int, UnsetType] = unset,
198202
ci_visibility_test_committers_hwm: Union[int, UnsetType] = unset,
203+
cloud_cost_management_host_count_avg: Union[int, UnsetType] = unset,
199204
container_avg: Union[int, UnsetType] = unset,
205+
container_excl_agent_avg: Union[int, UnsetType] = unset,
200206
container_hwm: Union[int, UnsetType] = unset,
201207
cspm_aas_host_top99p: Union[int, UnsetType] = unset,
202208
cspm_aws_host_top99p: Union[int, UnsetType] = unset,
@@ -312,9 +318,15 @@ def __init__(
312318
:param ci_visibility_test_committers_hwm: Shows the high-water mark of all CI visibility test committers over all hours in the current month for all organizations.
313319
:type ci_visibility_test_committers_hwm: int, optional
314320
321+
:param cloud_cost_management_host_count_avg: Host count average of Cloud Cost Management for the given date and given organization.
322+
:type cloud_cost_management_host_count_avg: int, optional
323+
315324
:param container_avg: Shows the average of all distinct containers over all hours in the current date for all organizations.
316325
:type container_avg: int, optional
317326
327+
:param container_excl_agent_avg: Shows the average of containers without the Datadog Agent over all hours in the current date for all organizations.
328+
:type container_excl_agent_avg: int, optional
329+
318330
:param container_hwm: Shows the high-water mark of all distinct containers over all hours in the current date for all organizations.
319331
:type container_hwm: int, optional
320332
@@ -512,8 +524,12 @@ def __init__(
512524
kwargs["ci_visibility_pipeline_committers_hwm"] = ci_visibility_pipeline_committers_hwm
513525
if ci_visibility_test_committers_hwm is not unset:
514526
kwargs["ci_visibility_test_committers_hwm"] = ci_visibility_test_committers_hwm
527+
if cloud_cost_management_host_count_avg is not unset:
528+
kwargs["cloud_cost_management_host_count_avg"] = cloud_cost_management_host_count_avg
515529
if container_avg is not unset:
516530
kwargs["container_avg"] = container_avg
531+
if container_excl_agent_avg is not unset:
532+
kwargs["container_excl_agent_avg"] = container_excl_agent_avg
517533
if container_hwm is not unset:
518534
kwargs["container_hwm"] = container_hwm
519535
if cspm_aas_host_top99p 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
@@ -38,6 +38,7 @@ def openapi_types(_):
3838
"ci_visibility_test_committers_hwm": (int,),
3939
"cloud_cost_management_host_count_avg": (int,),
4040
"container_avg": (int,),
41+
"container_excl_agent_avg": (int,),
4142
"container_hwm": (int,),
4243
"cspm_aas_host_top99p": (int,),
4344
"cspm_aws_host_top99p": (int,),
@@ -117,6 +118,7 @@ def openapi_types(_):
117118
"ci_visibility_test_committers_hwm": "ci_visibility_test_committers_hwm",
118119
"cloud_cost_management_host_count_avg": "cloud_cost_management_host_count_avg",
119120
"container_avg": "container_avg",
121+
"container_excl_agent_avg": "container_excl_agent_avg",
120122
"container_hwm": "container_hwm",
121123
"cspm_aas_host_top99p": "cspm_aas_host_top99p",
122124
"cspm_aws_host_top99p": "cspm_aws_host_top99p",
@@ -197,6 +199,7 @@ def __init__(
197199
ci_visibility_test_committers_hwm: Union[int, UnsetType] = unset,
198200
cloud_cost_management_host_count_avg: Union[int, UnsetType] = unset,
199201
container_avg: Union[int, UnsetType] = unset,
202+
container_excl_agent_avg: Union[int, UnsetType] = unset,
200203
container_hwm: Union[int, UnsetType] = unset,
201204
cspm_aas_host_top99p: Union[int, UnsetType] = unset,
202205
cspm_aws_host_top99p: Union[int, UnsetType] = unset,
@@ -320,6 +323,9 @@ def __init__(
320323
:param container_avg: Shows the average of all distinct containers over all hours in the current date for the given org.
321324
:type container_avg: int, optional
322325
326+
:param container_excl_agent_avg: Shows the average of containers without the Datadog Agent over all hours in the current date for the given organization.
327+
:type container_excl_agent_avg: int, optional
328+
323329
:param container_hwm: Shows the high-water mark of all distinct containers over all hours in the current date for the given org.
324330
:type container_hwm: int, optional
325331
@@ -527,6 +533,8 @@ def __init__(
527533
kwargs["cloud_cost_management_host_count_avg"] = cloud_cost_management_host_count_avg
528534
if container_avg is not unset:
529535
kwargs["container_avg"] = container_avg
536+
if container_excl_agent_avg is not unset:
537+
kwargs["container_excl_agent_avg"] = container_excl_agent_avg
530538
if container_hwm is not unset:
531539
kwargs["container_hwm"] = container_hwm
532540
if cspm_aas_host_top99p 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
@@ -48,6 +48,7 @@ def openapi_types(_):
4848
"ci_visibility_test_committers_hwm_sum": (int,),
4949
"cloud_cost_management_host_count_avg_sum": (int,),
5050
"container_avg_sum": (int,),
51+
"container_excl_agent_avg_sum": (int,),
5152
"container_hwm_sum": (int,),
5253
"cspm_aas_host_top99p_sum": (int,),
5354
"cspm_aws_host_top99p_sum": (int,),
@@ -134,6 +135,7 @@ def openapi_types(_):
134135
"ci_visibility_test_committers_hwm_sum": "ci_visibility_test_committers_hwm_sum",
135136
"cloud_cost_management_host_count_avg_sum": "cloud_cost_management_host_count_avg_sum",
136137
"container_avg_sum": "container_avg_sum",
138+
"container_excl_agent_avg_sum": "container_excl_agent_avg_sum",
137139
"container_hwm_sum": "container_hwm_sum",
138140
"cspm_aas_host_top99p_sum": "cspm_aas_host_top99p_sum",
139141
"cspm_aws_host_top99p_sum": "cspm_aws_host_top99p_sum",
@@ -221,6 +223,7 @@ def __init__(
221223
ci_visibility_test_committers_hwm_sum: Union[int, UnsetType] = unset,
222224
cloud_cost_management_host_count_avg_sum: Union[int, UnsetType] = unset,
223225
container_avg_sum: Union[int, UnsetType] = unset,
226+
container_excl_agent_avg_sum: Union[int, UnsetType] = unset,
224227
container_hwm_sum: Union[int, UnsetType] = unset,
225228
cspm_aas_host_top99p_sum: Union[int, UnsetType] = unset,
226229
cspm_aws_host_top99p_sum: Union[int, UnsetType] = unset,
@@ -353,6 +356,9 @@ def __init__(
353356
:param container_avg_sum: Shows the average of all distinct containers over all hours in the current months for all organizations.
354357
:type container_avg_sum: int, optional
355358
359+
:param container_excl_agent_avg_sum: Shows the average of the containers without the Datadog Agent over all hours in the current month for all organizations.
360+
:type container_excl_agent_avg_sum: int, optional
361+
356362
:param container_hwm_sum: Shows the sum of the high-water marks of all distinct containers over all hours in the current months for all organizations.
357363
:type container_hwm_sum: int, optional
358364
@@ -580,6 +586,8 @@ def __init__(
580586
kwargs["cloud_cost_management_host_count_avg_sum"] = cloud_cost_management_host_count_avg_sum
581587
if container_avg_sum is not unset:
582588
kwargs["container_avg_sum"] = container_avg_sum
589+
if container_excl_agent_avg_sum is not unset:
590+
kwargs["container_excl_agent_avg_sum"] = container_excl_agent_avg_sum
583591
if container_hwm_sum is not unset:
584592
kwargs["container_hwm_sum"] = container_hwm_sum
585593
if cspm_aas_host_top99p_sum is not unset:

0 commit comments

Comments
 (0)