Skip to content

Commit 3740145

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0cb6f32 of spec repo
1 parent df207f8 commit 3740145

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45830,6 +45830,13 @@ components:
4583045830
description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components).
4583145831
example: splunk-hec-source
4583245832
type: string
45833+
store_hec_token:
45834+
default: false
45835+
description: |-
45836+
If `true`, the HEC token is stored in the event's metadata and made available to the Enrichment Table
45837+
processor and the `splunk_hec` destination for routing or enrichment based on the token. Defaults to `false`.
45838+
example: true
45839+
type: boolean
4583345840
tls:
4583445841
$ref: "#/components/schemas/ObservabilityPipelineTls"
4583545842
type:

packages/datadog-api-client-v2/models/ObservabilityPipelineSplunkHecSource.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ export class ObservabilityPipelineSplunkHecSource {
2222
* The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` to downstream components).
2323
*/
2424
"id": string;
25+
/**
26+
* If `true`, the HEC token is stored in the event's metadata and made available to the Enrichment Table
27+
* processor and the `splunk_hec` destination for routing or enrichment based on the token. Defaults to `false`.
28+
*/
29+
"storeHecToken"?: boolean;
2530
/**
2631
* Configuration for enabling TLS encryption between the pipeline component and external services.
2732
*/
@@ -56,6 +61,10 @@ export class ObservabilityPipelineSplunkHecSource {
5661
type: "string",
5762
required: true,
5863
},
64+
storeHecToken: {
65+
baseName: "store_hec_token",
66+
type: "boolean",
67+
},
5968
tls: {
6069
baseName: "tls",
6170
type: "ObservabilityPipelineTls",

0 commit comments

Comments
 (0)