Skip to content

Commit de58b82

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 13c4e3d of spec repo
1 parent f0a753f commit de58b82

5 files changed

Lines changed: 22 additions & 7 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82474,7 +82474,10 @@ components:
8247482474
$ref: "#/components/schemas/ProductAnalyticsGroupBy"
8247582475
type: array
8247682476
indexes:
82477-
description: Restrict the query to specific indexes. Max 1 entry.
82477+
deprecated: true
82478+
description: |-
82479+
Deprecated. Index selection is a rollout detail and will be removed.
82480+
Do not set this field.
8247882481
items:
8247982482
description: Index name to restrict the query to.
8248082483
type: string
@@ -82512,6 +82515,10 @@ components:
8251282515
properties:
8251382516
enforced_execution_type:
8251482517
$ref: "#/components/schemas/ProductAnalyticsExecutionType"
82518+
deprecated: true
82519+
description: |-
82520+
Deprecated. Selects the internal query execution infrastructure and will be removed.
82521+
Do not set this field.
8251582522
from:
8251682523
description: Start time in epoch milliseconds. Must be less than `to`.
8251782524
example: 1771232048460
@@ -82633,7 +82640,9 @@ components:
8263382640
example: count
8263482641
type: string
8263582642
interval:
82636-
description: Time bucket size in milliseconds. Required for timeseries queries.
82643+
description: |-
82644+
Time bucket size in milliseconds. Required for timeseries queries; ignored by the
82645+
scalar endpoint, which returns a single value.
8263782646
example: 3600000
8263882647
format: int64
8263982648
type: integer
@@ -83016,7 +83025,9 @@ components:
8301683025
$ref: "#/components/schemas/ProductAnalyticsResponseMeta"
8301783026
type: object
8301883027
ProductAnalyticsTimeseriesResponseAttributes:
83019-
description: Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
83028+
description: |-
83029+
Attributes of a timeseries analytics response, containing series data, timestamps, and
83030+
interval definitions.
8302083031
properties:
8302183032
intervals:
8302283033
description: Interval definitions describing the time buckets used in the response.

packages/datadog-api-client-v2/models/ProductAnalyticsAnalyticsQuery.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ export class ProductAnalyticsAnalyticsQuery {
2727
*/
2828
"groupBy"?: Array<ProductAnalyticsGroupBy>;
2929
/**
30-
* Restrict the query to specific indexes. Max 1 entry.
30+
* Deprecated. Index selection is a rollout detail and will be removed.
31+
* Do not set this field.
3132
*/
3233
"indexes"?: Array<string>;
3334
/**

packages/datadog-api-client-v2/models/ProductAnalyticsCompute.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ export class ProductAnalyticsCompute {
1515
*/
1616
"aggregation": string;
1717
/**
18-
* Time bucket size in milliseconds. Required for timeseries queries.
18+
* Time bucket size in milliseconds. Required for timeseries queries; ignored by the
19+
* scalar endpoint, which returns a single value.
1920
*/
2021
"interval"?: number;
2122
/**

packages/datadog-api-client-v2/models/ProductAnalyticsTimeseriesResponseAttributes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ import { ProductAnalyticsSerie } from "./ProductAnalyticsSerie";
99
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010

1111
/**
12-
* Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
12+
* Attributes of a timeseries analytics response, containing series data, timestamps, and
13+
* interval definitions.
1314
*/
1415
export class ProductAnalyticsTimeseriesResponseAttributes {
1516
/**

packages/datadog-api-client-v2/models/ProductAnalyticsTimeseriesResponseData.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1313
*/
1414
export class ProductAnalyticsTimeseriesResponseData {
1515
/**
16-
* Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
16+
* Attributes of a timeseries analytics response, containing series data, timestamps, and
17+
* interval definitions.
1718
*/
1819
"attributes"?: ProductAnalyticsTimeseriesResponseAttributes;
1920
/**

0 commit comments

Comments
 (0)