Skip to content

Commit 54438b0

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit de74943 of spec repo (#100)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 15382fb commit 54438b0

File tree

8 files changed

+19
-4
lines changed

8 files changed

+19
-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.2.0",
7-
"regenerated": "2020-10-01 12:16:11.700534",
8-
"spec_repo_commit": "1b477f7"
7+
"regenerated": "2020-10-01 16:43:48.541903",
8+
"spec_repo_commit": "de74943"
99
},
1010
"v2": {
1111
"apigentools_version": "1.2.0",
12-
"regenerated": "2020-10-01 12:16:22.417113",
13-
"spec_repo_commit": "1b477f7"
12+
"regenerated": "2020-10-01 16:43:58.022434",
13+
"spec_repo_commit": "de74943"
1414
}
1515
}
1616
}

docs/v1/TimeseriesWidgetDefinition.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**events** | [**[WidgetEvent]**](WidgetEvent.md) | List of widget events. | [optional]
1111
**legend_size** | **str** | Available legend sizes for a widget. Should be one of \&quot;0\&quot;, \&quot;2\&quot;, \&quot;4\&quot;, \&quot;8\&quot;, \&quot;16\&quot;, or \&quot;auto\&quot;. | [optional]
1212
**markers** | [**[WidgetMarker]**](WidgetMarker.md) | List of markers. | [optional]
13+
**right_yaxis** | [**WidgetAxis**](WidgetAxis.md) | | [optional]
1314
**show_legend** | **bool** | (screenboard only) Show the legend for this widget. | [optional]
1415
**time** | [**WidgetTime**](WidgetTime.md) | | [optional]
1516
**title** | **str** | Title of your widget. | [optional]

docs/v1/TimeseriesWidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Name | Type | Description | Notes
1010
**log_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
1111
**metadata** | [**[TimeseriesWidgetRequestMetadata]**](TimeseriesWidgetRequestMetadata.md) | Used to define expression aliases. | [optional]
1212
**network_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]
13+
**on_right_yaxis** | **bool** | Whether or not to display a second y-axis on the right. | [optional]
1314
**process_query** | [**ProcessQueryDefinition**](ProcessQueryDefinition.md) | | [optional]
1415
**q** | **str** | Widget query. | [optional]
1516
**rum_query** | [**LogQueryDefinition**](LogQueryDefinition.md) | | [optional]

docs/v1/WidgetDefinition.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ Name | Type | Description | Notes
8282
**show_resource_list** | **bool** | Whether to show the resource list or not. | [optional]
8383
**size_format** | [**WidgetSizeFormat**](WidgetSizeFormat.md) | | [optional]
8484
**markers** | [**[WidgetMarker]**](WidgetMarker.md) | List of markers. | [optional]
85+
**right_yaxis** | [**WidgetAxis**](WidgetAxis.md) | | [optional]
8586
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
8687

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

src/datadog_api_client/v1/model/timeseries_widget_definition.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def openapi_types():
9696
'events': ([WidgetEvent],), # noqa: E501
9797
'legend_size': (str,), # noqa: E501
9898
'markers': ([WidgetMarker],), # noqa: E501
99+
'right_yaxis': (WidgetAxis,), # noqa: E501
99100
'show_legend': (bool,), # noqa: E501
100101
'time': (WidgetTime,), # noqa: E501
101102
'title': (str,), # noqa: E501
@@ -116,6 +117,7 @@ def discriminator():
116117
'events': 'events', # noqa: E501
117118
'legend_size': 'legend_size', # noqa: E501
118119
'markers': 'markers', # noqa: E501
120+
'right_yaxis': 'right_yaxis', # noqa: E501
119121
'show_legend': 'show_legend', # noqa: E501
120122
'time': 'time', # noqa: E501
121123
'title': 'title', # noqa: E501
@@ -178,6 +180,7 @@ def __init__(self, requests, type, *args, **kwargs): # noqa: E501
178180
events ([WidgetEvent]): List of widget events.. [optional] # noqa: E501
179181
legend_size (str): Available legend sizes for a widget. Should be one of \&quot;0\&quot;, \&quot;2\&quot;, \&quot;4\&quot;, \&quot;8\&quot;, \&quot;16\&quot;, or \&quot;auto\&quot;.. [optional] # noqa: E501
180182
markers ([WidgetMarker]): List of markers.. [optional] # noqa: E501
183+
right_yaxis (WidgetAxis): [optional] # noqa: E501
181184
show_legend (bool): (screenboard only) Show the legend for this widget.. [optional] # noqa: E501
182185
time (WidgetTime): [optional] # noqa: E501
183186
title (str): Title of your widget.. [optional] # noqa: E501

