diff --git a/.apigentools-info b/.apigentools-info index f5ef56bb811..ef0cef7e4a6 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,13 +4,13 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.4", - "regenerated": "2023-06-14 14:30:37.426570", - "spec_repo_commit": "23362011" + "regenerated": "2023-06-14 19:36:50.047106", + "spec_repo_commit": "aafb3db6" }, "v2": { "apigentools_version": "1.6.4", - "regenerated": "2023-06-14 14:30:37.440643", - "spec_repo_commit": "23362011" + "regenerated": "2023-06-14 19:36:50.066398", + "spec_repo_commit": "aafb3db6" } } } \ No newline at end of file diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index dde167c3978..b224ab9b1aa 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -19146,25 +19146,26 @@ components: description: Axis controls for the widget. properties: include_zero: - description: True includes zero. + description: Set to `true` to include zero. type: boolean label: - description: The label of the axis to display on the graph. + description: The label of the axis to display on the graph. Only usable + on Scatterplot Widgets. type: string max: default: auto - description: Specifies the maximum value to show on the y-axis. It takes - a number, or auto for default behavior. + description: Specifies maximum numeric value to show on the axis. Defaults + to `auto`. type: string min: default: auto - description: Specifies minimum value to show on the y-axis. It takes a number, - or auto for default behavior. + description: Specifies minimum numeric value to show on the axis. Defaults + to `auto`. type: string scale: default: linear description: Specifies the scale type. Possible values are `linear`, `log`, - `sqrt`, `pow##` (for example `pow2`, `pow0.5` etc.). + `sqrt`, and `pow##` (for example `pow2` or `pow0.5`). type: string type: object WidgetChangeType: diff --git a/packages/datadog-api-client-v1/models/WidgetAxis.ts b/packages/datadog-api-client-v1/models/WidgetAxis.ts index 4d9e65bfbbb..5c062f9e90a 100644 --- a/packages/datadog-api-client-v1/models/WidgetAxis.ts +++ b/packages/datadog-api-client-v1/models/WidgetAxis.ts @@ -11,23 +11,23 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util"; */ export class WidgetAxis { /** - * True includes zero. + * Set to `true` to include zero. */ "includeZero"?: boolean; /** - * The label of the axis to display on the graph. + * The label of the axis to display on the graph. Only usable on Scatterplot Widgets. */ "label"?: string; /** - * Specifies the maximum value to show on the y-axis. It takes a number, or auto for default behavior. + * Specifies maximum numeric value to show on the axis. Defaults to `auto`. */ "max"?: string; /** - * Specifies minimum value to show on the y-axis. It takes a number, or auto for default behavior. + * Specifies minimum numeric value to show on the axis. Defaults to `auto`. */ "min"?: string; /** - * Specifies the scale type. Possible values are `linear`, `log`, `sqrt`, `pow##` (for example `pow2`, `pow0.5` etc.). + * Specifies the scale type. Possible values are `linear`, `log`, `sqrt`, and `pow##` (for example `pow2` or `pow0.5`). */ "scale"?: string;