Skip to content

Commit 1fca923

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit c7163389 of spec repo
1 parent 267bfcd commit 1fca923

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
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 14:39:34.231825",
8-
"spec_repo_commit": "52c2288b"
7+
"regenerated": "2023-06-12 16:59:52.514246",
8+
"spec_repo_commit": "c7163389"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.4",
12-
"regenerated": "2023-06-12 14:39:34.243959",
13-
"spec_repo_commit": "52c2288b"
12+
"regenerated": "2023-06-12 16:59:52.526616",
13+
"spec_repo_commit": "c7163389"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19099,25 +19099,26 @@ components:
1909919099
description: Axis controls for the widget.
1910019100
properties:
1910119101
include_zero:
19102-
description: True includes zero.
19102+
description: Set to `true` to include zero.
1910319103
type: boolean
1910419104
label:
19105-
description: The label of the axis to display on the graph.
19105+
description: The label of the axis to display on the graph. Only usable
19106+
on Scatterplot Widgets.
1910619107
type: string
1910719108
max:
1910819109
default: auto
19109-
description: Specifies the maximum value to show on the y-axis. It takes
19110-
a number, or auto for default behavior.
19110+
description: Specifies maximum numeric value to show on the axis. Defaults
19111+
to `auto`.
1911119112
type: string
1911219113
min:
1911319114
default: auto
19114-
description: Specifies minimum value to show on the y-axis. It takes a number,
19115-
or auto for default behavior.
19115+
description: Specifies minimum numeric value to show on the axis. Defaults
19116+
to `auto`.
1911619117
type: string
1911719118
scale:
1911819119
default: linear
1911919120
description: Specifies the scale type. Possible values are `linear`, `log`,
19120-
`sqrt`, `pow##` (for example `pow2`, `pow0.5` etc.).
19121+
`sqrt`, and `pow##` (for example `pow2` or `pow0.5`).
1912119122
type: string
1912219123
type: object
1912319124
WidgetChangeType:

src/datadog_api_client/v1/model/widget_axis.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@ def __init__(
4444
"""
4545
Axis controls for the widget.
4646
47-
:param include_zero: True includes zero.
47+
:param include_zero: Set to ``true`` to include zero.
4848
:type include_zero: bool, optional
4949
50-
:param label: The label of the axis to display on the graph.
50+
:param label: The label of the axis to display on the graph. Only usable on Scatterplot Widgets.
5151
:type label: str, optional
5252
53-
:param max: Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior.
53+
:param max: Specifies maximum numeric value to show on the axis. Defaults to ``auto``.
5454
:type max: str, optional
5555
56-
:param min: Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior.
56+
:param min: Specifies minimum numeric value to show on the axis. Defaults to ``auto``.
5757
:type min: str, optional
5858
59-
:param scale: Specifies the scale type. Possible values are ``linear`` , ``log`` , ``sqrt`` , ``pow##`` (for example ``pow2`` , ``pow0.5`` etc.).
59+
:param scale: Specifies the scale type. Possible values are ``linear`` , ``log`` , ``sqrt`` , and ``pow##`` (for example ``pow2`` or ``pow0.5`` ).
6060
:type scale: str, optional
6161
"""
6262
if include_zero is not unset:

0 commit comments

Comments
 (0)