src/datadog_api_client/v1/model/timeseries_widget_request.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,7 @@ def openapi_types():
9292
'log_query': (LogQueryDefinition,), # noqa: E501
9393
'metadata': ([TimeseriesWidgetRequestMetadata],), # noqa: E501
9494
'network_query': (LogQueryDefinition,), # noqa: E501
95+
'on_right_yaxis': (bool,), # noqa: E501
9596
'process_query': (ProcessQueryDefinition,), # noqa: E501
9697
'q': (str,), # noqa: E501
9798
'rum_query': (LogQueryDefinition,), # noqa: E501
@@ -111,6 +112,7 @@ def discriminator():
111112
'log_query': 'log_query', # noqa: E501
112113
'metadata': 'metadata', # noqa: E501
113114
'network_query': 'network_query', # noqa: E501
115+
'on_right_yaxis': 'on_right_yaxis', # noqa: E501
114116
'process_query': 'process_query', # noqa: E501
115117
'q': 'q', # noqa: E501
116118
'rum_query': 'rum_query', # noqa: E501
@@ -170,6 +172,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
170172
log_query (LogQueryDefinition): [optional] # noqa: E501
171173
metadata ([TimeseriesWidgetRequestMetadata]): Used to define expression aliases.. [optional] # noqa: E501
172174
network_query (LogQueryDefinition): [optional] # noqa: E501
175+
on_right_yaxis (bool): Whether or not to display a second y-axis on the right.. [optional] # noqa: E501
173176
process_query (ProcessQueryDefinition): [optional] # noqa: E501
174177
q (str): Widget query.. [optional] # noqa: E501
175178
rum_query (LogQueryDefinition): [optional] # noqa: E501

src/datadog_api_client/v1/model/widget_definition.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ def __init__(self, *args, **kwargs): # noqa: E501
315315
show_resource_list (bool): Whether to show the resource list or not.. [optional] # noqa: E501
316316
size_format (WidgetSizeFormat): [optional] # noqa: E501
317317
markers ([WidgetMarker]): List of markers.. [optional] # noqa: E501
318+
right_yaxis (WidgetAxis): [optional] # noqa: E501
318319
"""
319320

320321
alert_id = kwargs.get('alert_id', nulltype.Null)

src/datadog_api_client/v1/openapi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6942,6 +6942,8 @@ components:
69426942
$ref: '#/components/schemas/TimeseriesWidgetRequest'
69436943
minItems: 1
69446944
type: array
6945+
right_yaxis:
6946+
$ref: '#/components/schemas/WidgetAxis'
69456947
show_legend:
69466948
description: (screenboard only) Show the legend for this widget.
69476949
type: boolean
@@ -7001,6 +7003,9 @@ components:
70017003
type: array
70027004
network_query:
70037005
$ref: '#/components/schemas/LogQueryDefinition'
7006+
on_right_yaxis:
7007+
description: Whether or not to display a second y-axis on the right.
7008+
type: boolean
70047009
process_query:
70057010
$ref: '#/components/schemas/ProcessQueryDefinition'
70067011
q:

0 commit comments

Comments
 (0)