Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 16 additions & 5 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82474,7 +82474,10 @@ components:
$ref: "#/components/schemas/ProductAnalyticsGroupBy"
type: array
indexes:
description: Restrict the query to specific indexes. Max 1 entry.
deprecated: true
description: |-
Deprecated. Index selection is a rollout detail and will be removed.
Do not set this field.
items:
description: Index name to restrict the query to.
type: string
Expand Down Expand Up @@ -82512,6 +82515,10 @@ components:
properties:
enforced_execution_type:
$ref: "#/components/schemas/ProductAnalyticsExecutionType"
deprecated: true
description: |-
Deprecated. Selects the internal query execution infrastructure and will be removed.
Do not set this field.
from:
description: Start time in epoch milliseconds. Must be less than `to`.
example: 1771232048460
Expand All @@ -82520,7 +82527,7 @@ components:
query:
$ref: "#/components/schemas/ProductAnalyticsAnalyticsQuery"
request_id:
description: Optional request ID for multi-step query continuation.
description: Unique identifier of the query.
type: string
to:
description: End time in epoch milliseconds.
Expand Down Expand Up @@ -82633,7 +82640,9 @@ components:
example: count
type: string
interval:
description: Time bucket size in milliseconds. Required for timeseries queries.
description: |-
Time bucket size in milliseconds. Required for timeseries queries; ignored by the
scalar endpoint, which returns a single value.
example: 3600000
format: int64
type: integer
Expand Down Expand Up @@ -82796,7 +82805,7 @@ components:
description: Metadata for a Product Analytics query response.
properties:
request_id:
description: Unique identifier for the request, used for multi-step query continuation.
description: Unique identifier of the query.
type: string
status:
$ref: "#/components/schemas/ProductAnalyticsResponseMetaStatus"
Expand Down Expand Up @@ -83016,7 +83025,9 @@ components:
$ref: "#/components/schemas/ProductAnalyticsResponseMeta"
type: object
ProductAnalyticsTimeseriesResponseAttributes:
description: Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
description: |-
Attributes of a timeseries analytics response, containing series data, timestamps, and
interval definitions.
properties:
intervals:
description: Interval definitions describing the time buckets used in the response.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ export class ProductAnalyticsAnalyticsQuery {
*/
"groupBy"?: Array<ProductAnalyticsGroupBy>;
/**
* Restrict the query to specific indexes. Max 1 entry.
* Deprecated. Index selection is a rollout detail and will be removed.
* Do not set this field.
*/
"indexes"?: Array<string>;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class ProductAnalyticsAnalyticsRequestAttributes {
*/
"query": ProductAnalyticsAnalyticsQuery;
/**
* Optional request ID for multi-step query continuation.
* Unique identifier of the query.
*/
"requestId"?: string;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ export class ProductAnalyticsCompute {
*/
"aggregation": string;
/**
* Time bucket size in milliseconds. Required for timeseries queries.
* Time bucket size in milliseconds. Required for timeseries queries; ignored by the
* scalar endpoint, which returns a single value.
*/
"interval"?: number;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
*/
export class ProductAnalyticsResponseMeta {
/**
* Unique identifier for the request, used for multi-step query continuation.
* Unique identifier of the query.
*/
"requestId"?: string;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ import { ProductAnalyticsSerie } from "./ProductAnalyticsSerie";
import { AttributeTypeMap } from "../../datadog-api-client-common/util";

/**
* Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
* Attributes of a timeseries analytics response, containing series data, timestamps, and
* interval definitions.
*/
export class ProductAnalyticsTimeseriesResponseAttributes {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
*/
export class ProductAnalyticsTimeseriesResponseData {
/**
* Attributes of a timeseries analytics response, containing series data, timestamps, and interval definitions.
* Attributes of a timeseries analytics response, containing series data, timestamps, and
* interval definitions.
*/
"attributes"?: ProductAnalyticsTimeseriesResponseAttributes;
/**
Expand Down
Loading