Skip to content

Commit bbe9b07

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit be8a6119 of spec repo
1 parent 8803cd5 commit bbe9b07

File tree

7 files changed

+1716
-10
lines changed

7 files changed

+1716
-10
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
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-07-15 09:33:20.515462",
8-
"spec_repo_commit": "d93d991f"
7+
"regenerated": "2025-07-16 13:00:55.836987",
8+
"spec_repo_commit": "be8a6119"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-15 09:33:29.714167",
13-
"spec_repo_commit": "d93d991f"
12+
"regenerated": "2025-07-16 13:01:05.395639",
13+
"spec_repo_commit": "be8a6119"
1414
}
1515
}
1616
}

content/en/api/v1/logs-pipelines/examples.json

Lines changed: 6 additions & 6 deletions
Large diffs are not rendered by default.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"filter": {
3+
"query": "source:python"
4+
},
5+
"name": "testDecoderProcessor",
6+
"processors": [
7+
{
8+
"type": "decoder-processor",
9+
"is_enabled": true,
10+
"name": "test_decoder",
11+
"source": "encoded_message",
12+
"target": "decoded_message",
13+
"binary_to_text_encoding": "base16",
14+
"input_representation": "utf_8"
15+
}
16+
],
17+
"tags": []
18+
}

data/api/v1/CodeExamples.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -638,6 +638,11 @@
638638
"suffix": "_1267211320",
639639
"description": "Create a pipeline with Array Processor Select Operation returns \"OK\" response"
640640
},
641+
{
642+
"group": "logs_pipelines",
643+
"suffix": "_3336967838",
644+
"description": "Create a pipeline with Decoder Processor returns \"OK\" response"
645+
},
641646
{
642647
"group": "logs_pipelines",
643648
"suffix": "_2707101123",

data/api/v1/full_spec.yaml

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5654,6 +5654,72 @@ components:
56545654
type: string
56555655
x-enum-varnames:
56565656
- DATE_REMAPPER
5657+
LogsDecoderProcessor:
5658+
description: 'The decoder processor decodes any source attribute containing
5659+
a
5660+
5661+
base64/base16-encoded UTF-8/ASCII string to back to its original value, storing
5662+
the
5663+
5664+
result in a target attribute.'
5665+
properties:
5666+
binary_to_text_encoding:
5667+
$ref: '#/components/schemas/LogsDecoderProcessorBinaryToTextEncoding'
5668+
input_representation:
5669+
$ref: '#/components/schemas/LogsDecoderProcessorInputRepresentation'
5670+
is_enabled:
5671+
default: false
5672+
description: Whether or not the processor is enabled.
5673+
type: boolean
5674+
name:
5675+
description: Name of the processor.
5676+
type: string
5677+
source:
5678+
description: Name of the log attribute with the encoded data.
5679+
example: encoded_message
5680+
type: string
5681+
target:
5682+
description: Name of the log attribute that contains the decoded data..
5683+
example: decoded_message
5684+
type: string
5685+
type:
5686+
$ref: '#/components/schemas/LogsDecoderProcessorType'
5687+
required:
5688+
- source
5689+
- target
5690+
- binary_to_text_encoding
5691+
- input_representation
5692+
- type
5693+
type: object
5694+
LogsDecoderProcessorBinaryToTextEncoding:
5695+
description: The encoding used to represent the binary data.
5696+
enum:
5697+
- base64
5698+
- base16
5699+
example: base64
5700+
type: string
5701+
x-enum-varnames:
5702+
- BASE64
5703+
- BASE16
5704+
LogsDecoderProcessorInputRepresentation:
5705+
description: The original representation of input string.
5706+
enum:
5707+
- utf_8
5708+
- integer
5709+
example: utf_8
5710+
type: string
5711+
x-enum-varnames:
5712+
- UTF_8
5713+
- INTEGER
5714+
LogsDecoderProcessorType:
5715+
default: decoder-processor
5716+
description: Type of logs decoder processor.
5717+
enum:
5718+
- decoder-processor
5719+
example: decoder-processor
5720+
type: string
5721+
x-enum-varnames:
5722+
- DECODER_PROCESSOR
56575723
LogsExclusion:
56585724
description: Represents the index exclusion filter object from configuration
56595725
API.
@@ -6322,6 +6388,7 @@ components:
63226388
- $ref: '#/components/schemas/LogsTraceRemapper'
63236389
- $ref: '#/components/schemas/LogsSpanRemapper'
63246390
- $ref: '#/components/schemas/LogsArrayProcessor'
6391+
- $ref: '#/components/schemas/LogsDecoderProcessor'
63256392
LogsQueryCompute:
63266393
description: Define computation for a log query.
63276394
properties:

0 commit comments

Comments
 (0)