Skip to content

Commit b7e43f6

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 642e33ec of spec repo
1 parent b078555 commit b7e43f6

File tree

6 files changed

+57
-4
lines changed

6 files changed

+57
-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-04-06 15:04:06.579964",
8-
"spec_repo_commit": "b180cceb"
7+
"regenerated": "2023-04-07 14:30:28.066307",
8+
"spec_repo_commit": "642e33ec"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-04-06 15:04:06.599309",
13-
"spec_repo_commit": "b180cceb"
12+
"regenerated": "2023-04-07 14:30:28.088799",
13+
"spec_repo_commit": "642e33ec"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16287,6 +16287,11 @@ components:
1628716287
description: Contains the number of log bytes ingested.
1628816288
format: int64
1628916289
type: integer
16290+
logs_forwarding_events_bytes:
16291+
description: Contains the number of logs forwarded bytes (data available
16292+
as of April 1st 2023)
16293+
format: int64
16294+
type: integer
1629016295
logs_live_indexed_count:
1629116296
description: Contains the number of live log events indexed (data available
1629216297
as of December 1, 2020).
@@ -16913,6 +16918,11 @@ components:
1691316918
current date for all organizations.
1691416919
format: int64
1691516920
type: integer
16921+
forwarding_events_bytes_sum:
16922+
description: Shows the sum of all log bytes forwarded over all hours in
16923+
the current date for all organizations.
16924+
format: int64
16925+
type: integer
1691616926
gcp_host_top99p:
1691716927
description: Shows the 99th percentile of all GCP hosts over all hours in
1691816928
the current date for all organizations.
@@ -17305,6 +17315,11 @@ components:
1730517315
in the current date for the given org.
1730617316
format: int64
1730717317
type: integer
17318+
forwarding_events_bytes_sum:
17319+
description: Shows the sum of all log bytes forwarded over all hours in
17320+
the current date for the given org.
17321+
format: int64
17322+
type: integer
1730817323
gcp_host_top99p:
1730917324
description: Shows the 99th percentile of all GCP hosts over all hours in
1731017325
the current date for the given org.
@@ -17716,6 +17731,12 @@ components:
1771617731
over all hours in the current months for all organizations.
1771717732
format: int64
1771817733
type: integer
17734+
forwarding_events_bytes_agg_sum:
17735+
description: Shows the sum of all logs forwarding bytes over all hours in
17736+
the current months for all organizations (data available as of April 1,
17737+
2023)
17738+
format: int64
17739+
type: integer
1771917740
gcp_host_top99p_sum:
1772017741
description: Shows the 99th percentile of all GCP hosts over all hours in
1772117742
the current months for all organizations.

