Skip to content

Commit b503db3

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit 166fecc of spec repo (#223)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 80f22c0 commit b503db3

File tree

6 files changed

+80
-4
lines changed

6 files changed

+80
-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.4.1.dev2",
7-
"regenerated": "2021-01-12 13:55:07.392987",
8-
"spec_repo_commit": "5570882"
7+
"regenerated": "2021-01-13 11:20:30.289161",
8+
"spec_repo_commit": "166fecc"
99
},
1010
"v2": {
1111
"apigentools_version": "1.4.1.dev2",
12-
"regenerated": "2021-01-12 13:55:17.956450",
13-
"spec_repo_commit": "5570882"
12+
"regenerated": "2021-01-13 11:20:41.152849",
13+
"spec_repo_commit": "166fecc"
1414
}
1515
}
1616
}

docs/v1/UsageLogsHour.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ Name | Type | Description | Notes
88
**hour** | **datetime** | The hour for the usage. | [optional]
99
**indexed_events_count** | **int** | Contains the number of log events indexed. | [optional]
1010
**ingested_events_bytes** | **int** | Contains the number of log bytes ingested. | [optional]
11+
**logs_live_indexed_count** | **int** | Contains the number of live log events indexed (data available as of December 1, 2020). | [optional]
12+
**logs_live_ingested_bytes** | **int** | Contains the number of live log bytes ingested (data available as of December 1, 2020). | [optional]
13+
**logs_rehydrated_indexed_count** | **int** | Contains the number of rehydrated log events indexed (data available as of December 1, 2020). | [optional]
14+
**logs_rehydrated_ingested_bytes** | **int** | Contains the number of rehydrated log bytes ingested (data available as of December 1, 2020). | [optional]
1115

1216
[[Back to Model list]](README.md#documentation-for-models) [[Back to API list]](README.md#documentation-for-api-endpoints) [[Back to README]](README.md)
1317

docs/v1/UsageSummaryResponse.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,17 @@ Name | Type | Description | Notes
2525
**infra_host_top99p_sum** | **int** | Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current months for all organizations. | [optional]
2626
**ingested_events_bytes_agg_sum** | **int** | Shows the sum of all log bytes ingested over all hours in the current months for all organizations. | [optional]
2727
**last_updated** | **datetime** | Shows the the most recent hour in the current months for all organizations for which all usages were calculated. | [optional]
28+
**live_indexed_events_agg_sum** | **int** | Shows the sum of all live logs indexed over all hours in the current months for all organizations (data available as of December 1, 2020). | [optional]
29+
**live_ingested_bytes_agg_sum** | **int** | Shows the sum of all live logs bytes ingested over all hours in the current months for all organizations (data available as of December 1, 2020). | [optional]
2830
**mobile_rum_session_count_agg_sum** | **int** | Shows the sum of all mobile RUM Sessions over all hours in the current months for all organizations. | [optional]
2931
**mobile_rum_session_count_android_agg_sum** | **int** | Shows the sum of all mobile RUM Sessions on Android over all hours in the current months for all organizations. | [optional]
3032
**mobile_rum_session_count_ios_agg_sum** | **int** | Shows the sum of all mobile RUM Sessions on iOS over all hours in the current months for all organizations. | [optional]
3133
**netflow_indexed_events_count_agg_sum** | **int** | Shows the sum of all Network flows indexed over all hours in the current months for all organizations. | [optional]
3234
**npm_host_top99p_sum** | **int** | Shows the 99th percentile of all distinct Networks hosts over all hours in the current months for all organizations. | [optional]
3335
**profiling_container_agent_count_avg** | **int** | Shows the average number of profiled containers over all hours in the current months for all organizations. | [optional]
3436
**profiling_host_count_top99p_sum** | **int** | Shows the 99th percentile of all profiled hosts over all hours in the current months for all organizations. | [optional]
37+
**rehydrated_indexed_events_agg_sum** | **int** | Shows the sum of all rehydrated logs indexed over all hours in the current months for all organizations (data available as of December 1, 2020). | [optional]
38+
**rehydrated_ingested_bytes_agg_sum** | **int** | Shows the sum of all rehydrated logs bytes ingested over all hours in the current months for all organizations (data available as of December 1, 2020). | [optional]
3539
**rum_session_count_agg_sum** | **int** | Shows the sum of all browser RUM Sessions over all hours in the current months for all organizations. | [optional]
3640
**rum_total_session_count_agg_sum** | **int** | Shows the sum of RUM Sessions (browser and mobile) over all hours in the current months for all organizations. | [optional]
3741
**start_date** | **datetime** | Shows the first date of usage in the current months for all organizations. | [optional]

src/datadog_api_client/v1/model/usage_logs_hour.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ def openapi_types():
7373
'hour': (datetime,), # noqa: E501
7474
'indexed_events_count': (int,), # noqa: E501
7575
'ingested_events_bytes': (int,), # noqa: E501
76+
'logs_live_indexed_count': (int,), # noqa: E501
77+
'logs_live_ingested_bytes': (int,), # noqa: E501
78+
'logs_rehydrated_indexed_count': (int,), # noqa: E501
79+
'logs_rehydrated_ingested_bytes': (int,), # noqa: E501
7680
}
7781

