Skip to content

Commit c265bbe

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit c21f41b of spec repo
1 parent 41972af commit c265bbe

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

.generator/schemas/v2/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31357,6 +31357,10 @@ components:
3135731357
items:
3135831358
$ref: '#/components/schemas/ObservabilityPipelineConfigSourceItem'
3135931359
type: array
31360+
use_legacy_search_syntax:
31361+
description: Use this field to configure the pipeline's filter queries to
31362+
use the deprecated search syntax.
31363+
type: boolean
3136031364
required:
3136131365
- sources
3136231366
- destinations

services/observability_pipelines/src/v2/models/ObservabilityPipelineConfig.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ export class ObservabilityPipelineConfig {
2020
* A list of configured data sources for the pipeline.
2121
*/
2222
"sources": Array<ObservabilityPipelineConfigSourceItem>;
23+
/**
24+
* Use this field to configure the pipeline's filter queries to use the deprecated search syntax.
25+
*/
26+
"useLegacySearchSyntax"?: boolean;
2327
/**
2428
* A container for additional, undeclared properties.
2529
* This is a holder for any undeclared properties as specified with
@@ -49,6 +53,10 @@ export class ObservabilityPipelineConfig {
4953
type: "Array<ObservabilityPipelineConfigSourceItem>",
5054
required: true,
5155
},
56+
useLegacySearchSyntax: {
57+
baseName: "use_legacy_search_syntax",
58+
type: "boolean",
59+
},
5260
additionalProperties: {
5361
baseName: "additionalProperties",
5462
type: "{ [key: string]: any; }",

0 commit comments

Comments
 (0)