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
4 changes: 4 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ export class ObservabilityPipelineConfig {
* A list of configured data sources for the pipeline.
*/
"sources": Array<ObservabilityPipelineConfigSourceItem>;
/**
* Use this field to configure the pipeline's filter queries to use the deprecated search syntax.
*/
"useLegacySearchSyntax"?: boolean;

/**
* A container for additional, undeclared properties.
Expand Down Expand Up @@ -56,6 +60,10 @@ export class ObservabilityPipelineConfig {
type: "Array<ObservabilityPipelineConfigSourceItem>",
required: true,
},
useLegacySearchSyntax: {
baseName: "use_legacy_search_syntax",
type: "boolean",
},
additionalProperties: {
baseName: "additionalProperties",
type: "{ [key: string]: any; }",
Expand Down