Skip to content

Commit e71ef3c

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

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.

services/product_analytics/src/v2/models/ProductAnalyticsAnalyticsQuery.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ export class ProductAnalyticsAnalyticsQuery {
2222
*/
2323
"groupBy"?: Array<ProductAnalyticsGroupBy>;
2424
/**
25-
* Restrict the query to specific indexes. Max 1 entry.
25+
* Deprecated. Index selection is a rollout detail and will be removed.
26+
* Do not set this field.
2627
*/
2728
"indexes"?: Array<string>;
2829
/**

services/product_analytics/src/v2/models/ProductAnalyticsCompute.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ export class ProductAnalyticsCompute {
99
*/
1010
"aggregation": string;
1111
/**
12-
* Time bucket size in milliseconds. Required for timeseries queries.
12+
* Time bucket size in milliseconds. Required for timeseries queries; ignored by the
13+
* scalar endpoint, which returns a single value.
1314
*/
1415
"interval"?: number;
1516
/**

services/product_analytics/src/v2/models/ProductAnalyticsTimeseriesResponseAttributes.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { ProductAnalyticsInterval } from "./ProductAnalyticsInterval";
44
import { ProductAnalyticsSerie } from "./ProductAnalyticsSerie";
55

66
/**
7-
* Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
7+
* Attributes of a timeseries analytics response, containing series data, timestamps, and
8+
* interval definitions.
89
*/
910
export class ProductAnalyticsTimeseriesResponseAttributes {
1011
/**

services/product_analytics/src/v2/models/ProductAnalyticsTimeseriesResponseData.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ import { ProductAnalyticsTimeseriesResponseType } from "./ProductAnalyticsTimese
88
*/
99
export class ProductAnalyticsTimeseriesResponseData {
1010
/**
11-
* Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
11+
* Attributes of a timeseries analytics response, containing series data, timestamps, and
12+
* interval definitions.
1213
*/
1314
"attributes"?: ProductAnalyticsTimeseriesResponseAttributes;
1415
/**

0 commit comments

Comments
 (0)