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 @@ -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
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