7882
@cached_property
@@ -85,6 +89,10 @@ def discriminator():
8589
'hour': 'hour', # noqa: E501
8690
'indexed_events_count': 'indexed_events_count', # noqa: E501
8791
'ingested_events_bytes': 'ingested_events_bytes', # noqa: E501
92+
'logs_live_indexed_count': 'logs_live_indexed_count', # noqa: E501
93+
'logs_live_ingested_bytes': 'logs_live_ingested_bytes', # noqa: E501
94+
'logs_rehydrated_indexed_count': 'logs_rehydrated_indexed_count', # noqa: E501
95+
'logs_rehydrated_ingested_bytes': 'logs_rehydrated_ingested_bytes', # noqa: E501
8896
}
8997

9098
_composed_schemas = {}
@@ -137,6 +145,10 @@ def __init__(self, *args, **kwargs): # noqa: E501
137145
hour (datetime): The hour for the usage.. [optional] # noqa: E501
138146
indexed_events_count (int): Contains the number of log events indexed.. [optional] # noqa: E501
139147
ingested_events_bytes (int): Contains the number of log bytes ingested.. [optional] # noqa: E501
148+
logs_live_indexed_count (int): Contains the number of live log events indexed (data available as of December 1, 2020).. [optional] # noqa: E501
149+
logs_live_ingested_bytes (int): Contains the number of live log bytes ingested (data available as of December 1, 2020).. [optional] # noqa: E501
150+
logs_rehydrated_indexed_count (int): Contains the number of rehydrated log events indexed (data available as of December 1, 2020).. [optional] # noqa: E501
151+
logs_rehydrated_ingested_bytes (int): Contains the number of rehydrated log bytes ingested (data available as of December 1, 2020).. [optional] # noqa: E501
140152
"""
141153

142154
_check_type = kwargs.pop('_check_type', True)

src/datadog_api_client/v1/model/usage_summary_response.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,17 @@ def openapi_types():
9595
'infra_host_top99p_sum': (int,), # noqa: E501
9696
'ingested_events_bytes_agg_sum': (int,), # noqa: E501
9797
'last_updated': (datetime,), # noqa: E501
98+
'live_indexed_events_agg_sum': (int,), # noqa: E501
99+
'live_ingested_bytes_agg_sum': (int,), # noqa: E501
98100
'mobile_rum_session_count_agg_sum': (int,), # noqa: E501
99101
'mobile_rum_session_count_android_agg_sum': (int,), # noqa: E501
100102
'mobile_rum_session_count_ios_agg_sum': (int,), # noqa: E501
101103
'netflow_indexed_events_count_agg_sum': (int,), # noqa: E501
102104
'npm_host_top99p_sum': (int,), # noqa: E501
103105
'profiling_container_agent_count_avg': (int,), # noqa: E501
104106
'profiling_host_count_top99p_sum': (int,), # noqa: E501
107+
'rehydrated_indexed_events_agg_sum': (int,), # noqa: E501
108+
'rehydrated_ingested_bytes_agg_sum': (int,), # noqa: E501
105109
'rum_session_count_agg_sum': (int,), # noqa: E501
106110
'rum_total_session_count_agg_sum': (int,), # noqa: E501
107111
'start_date': (datetime,), # noqa: E501
@@ -139,13 +143,17 @@ def discriminator():
139143
'infra_host_top99p_sum': 'infra_host_top99p_sum', # noqa: E501
140144
'ingested_events_bytes_agg_sum': 'ingested_events_bytes_agg_sum', # noqa: E501
141145
'last_updated': 'last_updated', # noqa: E501
146+
'live_indexed_events_agg_sum': 'live_indexed_events_agg_sum', # noqa: E501
147+
'live_ingested_bytes_agg_sum': 'live_ingested_bytes_agg_sum', # noqa: E501
142148
'mobile_rum_session_count_agg_sum': 'mobile_rum_session_count_agg_sum', # noqa: E501
143149
'mobile_rum_session_count_android_agg_sum': 'mobile_rum_session_count_android_agg_sum', # noqa: E501
144150
'mobile_rum_session_count_ios_agg_sum': 'mobile_rum_session_count_ios_agg_sum', # noqa: E501
145151
'netflow_indexed_events_count_agg_sum': 'netflow_indexed_events_count_agg_sum', # noqa: E501
146152
'npm_host_top99p_sum': 'npm_host_top99p_sum', # noqa: E501
147153
'profiling_container_agent_count_avg': 'profiling_container_agent_count_avg', # noqa: E501
148154
'profiling_host_count_top99p_sum': 'profiling_host_count_top99p_sum', # noqa: E501
155+
'rehydrated_indexed_events_agg_sum': 'rehydrated_indexed_events_agg_sum', # noqa: E501
156+
'rehydrated_ingested_bytes_agg_sum': 'rehydrated_ingested_bytes_agg_sum', # noqa: E501
149157
'rum_session_count_agg_sum': 'rum_session_count_agg_sum', # noqa: E501
150158
'rum_total_session_count_agg_sum': 'rum_total_session_count_agg_sum', # noqa: E501
151159
'start_date': 'start_date', # noqa: E501
@@ -223,13 +231,17 @@ def __init__(self, *args, **kwargs): # noqa: E501
223231
infra_host_top99p_sum (int): Shows the 99th percentile of all distinct infrastructure hosts over all hours in the current months for all organizations.. [optional] # noqa: E501
224232
ingested_events_bytes_agg_sum (int): Shows the sum of all log bytes ingested over all hours in the current months for all organizations.. [optional] # noqa: E501
225233
last_updated (datetime): Shows the the most recent hour in the current months for all organizations for which all usages were calculated.. [optional] # noqa: E501
234+
live_indexed_events_agg_sum (int): Shows the sum of all live logs indexed over all hours in the current months for all organizations (data available as of December 1, 2020).. [optional] # noqa: E501
235+
live_ingested_bytes_agg_sum (int): Shows the sum of all live logs bytes ingested over all hours in the current months for all organizations (data available as of December 1, 2020).. [optional] # noqa: E501
226236
mobile_rum_session_count_agg_sum (int): Shows the sum of all mobile RUM Sessions over all hours in the current months for all organizations.. [optional] # noqa: E501
227237
mobile_rum_session_count_android_agg_sum (int): Shows the sum of all mobile RUM Sessions on Android over all hours in the current months for all organizations.. [optional] # noqa: E501
228238
mobile_rum_session_count_ios_agg_sum (int): Shows the sum of all mobile RUM Sessions on iOS over all hours in the current months for all organizations.. [optional] # noqa: E501
229239
netflow_indexed_events_count_agg_sum (int): Shows the sum of all Network flows indexed over all hours in the current months for all organizations.. [optional] # noqa: E501
230240
npm_host_top99p_sum (int): Shows the 99th percentile of all distinct Networks hosts over all hours in the current months for all organizations.. [optional] # noqa: E501
231241
profiling_container_agent_count_avg (int): Shows the average number of profiled containers over all hours in the current months for all organizations.. [optional] # noqa: E501
232242
profiling_host_count_top99p_sum (int): Shows the 99th percentile of all profiled hosts over all hours in the current months for all organizations.. [optional] # noqa: E501
243+
rehydrated_indexed_events_agg_sum (int): Shows the sum of all rehydrated logs indexed over all hours in the current months for all organizations (data available as of December 1, 2020).. [optional] # noqa: E501
244+
rehydrated_ingested_bytes_agg_sum (int): Shows the sum of all rehydrated logs bytes ingested over all hours in the current months for all organizations (data available as of December 1, 2020).. [optional] # noqa: E501
233245
rum_session_count_agg_sum (int): Shows the sum of all browser RUM Sessions over all hours in the current months for all organizations.. [optional] # noqa: E501
234246
rum_total_session_count_agg_sum (int): Shows the sum of RUM Sessions (browser and mobile) over all hours in the current months for all organizations.. [optional] # noqa: E501
235247
start_date (datetime): Shows the first date of usage in the current months for all organizations.. [optional] # noqa: E501

src/datadog_api_client/v1/openapi.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8126,6 +8126,26 @@ components:
81268126
description: Contains the number of log bytes ingested.
81278127
format: int64
81288128
type: integer
8129+
logs_live_indexed_count:
8130+
description: Contains the number of live log events indexed (data available
8131+
as of December 1, 2020).
8132+
format: int64
8133+
type: integer
8134+
logs_live_ingested_bytes:
8135+
description: Contains the number of live log bytes ingested (data available
8136+
as of December 1, 2020).
8137+
format: int64
8138+
type: integer
8139+
logs_rehydrated_indexed_count:
8140+
description: Contains the number of rehydrated log events indexed (data
8141+
available as of December 1, 2020).
8142+
format: int64
8143+
type: integer
8144+
logs_rehydrated_ingested_bytes:
8145+
description: Contains the number of rehydrated log bytes ingested (data
8146+
available as of December 1, 2020).
8147+
format: int64
8148+
type: integer
81298149
type: object
81308150
UsageLogsResponse:
81318151
description: Response containing the number of logs for each hour.
@@ -8798,6 +8818,18 @@ components:
87988818
organizations for which all usages were calculated.
87998819
format: date-time
88008820
type: string
8821+
live_indexed_events_agg_sum:
8822+
description: Shows the sum of all live logs indexed over all hours in the
8823+
current months for all organizations (data available as of December 1,
8824+
2020).
8825+
format: int64
8826+
type: integer
8827+
live_ingested_bytes_agg_sum:
8828+
description: Shows the sum of all live logs bytes ingested over all hours
8829+
in the current months for all organizations (data available as of December
8830+
1, 2020).
8831+
format: int64
8832+
type: integer
88018833
mobile_rum_session_count_agg_sum:
88028834
description: Shows the sum of all mobile RUM Sessions over all hours in
88038835
the current months for all organizations.
@@ -8833,6 +8865,18 @@ components:
88338865
in the current months for all organizations.
88348866
format: int64
88358867
type: integer
8868+
rehydrated_indexed_events_agg_sum:
8869+
description: Shows the sum of all rehydrated logs indexed over all hours
8870+
in the current months for all organizations (data available as of December
8871+
1, 2020).
8872+
format: int64
8873+
type: integer
8874+
rehydrated_ingested_bytes_agg_sum:
8875+
description: Shows the sum of all rehydrated logs bytes ingested over all
8876+
hours in the current months for all organizations (data available as of
8877+
December 1, 2020).
8878+
format: int64
8879+
type: integer
88368880
rum_session_count_agg_sum:
88378881
description: Shows the sum of all browser RUM Sessions over all hours in
88388882
the current months for all organizations.

0 commit comments

Comments
 (0)