From b4cda3d7572f2ecede35d24ba94d81aa7180b17c Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Wed, 15 Oct 2025 17:51:32 +0000 Subject: [PATCH] Regenerate client from commit 6bb96c9 of spec repo --- .generator/schemas/v2/openapi.yaml | 4 ++++ .../models/ObservabilityPipelineConfig.ts | 8 ++++++++ 2 files changed, 12 insertions(+) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index d1ea8725c694..fac0ebcd514b 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -31470,6 +31470,10 @@ components: items: $ref: '#/components/schemas/ObservabilityPipelineConfigSourceItem' type: array + use_legacy_search_syntax: + description: Use this field to configure the pipeline's filter queries to + use the deprecated search syntax. + type: boolean required: - sources - destinations diff --git a/packages/datadog-api-client-v2/models/ObservabilityPipelineConfig.ts b/packages/datadog-api-client-v2/models/ObservabilityPipelineConfig.ts index eff11798e2c4..9e38ae4e95a6 100644 --- a/packages/datadog-api-client-v2/models/ObservabilityPipelineConfig.ts +++ b/packages/datadog-api-client-v2/models/ObservabilityPipelineConfig.ts @@ -25,6 +25,10 @@ export class ObservabilityPipelineConfig { * A list of configured data sources for the pipeline. */ "sources": Array; + /** + * Use this field to configure the pipeline's filter queries to use the deprecated search syntax. + */ + "useLegacySearchSyntax"?: boolean; /** * A container for additional, undeclared properties. @@ -56,6 +60,10 @@ export class ObservabilityPipelineConfig { type: "Array", required: true, }, + useLegacySearchSyntax: { + baseName: "use_legacy_search_syntax", + type: "boolean", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }",