Skip to content

Commit 68c30ff

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Add tags and description to logs pipelines (#1989)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent d75c61a commit 68c30ff

File tree

6 files changed

+35
-8
lines changed

6 files changed

+35
-8
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-01-09 22:06:12.202192",
8-
"spec_repo_commit": "8d40e082"
7+
"regenerated": "2025-01-10 22:21:31.707539",
8+
"spec_repo_commit": "2f8c42a8"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-01-09 22:06:12.217985",
13-
"spec_repo_commit": "8d40e082"
12+
"regenerated": "2025-01-10 22:21:31.723176",
13+
"spec_repo_commit": "2f8c42a8"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+9
Original file line numberDiff line numberDiff line change
@@ -5926,6 +5926,9 @@ components:
59265926

59275927
Make sure to use an application key created by an admin.'
59285928
properties:
5929+
description:
5930+
description: A description of the pipeline.
5931+
type: string
59295932
filter:
59305933
$ref: '#/components/schemas/LogsFilter'
59315934
id:
@@ -5948,6 +5951,12 @@ components:
59485951
items:
59495952
$ref: '#/components/schemas/LogsProcessor'
59505953
type: array
5954+
tags:
5955+
description: A list of tags associated with the pipeline.
5956+
items:
5957+
description: A single tag using the format `key:value`.
5958+
type: string
5959+
type: array
59515960
type:
59525961
description: Type of pipeline.
59535962
example: pipeline

examples/v1/logs-pipelines/CreateLogsPipeline.ts

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ rule_name_2 bar
2929
type: "grok-parser",
3030
},
3131
],
32+
tags: [],
3233
},
3334
};
3435

examples/v1/logs-pipelines/UpdateLogsPipeline.ts

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ rule_name_2 bar
2929
type: "grok-parser",
3030
},
3131
],
32+
tags: [],
3233
},
3334
pipelineId: "pipeline_id",
3435
};

features/v1/logs_pipelines.feature

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ Feature: Logs Pipelines
2626
@generated @skip @team:DataDog/event-platform-experience
2727
Scenario: Create a pipeline returns "Bad Request" response
2828
Given new "CreateLogsPipeline" request
29-
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}]}
29+
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}], "tags": []}
3030
When the request is sent
3131
Then the response status is 400 Bad Request
3232

3333
@generated @skip @team:DataDog/event-platform-experience
3434
Scenario: Create a pipeline returns "OK" response
3535
Given new "CreateLogsPipeline" request
36-
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}]}
36+
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}], "tags": []}
3737
When the request is sent
3838
Then the response status is 200 OK
3939

@@ -81,15 +81,15 @@ Feature: Logs Pipelines
8181
Scenario: Update a pipeline returns "Bad Request" response
8282
Given new "UpdateLogsPipeline" request
8383
And request contains "pipeline_id" parameter from "REPLACE.ME"
84-
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}]}
84+
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}], "tags": []}
8585
When the request is sent
8686
Then the response status is 400 Bad Request
8787

8888
@generated @skip @team:DataDog/event-platform-experience
8989
Scenario: Update a pipeline returns "OK" response
9090
Given new "UpdateLogsPipeline" request
9191
And request contains "pipeline_id" parameter from "REPLACE.ME"
92-
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}]}
92+
And body with value {"filter": {"query": "source:python"}, "name": "", "processors": [{"grok": {"match_rules": "rule_name_1 foo\nrule_name_2 bar\n", "support_rules": "rule_name_1 foo\nrule_name_2 bar\n"}, "is_enabled": false, "samples": [], "source": "message", "type": "grok-parser"}], "tags": []}
9393
When the request is sent
9494
Then the response status is 200 OK
9595

packages/datadog-api-client-v1/models/LogsPipeline.ts

+16
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1616
* Make sure to use an application key created by an admin.
1717
*/
1818
export class LogsPipeline {
19+
/**
20+
* A description of the pipeline.
21+
*/
22+
"description"?: string;
1923
/**
2024
* Filter for logs.
2125
*/
@@ -40,6 +44,10 @@ export class LogsPipeline {
4044
* Ordered list of processors in this pipeline.
4145
*/
4246
"processors"?: Array<LogsProcessor>;
47+
/**
48+
* A list of tags associated with the pipeline.
49+
*/
50+
"tags"?: Array<string>;
4351
/**
4452
* Type of pipeline.
4553
*/
@@ -61,6 +69,10 @@ export class LogsPipeline {
6169
* @ignore
6270
*/
6371
static readonly attributeTypeMap: AttributeTypeMap = {
72+
description: {
73+
baseName: "description",
74+
type: "string",
75+
},
6476
filter: {
6577
baseName: "filter",
6678
type: "LogsFilter",
@@ -86,6 +98,10 @@ export class LogsPipeline {
8698
baseName: "processors",
8799
type: "Array<LogsProcessor>",
88100
},
101+
tags: {
102+
baseName: "tags",
103+
type: "Array<string>",
104+
},
89105
type: {
90106
baseName: "type",
91107
type: "string",

0 commit comments

Comments
 (0)