Skip to content

Commit f3e2e52

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 31277fe of spec repo
1 parent 6481989 commit f3e2e52

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
@@ -45795,6 +45795,13 @@ components:
4579545795
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).
4579645796
example: splunk-hec-source
4579745797
type: string
45798+
store_hec_token:
45799+
default: false
45800+
description: |-
45801+
If `true`, the HEC token is stored in the event's metadata and made available to the Enrichment Table
45802+
processor and the `splunk_hec` destination for routing or enrichment based on the token. Defaults to `false`.
45803+
example: true
45804+
type: boolean
4579845805
tls:
4579945806
$ref: "#/components/schemas/ObservabilityPipelineTls"
4580045807
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)