File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -31470,6 +31470,10 @@ components:
3147031470 items:
3147131471 $ref: '#/components/schemas/ObservabilityPipelineConfigSourceItem'
3147231472 type: array
31473+ use_legacy_search_syntax:
31474+ description: Use this field to configure the pipeline's filter queries to
31475+ use the deprecated search syntax.
31476+ type: boolean
3147331477 required:
3147431478 - sources
3147531479 - destinations
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ export class ObservabilityPipelineConfig {
2525 * A list of configured data sources for the pipeline.
2626 */
2727 "sources" : Array < ObservabilityPipelineConfigSourceItem > ;
28+ /**
29+ * Use this field to configure the pipeline's filter queries to use the deprecated search syntax.
30+ */
31+ "useLegacySearchSyntax" ?: boolean ;
2832
2933 /**
3034 * A container for additional, undeclared properties.
@@ -56,6 +60,10 @@ export class ObservabilityPipelineConfig {
5660 type : "Array<ObservabilityPipelineConfigSourceItem>" ,
5761 required : true ,
5862 } ,
63+ useLegacySearchSyntax : {
64+ baseName : "use_legacy_search_syntax" ,
65+ type : "boolean" ,
66+ } ,
5967 additionalProperties : {
6068 baseName : "additionalProperties" ,
6169 type : "{ [key: string]: any; }" ,
You can’t perform that action at this time.
0 commit comments