Skip to content

Commit 0d06f84

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add usage metering RUM Roku fields (#1522)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent bee1998 commit 0d06f84

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.4",
7-
"regenerated": "2023-06-12 17:40:10.052800",
8-
"spec_repo_commit": "03643056"
7+
"regenerated": "2023-06-13 15:21:28.416210",
8+
"spec_repo_commit": "a19e81fb"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-06-12 17:40:10.096150",
13-
"spec_repo_commit": "03643056"
12+
"regenerated": "2023-06-13 15:21:28.432206",
13+
"spec_repo_commit": "a19e81fb"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17652,6 +17652,11 @@ components:
1765217652
all hours in the current date for all organizations.
1765317653
format: int64
1765417654
type: integer
17655+
mobile_rum_session_count_roku_sum:
17656+
description: Shows the sum of all mobile RUM Sessions on Roku over all hours
17657+
in the current date for all organizations.
17658+
format: int64
17659+
type: integer
1765517660
mobile_rum_session_count_sum:
1765617661
description: Shows the sum of all mobile RUM Sessions over all hours in
1765717662
the current date for all organizations
@@ -18058,6 +18063,11 @@ components:
1805818063
all hours in the current date for the given org.
1805918064
format: int64
1806018065
type: integer
18066+
mobile_rum_session_count_roku_sum:
18067+
description: Shows the sum of all mobile RUM Sessions on Roku over all hours
18068+
in the current date for the given org.
18069+
format: int64
18070+
type: integer
1806118071
mobile_rum_session_count_sum:
1806218072
description: Shows the sum of all mobile RUM Sessions over all hours in
1806318073
the current date for the given org.
@@ -18502,6 +18512,11 @@ components:
1850218512
all hours in the current months for all organizations.
1850318513
format: int64
1850418514
type: integer
18515+
mobile_rum_session_count_roku_agg_sum:
18516+
description: Shows the sum of all mobile RUM Sessions on Roku over all hours
18517+
in the current months for all organizations.
18518+
format: int64
18519+
type: integer
1850518520
mobile_rum_units_agg_sum:
1850618521
description: Shows the sum of all mobile RUM units over all hours in the
1850718522
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
@@ -77,6 +77,7 @@ def openapi_types(_):
7777
"mobile_rum_session_count_flutter_sum": (int,),
7878
"mobile_rum_session_count_ios_sum": (int,),
7979
"mobile_rum_session_count_reactnative_sum": (int,),
80+
"mobile_rum_session_count_roku_sum": (int,),
8081
"mobile_rum_session_count_sum": (int,),
8182
"mobile_rum_units_sum": (int,),
8283
"netflow_indexed_events_count_sum": (int,),
@@ -160,6 +161,7 @@ def openapi_types(_):
160161
"mobile_rum_session_count_flutter_sum": "mobile_rum_session_count_flutter_sum",
161162
"mobile_rum_session_count_ios_sum": "mobile_rum_session_count_ios_sum",
162163
"mobile_rum_session_count_reactnative_sum": "mobile_rum_session_count_reactnative_sum",
164+
"mobile_rum_session_count_roku_sum": "mobile_rum_session_count_roku_sum",
163165
"mobile_rum_session_count_sum": "mobile_rum_session_count_sum",
164166
"mobile_rum_units_sum": "mobile_rum_units_sum",
165167
"netflow_indexed_events_count_sum": "netflow_indexed_events_count_sum",
@@ -244,6 +246,7 @@ def __init__(
244246
mobile_rum_session_count_flutter_sum: Union[int, UnsetType] = unset,
245247
mobile_rum_session_count_ios_sum: Union[int, UnsetType] = unset,
246248
mobile_rum_session_count_reactnative_sum: Union[int, UnsetType] = unset,
249+
mobile_rum_session_count_roku_sum: Union[int, UnsetType] = unset,
247250
mobile_rum_session_count_sum: Union[int, UnsetType] = unset,
248251
mobile_rum_units_sum: Union[int, UnsetType] = unset,
249252
netflow_indexed_events_count_sum: Union[int, UnsetType] = unset,
@@ -435,6 +438,9 @@ def __init__(
435438
:param mobile_rum_session_count_reactnative_sum: Shows the sum of all mobile RUM Sessions on React Native over all hours in the current date for all organizations.
436439
:type mobile_rum_session_count_reactnative_sum: int, optional
437440
441+
:param mobile_rum_session_count_roku_sum: Shows the sum of all mobile RUM Sessions on Roku over all hours in the current date for all organizations.
442+
:type mobile_rum_session_count_roku_sum: int, optional
443+
438444
:param mobile_rum_session_count_sum: Shows the sum of all mobile RUM Sessions over all hours in the current date for all organizations
439445
:type mobile_rum_session_count_sum: int, optional
440446
@@ -622,6 +628,8 @@ def __init__(
622628
kwargs["mobile_rum_session_count_ios_sum"] = mobile_rum_session_count_ios_sum
623629
if mobile_rum_session_count_reactnative_sum is not unset:
624630
kwargs["mobile_rum_session_count_reactnative_sum"] = mobile_rum_session_count_reactnative_sum
631+
if mobile_rum_session_count_roku_sum is not unset:
632+
kwargs["mobile_rum_session_count_roku_sum"] = mobile_rum_session_count_roku_sum
625633
if mobile_rum_session_count_sum is not unset:
626634
kwargs["mobile_rum_session_count_sum"] = mobile_rum_session_count_sum
627635
if mobile_rum_units_sum 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
@@ -70,6 +70,7 @@ def openapi_types(_):
7070
"mobile_rum_session_count_flutter_sum": (int,),
7171
"mobile_rum_session_count_ios_sum": (int,),
7272
"mobile_rum_session_count_reactnative_sum": (int,),
73+
"mobile_rum_session_count_roku_sum": (int,),
7374
"mobile_rum_session_count_sum": (int,),
7475
"mobile_rum_units_sum": (int,),
7576
"name": (str,),
@@ -155,6 +156,7 @@ def openapi_types(_):
155156
"mobile_rum_session_count_flutter_sum": "mobile_rum_session_count_flutter_sum",
156157
"mobile_rum_session_count_ios_sum": "mobile_rum_session_count_ios_sum",
157158
"mobile_rum_session_count_reactnative_sum": "mobile_rum_session_count_reactnative_sum",
159+
"mobile_rum_session_count_roku_sum": "mobile_rum_session_count_roku_sum",
158160
"mobile_rum_session_count_sum": "mobile_rum_session_count_sum",
159161
"mobile_rum_units_sum": "mobile_rum_units_sum",
160162
"name": "name",
@@ -241,6 +243,7 @@ def __init__(
241243
mobile_rum_session_count_flutter_sum: Union[int, UnsetType] = unset,
242244
mobile_rum_session_count_ios_sum: Union[int, UnsetType] = unset,
243245
mobile_rum_session_count_reactnative_sum: Union[int, UnsetType] = unset,
246+
mobile_rum_session_count_roku_sum: Union[int, UnsetType] = unset,
244247
mobile_rum_session_count_sum: Union[int, UnsetType] = unset,
245248
mobile_rum_units_sum: Union[int, UnsetType] = unset,
246249
name: Union[str, UnsetType] = unset,
@@ -434,6 +437,9 @@ def __init__(
434437
:param mobile_rum_session_count_reactnative_sum: Shows the sum of all mobile RUM Sessions on React Native over all hours in the current date for the given org.
435438
:type mobile_rum_session_count_reactnative_sum: int, optional
436439
440+
:param mobile_rum_session_count_roku_sum: Shows the sum of all mobile RUM Sessions on Roku over all hours in the current date for the given org.
441+
:type mobile_rum_session_count_roku_sum: int, optional
442+
437443
:param mobile_rum_session_count_sum: Shows the sum of all mobile RUM Sessions over all hours in the current date for the given org.
438444
:type mobile_rum_session_count_sum: int, optional
439445
@@ -627,6 +633,8 @@ def __init__(
627633
kwargs["mobile_rum_session_count_ios_sum"] = mobile_rum_session_count_ios_sum
628634
if mobile_rum_session_count_reactnative_sum is not unset:
629635
kwargs["mobile_rum_session_count_reactnative_sum"] = mobile_rum_session_count_reactnative_sum
636+
if mobile_rum_session_count_roku_sum is not unset:
637+
kwargs["mobile_rum_session_count_roku_sum"] = mobile_rum_session_count_roku_sum
630638
if mobile_rum_session_count_sum is not unset:
631639
kwargs["mobile_rum_session_count_sum"] = mobile_rum_session_count_sum
632640
if mobile_rum_units_sum 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
@@ -85,6 +85,7 @@ def openapi_types(_):
8585
"mobile_rum_session_count_flutter_agg_sum": (int,),
8686
"mobile_rum_session_count_ios_agg_sum": (int,),
8787
"mobile_rum_session_count_reactnative_agg_sum": (int,),
88+
"mobile_rum_session_count_roku_agg_sum": (int,),
8889
"mobile_rum_units_agg_sum": (int,),
8990
"netflow_indexed_events_count_agg_sum": (int,),
9091
"npm_host_top99p_sum": (int,),
@@ -177,6 +178,7 @@ def openapi_types(_):
177178
"mobile_rum_session_count_flutter_agg_sum": "mobile_rum_session_count_flutter_agg_sum",
178179
"mobile_rum_session_count_ios_agg_sum": "mobile_rum_session_count_ios_agg_sum",
179180
"mobile_rum_session_count_reactnative_agg_sum": "mobile_rum_session_count_reactnative_agg_sum",
181+
"mobile_rum_session_count_roku_agg_sum": "mobile_rum_session_count_roku_agg_sum",
180182
"mobile_rum_units_agg_sum": "mobile_rum_units_agg_sum",
181183
"netflow_indexed_events_count_agg_sum": "netflow_indexed_events_count_agg_sum",
182184
"npm_host_top99p_sum": "npm_host_top99p_sum",
@@ -270,6 +272,7 @@ def __init__(
270272
mobile_rum_session_count_flutter_agg_sum: Union[int, UnsetType] = unset,
271273
mobile_rum_session_count_ios_agg_sum: Union[int, UnsetType] = unset,
272274
mobile_rum_session_count_reactnative_agg_sum: Union[int, UnsetType] = unset,
275+
mobile_rum_session_count_roku_agg_sum: Union[int, UnsetType] = unset,
273276
mobile_rum_units_agg_sum: Union[int, UnsetType] = unset,
274277
netflow_indexed_events_count_agg_sum: Union[int, UnsetType] = unset,
275278
npm_host_top99p_sum: Union[int, UnsetType] = unset,
@@ -482,6 +485,9 @@ def __init__(
482485
:param mobile_rum_session_count_reactnative_agg_sum: Shows the sum of all mobile RUM Sessions on React Native over all hours in the current months for all organizations.
483486
:type mobile_rum_session_count_reactnative_agg_sum: int, optional
484487
488+
:param mobile_rum_session_count_roku_agg_sum: Shows the sum of all mobile RUM Sessions on Roku over all hours in the current months for all organizations.
489+
:type mobile_rum_session_count_roku_agg_sum: int, optional
490+
485491
:param mobile_rum_units_agg_sum: Shows the sum of all mobile RUM units over all hours in the current months for all organizations.
486492
:type mobile_rum_units_agg_sum: int, optional
487493
@@ -692,6 +698,8 @@ def __init__(
692698
kwargs["mobile_rum_session_count_ios_agg_sum"] = mobile_rum_session_count_ios_agg_sum
693699
if mobile_rum_session_count_reactnative_agg_sum is not unset:
694700
kwargs["mobile_rum_session_count_reactnative_agg_sum"] = mobile_rum_session_count_reactnative_agg_sum
701+
if mobile_rum_session_count_roku_agg_sum is not unset:
702+
kwargs["mobile_rum_session_count_roku_agg_sum"] = mobile_rum_session_count_roku_agg_sum
695703
if mobile_rum_units_agg_sum is not unset:
696704
kwargs["mobile_rum_units_agg_sum"] = mobile_rum_units_agg_sum
697705
if netflow_indexed_events_count_agg_sum is not unset:

0 commit comments

Comments
 (0)