src/datadog_api_client/v1/model/usage_logs_hour.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ def openapi_types(_):
2222
"hour": (datetime,),
2323
"indexed_events_count": (int,),
2424
"ingested_events_bytes": (int,),
25+
"logs_forwarding_events_bytes": (int,),
2526
"logs_live_indexed_count": (int,),
2627
"logs_live_ingested_bytes": (int,),
2728
"logs_rehydrated_indexed_count": (int,),
@@ -35,6 +36,7 @@ def openapi_types(_):
3536
"hour": "hour",
3637
"indexed_events_count": "indexed_events_count",
3738
"ingested_events_bytes": "ingested_events_bytes",
39+
"logs_forwarding_events_bytes": "logs_forwarding_events_bytes",
3840
"logs_live_indexed_count": "logs_live_indexed_count",
3941
"logs_live_ingested_bytes": "logs_live_ingested_bytes",
4042
"logs_rehydrated_indexed_count": "logs_rehydrated_indexed_count",
@@ -49,6 +51,7 @@ def __init__(
4951
hour: Union[datetime, UnsetType] = unset,
5052
indexed_events_count: Union[int, UnsetType] = unset,
5153
ingested_events_bytes: Union[int, UnsetType] = unset,
54+
logs_forwarding_events_bytes: Union[int, UnsetType] = unset,
5255
logs_live_indexed_count: Union[int, UnsetType] = unset,
5356
logs_live_ingested_bytes: Union[int, UnsetType] = unset,
5457
logs_rehydrated_indexed_count: Union[int, UnsetType] = unset,
@@ -72,6 +75,9 @@ def __init__(
7275
:param ingested_events_bytes: Contains the number of log bytes ingested.
7376
:type ingested_events_bytes: int, optional
7477
78+
:param logs_forwarding_events_bytes: Contains the number of logs forwarded bytes (data available as of April 1st 2023)
79+
:type logs_forwarding_events_bytes: int, optional
80+
7581
:param logs_live_indexed_count: Contains the number of live log events indexed (data available as of December 1, 2020).
7682
:type logs_live_indexed_count: int, optional
7783
@@ -98,6 +104,8 @@ def __init__(
98104
kwargs["indexed_events_count"] = indexed_events_count
99105
if ingested_events_bytes is not unset:
100106
kwargs["ingested_events_bytes"] = ingested_events_bytes
107+
if logs_forwarding_events_bytes is not unset:
108+
kwargs["logs_forwarding_events_bytes"] = logs_forwarding_events_bytes
101109
if logs_live_indexed_count is not unset:
102110
kwargs["logs_live_indexed_count"] = logs_live_indexed_count
103111
if logs_live_ingested_bytes is not unset:

src/datadog_api_client/v1/model/usage_summary_date.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ def openapi_types(_):
6363
"dbm_queries_count_avg": (int,),
6464
"fargate_tasks_count_avg": (int,),
6565
"fargate_tasks_count_hwm": (int,),
66+
"forwarding_events_bytes_sum": (int,),
6667
"gcp_host_top99p": (int,),
6768
"heroku_host_top99p": (int,),
6869
"incident_management_monthly_active_users_hwm": (int,),
@@ -144,6 +145,7 @@ def openapi_types(_):
144145
"dbm_queries_count_avg": "dbm_queries_count_avg",
145146
"fargate_tasks_count_avg": "fargate_tasks_count_avg",
146147
"fargate_tasks_count_hwm": "fargate_tasks_count_hwm",
148+
"forwarding_events_bytes_sum": "forwarding_events_bytes_sum",
147149
"gcp_host_top99p": "gcp_host_top99p",
148150
"heroku_host_top99p": "heroku_host_top99p",
149151
"incident_management_monthly_active_users_hwm": "incident_management_monthly_active_users_hwm",
@@ -226,6 +228,7 @@ def __init__(
226228
dbm_queries_count_avg: Union[int, UnsetType] = unset,
227229
fargate_tasks_count_avg: Union[int, UnsetType] = unset,
228230
fargate_tasks_count_hwm: Union[int, UnsetType] = unset,
231+
forwarding_events_bytes_sum: Union[int, UnsetType] = unset,
229232
gcp_host_top99p: Union[int, UnsetType] = unset,
230233
heroku_host_top99p: Union[int, UnsetType] = unset,
231234
incident_management_monthly_active_users_hwm: Union[int, UnsetType] = unset,
@@ -387,6 +390,9 @@ def __init__(
387390
:param fargate_tasks_count_hwm: Shows the average of all Fargate tasks over all hours in the current date for all organizations.
388391
:type fargate_tasks_count_hwm: int, optional
389392
393+
:param forwarding_events_bytes_sum: Shows the sum of all log bytes forwarded over all hours in the current date for all organizations.
394+
:type forwarding_events_bytes_sum: int, optional
395+
390396
:param gcp_host_top99p: Shows the 99th percentile of all GCP hosts over all hours in the current date for all organizations.
391397
:type gcp_host_top99p: int, optional
392398
@@ -582,6 +588,8 @@ def __init__(
582588
kwargs["fargate_tasks_count_avg"] = fargate_tasks_count_avg
583589
if fargate_tasks_count_hwm is not unset:
584590
kwargs["fargate_tasks_count_hwm"] = fargate_tasks_count_hwm
591+
if forwarding_events_bytes_sum is not unset:
592+
kwargs["forwarding_events_bytes_sum"] = forwarding_events_bytes_sum
585593
if gcp_host_top99p is not unset:
586594
kwargs["gcp_host_top99p"] = gcp_host_top99p
587595
if heroku_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
@@ -55,6 +55,7 @@ def openapi_types(_):
5555
"dbm_queries_avg_sum": (int,),
5656
"fargate_tasks_count_avg": (int,),
5757
"fargate_tasks_count_hwm": (int,),
58+
"forwarding_events_bytes_sum": (int,),
5859
"gcp_host_top99p": (int,),
5960
"heroku_host_top99p": (int,),
6061
"id": (str,),
@@ -138,6 +139,7 @@ def openapi_types(_):
138139
"dbm_queries_avg_sum": "dbm_queries_avg_sum",
139140
"fargate_tasks_count_avg": "fargate_tasks_count_avg",
140141
"fargate_tasks_count_hwm": "fargate_tasks_count_hwm",
142+
"forwarding_events_bytes_sum": "forwarding_events_bytes_sum",
141143
"gcp_host_top99p": "gcp_host_top99p",
142144
"heroku_host_top99p": "heroku_host_top99p",
143145
"id": "id",
@@ -222,6 +224,7 @@ def __init__(
222224
dbm_queries_avg_sum: Union[int, UnsetType] = unset,
223225
fargate_tasks_count_avg: Union[int, UnsetType] = unset,
224226
fargate_tasks_count_hwm: Union[int, UnsetType] = unset,
227+
forwarding_events_bytes_sum: Union[int, UnsetType] = unset,
225228
gcp_host_top99p: Union[int, UnsetType] = unset,
226229
heroku_host_top99p: Union[int, UnsetType] = unset,
227230
id: Union[str, UnsetType] = unset,
@@ -383,6 +386,9 @@ def __init__(
383386
:param fargate_tasks_count_hwm: Shows the high-water mark of all Fargate tasks over all hours in the current date for the given org.
384387
:type fargate_tasks_count_hwm: int, optional
385388
389+
:param forwarding_events_bytes_sum: Shows the sum of all log bytes forwarded over all hours in the current date for the given org.
390+
:type forwarding_events_bytes_sum: int, optional
391+
386392
:param gcp_host_top99p: Shows the 99th percentile of all GCP hosts over all hours in the current date for the given org.
387393
:type gcp_host_top99p: int, optional
388394
@@ -585,6 +591,8 @@ def __init__(
585591
kwargs["fargate_tasks_count_avg"] = fargate_tasks_count_avg
586592
if fargate_tasks_count_hwm is not unset:
587593
kwargs["fargate_tasks_count_hwm"] = fargate_tasks_count_hwm
594+
if forwarding_events_bytes_sum is not unset:
595+
kwargs["forwarding_events_bytes_sum"] = forwarding_events_bytes_sum
588596
if gcp_host_top99p is not unset:
589597
kwargs["gcp_host_top99p"] = gcp_host_top99p
590598
if heroku_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
@@ -66,6 +66,7 @@ def openapi_types(_):
6666
"end_date": (datetime,),
6767
"fargate_tasks_count_avg_sum": (int,),
6868
"fargate_tasks_count_hwm_sum": (int,),
69+
"forwarding_events_bytes_agg_sum": (int,),
6970
"gcp_host_top99p_sum": (int,),
7071
"heroku_host_top99p_sum": (int,),
7172
"incident_management_monthly_active_users_hwm_sum": (int,),
@@ -156,6 +157,7 @@ def openapi_types(_):
156157
"end_date": "end_date",
157158
"fargate_tasks_count_avg_sum": "fargate_tasks_count_avg_sum",
158159
"fargate_tasks_count_hwm_sum": "fargate_tasks_count_hwm_sum",
160+
"forwarding_events_bytes_agg_sum": "forwarding_events_bytes_agg_sum",
159161
"gcp_host_top99p_sum": "gcp_host_top99p_sum",
160162
"heroku_host_top99p_sum": "heroku_host_top99p_sum",
161163
"incident_management_monthly_active_users_hwm_sum": "incident_management_monthly_active_users_hwm_sum",
@@ -247,6 +249,7 @@ def __init__(
247249
end_date: Union[datetime, UnsetType] = unset,
248250
fargate_tasks_count_avg_sum: Union[int, UnsetType] = unset,
249251
fargate_tasks_count_hwm_sum: Union[int, UnsetType] = unset,
252+
forwarding_events_bytes_agg_sum: Union[int, UnsetType] = unset,
250253
gcp_host_top99p_sum: Union[int, UnsetType] = unset,
251254
heroku_host_top99p_sum: Union[int, UnsetType] = unset,
252255
incident_management_monthly_active_users_hwm_sum: Union[int, UnsetType] = unset,
@@ -419,6 +422,9 @@ def __init__(
419422
:param fargate_tasks_count_hwm_sum: Shows the sum of the high-water marks of all Fargate tasks over all hours in the current months for all organizations.
420423
:type fargate_tasks_count_hwm_sum: int, optional
421424
425+
:param forwarding_events_bytes_agg_sum: Shows the sum of all logs forwarding bytes over all hours in the current months for all organizations (data available as of April 1, 2023)
426+
:type forwarding_events_bytes_agg_sum: int, optional
427+
422428
:param gcp_host_top99p_sum: Shows the 99th percentile of all GCP hosts over all hours in the current months for all organizations.
423429
:type gcp_host_top99p_sum: int, optional
424430
@@ -640,6 +646,8 @@ def __init__(
640646
kwargs["fargate_tasks_count_avg_sum"] = fargate_tasks_count_avg_sum
641647
if fargate_tasks_count_hwm_sum is not unset:
642648
kwargs["fargate_tasks_count_hwm_sum"] = fargate_tasks_count_hwm_sum
649+
if forwarding_events_bytes_agg_sum is not unset:
650+
kwargs["forwarding_events_bytes_agg_sum"] = forwarding_events_bytes_agg_sum
643651
if gcp_host_top99p_sum is not unset:
644652
kwargs["gcp_host_top99p_sum"] = gcp_host_top99p_sum
645653
if heroku_host_top99p_sum is not unset:

0 commit comments

Comments
 (0)