Skip to content

Commit 3594028

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 6bb96c9 of spec repo
1 parent a9e8ae9 commit 3594028

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

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)