Skip to content

Commit 9d8bd29

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Update Documentation for APM DevSecOps (#1825)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
1 parent 903b743 commit 9d8bd29

File tree

5 files changed

+43
-4
lines changed

5 files changed

+43
-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.6",
7-
"regenerated": "2024-01-05 16:07:37.284367",
8-
"spec_repo_commit": "bafcada7"
7+
"regenerated": "2024-01-08 16:03:17.520602",
8+
"spec_repo_commit": "8b5aed97"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-01-05 16:07:37.299570",
13-
"spec_repo_commit": "bafcada7"
12+
"regenerated": "2024-01-08 16:03:17.535558",
13+
"spec_repo_commit": "8b5aed97"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18631,6 +18631,11 @@ components:
1863118631
over all hours in the current date all organizations.
1863218632
format: int64
1863318633
type: integer
18634+
apm_devsecops_host_top99p:
18635+
description: Shows the 99th percentile of all APM DevSecOps hosts over all
18636+
hours in the current date for the given org.
18637+
format: int64
18638+
type: integer
1863418639
apm_fargate_count_avg:
1863518640
description: Shows the average of all APM ECS Fargate tasks over all hours
1863618641
in the current date for all organizations.
@@ -19156,6 +19161,11 @@ components:
1915619161
over all hours in the current date for the given org.
1915719162
format: int64
1915819163
type: integer
19164+
apm_devsecops_host_top99p:
19165+
description: Shows the 99th percentile of all APM DevSecOps hosts over all
19166+
hours in the current date for the given org.
19167+
format: int64
19168+
type: integer
1915919169
apm_fargate_count_avg:
1916019170
description: Shows the average of all APM ECS Fargate tasks over all hours
1916119171
in the current months for the given org.
@@ -19694,6 +19704,11 @@ components:
1969419704
over all hours in the current months all organizations.
1969519705
format: int64
1969619706
type: integer
19707+
apm_devsecops_host_top99p_sum:
19708+
description: Shows the 99th percentile of all APM DevSecOps hosts over all
19709+
hours in the current months for all organizations.
19710+
format: int64
19711+
type: integer
1969719712
apm_fargate_count_avg_sum:
1969819713
description: Shows the average of all APM ECS Fargate tasks over all hours
1969919714
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
@@ -26,6 +26,7 @@ def openapi_types(_):
2626
return {
2727
"agent_host_top99p": (int,),
2828
"apm_azure_app_service_host_top99p": (int,),
29+
"apm_devsecops_host_top99p": (int,),
2930
"apm_fargate_count_avg": (int,),
3031
"apm_host_top99p": (int,),
3132
"appsec_fargate_count_avg": (int,),
@@ -131,6 +132,7 @@ def openapi_types(_):
131132
attribute_map = {
132133
"agent_host_top99p": "agent_host_top99p",
133134
"apm_azure_app_service_host_top99p": "apm_azure_app_service_host_top99p",
135+
"apm_devsecops_host_top99p": "apm_devsecops_host_top99p",
134136
"apm_fargate_count_avg": "apm_fargate_count_avg",
135137
"apm_host_top99p": "apm_host_top99p",
136138
"appsec_fargate_count_avg": "appsec_fargate_count_avg",
@@ -237,6 +239,7 @@ def __init__(
237239
self_,
238240
agent_host_top99p: Union[int, UnsetType] = unset,
239241
apm_azure_app_service_host_top99p: Union[int, UnsetType] = unset,
242+
apm_devsecops_host_top99p: Union[int, UnsetType] = unset,
240243
apm_fargate_count_avg: Union[int, UnsetType] = unset,
241244
apm_host_top99p: Union[int, UnsetType] = unset,
242245
appsec_fargate_count_avg: Union[int, UnsetType] = unset,
@@ -348,6 +351,9 @@ def __init__(
348351
:param apm_azure_app_service_host_top99p: Shows the 99th percentile of all Azure app services using APM over all hours in the current date all organizations.
349352
:type apm_azure_app_service_host_top99p: int, optional
350353
354+
:param apm_devsecops_host_top99p: Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
355+
:type apm_devsecops_host_top99p: int, optional
356+
351357
:param apm_fargate_count_avg: Shows the average of all APM ECS Fargate tasks over all hours in the current date for all organizations.
352358
:type apm_fargate_count_avg: int, optional
353359
@@ -652,6 +658,8 @@ def __init__(
652658
kwargs["agent_host_top99p"] = agent_host_top99p
653659
if apm_azure_app_service_host_top99p is not unset:
654660
kwargs["apm_azure_app_service_host_top99p"] = apm_azure_app_service_host_top99p
661+
if apm_devsecops_host_top99p is not unset:
662+
kwargs["apm_devsecops_host_top99p"] = apm_devsecops_host_top99p
655663
if apm_fargate_count_avg is not unset:
656664
kwargs["apm_fargate_count_avg"] = apm_fargate_count_avg
657665
if apm_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
@@ -19,6 +19,7 @@ def openapi_types(_):
1919
return {
2020
"agent_host_top99p": (int,),
2121
"apm_azure_app_service_host_top99p": (int,),
22+
"apm_devsecops_host_top99p": (int,),
2223
"apm_fargate_count_avg": (int,),
2324
"apm_host_top99p": (int,),
2425
"appsec_fargate_count_avg": (int,),
@@ -128,6 +129,7 @@ def openapi_types(_):
128129
attribute_map = {
129130
"agent_host_top99p": "agent_host_top99p",
130131
"apm_azure_app_service_host_top99p": "apm_azure_app_service_host_top99p",
132+
"apm_devsecops_host_top99p": "apm_devsecops_host_top99p",
131133
"apm_fargate_count_avg": "apm_fargate_count_avg",
132134
"apm_host_top99p": "apm_host_top99p",
133135
"appsec_fargate_count_avg": "appsec_fargate_count_avg",
@@ -238,6 +240,7 @@ def __init__(
238240
self_,
239241
agent_host_top99p: Union[int, UnsetType] = unset,
240242
apm_azure_app_service_host_top99p: Union[int, UnsetType] = unset,
243+
apm_devsecops_host_top99p: Union[int, UnsetType] = unset,
241244
apm_fargate_count_avg: Union[int, UnsetType] = unset,
242245
apm_host_top99p: Union[int, UnsetType] = unset,
243246
appsec_fargate_count_avg: Union[int, UnsetType] = unset,
@@ -353,6 +356,9 @@ def __init__(
353356
:param apm_azure_app_service_host_top99p: Shows the 99th percentile of all Azure app services using APM over all hours in the current date for the given org.
354357
:type apm_azure_app_service_host_top99p: int, optional
355358
359+
:param apm_devsecops_host_top99p: Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current date for the given org.
360+
:type apm_devsecops_host_top99p: int, optional
361+
356362
:param apm_fargate_count_avg: Shows the average of all APM ECS Fargate tasks over all hours in the current months for the given org.
357363
:type apm_fargate_count_avg: int, optional
358364
@@ -669,6 +675,8 @@ def __init__(
669675
kwargs["agent_host_top99p"] = agent_host_top99p
670676
if apm_azure_app_service_host_top99p is not unset:
671677
kwargs["apm_azure_app_service_host_top99p"] = apm_azure_app_service_host_top99p
678+
if apm_devsecops_host_top99p is not unset:
679+
kwargs["apm_devsecops_host_top99p"] = apm_devsecops_host_top99p
672680
if apm_fargate_count_avg is not unset:
673681
kwargs["apm_fargate_count_avg"] = apm_fargate_count_avg
674682
if apm_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
@@ -28,6 +28,7 @@ def openapi_types(_):
2828
return {
2929
"agent_host_top99p_sum": (int,),
3030
"apm_azure_app_service_host_top99p_sum": (int,),
31+
"apm_devsecops_host_top99p_sum": (int,),
3132
"apm_fargate_count_avg_sum": (int,),
3233
"apm_host_top99p_sum": (int,),
3334
"appsec_fargate_count_avg_sum": (int,),
@@ -144,6 +145,7 @@ def openapi_types(_):
144145
attribute_map = {
145146
"agent_host_top99p_sum": "agent_host_top99p_sum",
146147
"apm_azure_app_service_host_top99p_sum": "apm_azure_app_service_host_top99p_sum",
148+
"apm_devsecops_host_top99p_sum": "apm_devsecops_host_top99p_sum",
147149
"apm_fargate_count_avg_sum": "apm_fargate_count_avg_sum",
148150
"apm_host_top99p_sum": "apm_host_top99p_sum",
149151
"appsec_fargate_count_avg_sum": "appsec_fargate_count_avg_sum",
@@ -261,6 +263,7 @@ def __init__(
261263
self_,
262264
agent_host_top99p_sum: Union[int, UnsetType] = unset,
263265
apm_azure_app_service_host_top99p_sum: Union[int, UnsetType] = unset,
266+
apm_devsecops_host_top99p_sum: Union[int, UnsetType] = unset,
264267
apm_fargate_count_avg_sum: Union[int, UnsetType] = unset,
265268
apm_host_top99p_sum: Union[int, UnsetType] = unset,
266269
appsec_fargate_count_avg_sum: Union[int, UnsetType] = unset,
@@ -383,6 +386,9 @@ def __init__(
383386
:param apm_azure_app_service_host_top99p_sum: Shows the 99th percentile of all Azure app services using APM over all hours in the current months all organizations.
384387
:type apm_azure_app_service_host_top99p_sum: int, optional
385388
389+
:param apm_devsecops_host_top99p_sum: Shows the 99th percentile of all APM DevSecOps hosts over all hours in the current months for all organizations.
390+
:type apm_devsecops_host_top99p_sum: int, optional
391+
386392
:param apm_fargate_count_avg_sum: Shows the average of all APM ECS Fargate tasks over all hours in the current months for all organizations.
387393
:type apm_fargate_count_avg_sum: int, optional
388394
@@ -720,6 +726,8 @@ def __init__(
720726
kwargs["agent_host_top99p_sum"] = agent_host_top99p_sum
721727
if apm_azure_app_service_host_top99p_sum is not unset:
722728
kwargs["apm_azure_app_service_host_top99p_sum"] = apm_azure_app_service_host_top99p_sum
729+
if apm_devsecops_host_top99p_sum is not unset:
730+
kwargs["apm_devsecops_host_top99p_sum"] = apm_devsecops_host_top99p_sum
723731
if apm_fargate_count_avg_sum is not unset:
724732
kwargs["apm_fargate_count_avg_sum"] = apm_fargate_count_avg_sum
725733
if apm_host_top99p_sum is not unset:

0 commit comments

Comments
 (0)