Skip to content

Commit e0cbf04

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit cb2fd9f of spec repo
1 parent acfd9a2 commit e0cbf04

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3506,8 +3506,9 @@ components:
35063506
focus: WORLD
35073507
properties:
35083508
focus:
3509-
description: The 2-letter ISO code of a country to focus the map on. Or
3510-
`WORLD`.
3509+
description: The 2-letter ISO code of a country to focus the map on, or
3510+
`WORLD` for global view, or a region (`EMEA`, `APAC`, `LATAM`), or a continent
3511+
(`NORTH_AMERICA`, `SOUTH_AMERICA`, `EUROPE`, `AFRICA`, `ASIA`, `OCEANIA`).
35113512
example: WORLD
35123513
type: string
35133514
required:
@@ -3526,6 +3527,12 @@ components:
35263527
items:
35273528
$ref: '#/components/schemas/ListStreamColumn'
35283529
type: array
3530+
conditional_formats:
3531+
description: Threshold (numeric) conditional formatting rules may be used
3532+
by the regions layer.
3533+
items:
3534+
$ref: '#/components/schemas/WidgetConditionalFormat'
3535+
type: array
35293536
formulas:
35303537
description: List of formulas that operate on queries.
35313538
items:
@@ -3551,6 +3558,11 @@ components:
35513558
$ref: '#/components/schemas/LogQueryDefinition'
35523559
sort:
35533560
$ref: '#/components/schemas/WidgetSortBy'
3561+
text_formats:
3562+
description: Text formatting rules may be used by the points layer.
3563+
items:
3564+
$ref: '#/components/schemas/TableWidgetTextFormatRule'
3565+
type: array
35543566
type: object
35553567
GraphSnapshot:
35563568
description: Object representing a graph snapshot.

packages/datadog-api-client-v1/models/GeomapWidgetDefinitionView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1111
*/
1212
export class GeomapWidgetDefinitionView {
1313
/**
14-
* The 2-letter ISO code of a country to focus the map on. Or `WORLD`.
14+
* The 2-letter ISO code of a country to focus the map on, or `WORLD` for global view, or a region (`EMEA`, `APAC`, `LATAM`), or a continent (`NORTH_AMERICA`, `SOUTH_AMERICA`, `EUROPE`, `AFRICA`, `ASIA`, `OCEANIA`).
1515
*/
1616
"focus": string;
1717

packages/datadog-api-client-v1/models/GeomapWidgetRequest.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ import { FormulaAndFunctionResponseFormat } from "./FormulaAndFunctionResponseFo
88
import { ListStreamColumn } from "./ListStreamColumn";
99
import { ListStreamQuery } from "./ListStreamQuery";
1010
import { LogQueryDefinition } from "./LogQueryDefinition";
11+
import { TableWidgetTextFormatRule } from "./TableWidgetTextFormatRule";
12+
import { WidgetConditionalFormat } from "./WidgetConditionalFormat";
1113
import { WidgetFormula } from "./WidgetFormula";
1214
import { WidgetSortBy } from "./WidgetSortBy";
1315

@@ -21,6 +23,10 @@ export class GeomapWidgetRequest {
2123
* Widget columns.
2224
*/
2325
"columns"?: Array<ListStreamColumn>;
26+
/**
27+
* Threshold (numeric) conditional formatting rules may be used by the regions layer.
28+
*/
29+
"conditionalFormats"?: Array<WidgetConditionalFormat>;
2430
/**
2531
* List of formulas that operate on queries.
2632
*/
@@ -57,6 +63,10 @@ export class GeomapWidgetRequest {
5763
* The controls for sorting the widget.
5864
*/
5965
"sort"?: WidgetSortBy;
66+
/**
67+
* Text formatting rules may be used by the points layer.
68+
*/
69+
"textFormats"?: Array<TableWidgetTextFormatRule>;
6070

6171
/**
6272
* A container for additional, undeclared properties.
@@ -78,6 +88,10 @@ export class GeomapWidgetRequest {
7888
baseName: "columns",
7989
type: "Array<ListStreamColumn>",
8090
},
91+
conditionalFormats: {
92+
baseName: "conditional_formats",
93+
type: "Array<WidgetConditionalFormat>",
94+
},
8195
formulas: {
8296
baseName: "formulas",
8397
type: "Array<WidgetFormula>",
@@ -114,6 +128,10 @@ export class GeomapWidgetRequest {
114128
baseName: "sort",
115129
type: "WidgetSortBy",
116130
},
131+
textFormats: {
132+
baseName: "text_formats",
133+
type: "Array<TableWidgetTextFormatRule>",
134+
},
117135
additionalProperties: {
118136
baseName: "additionalProperties",
119137
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)