diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 64f30b323064..adbf0e541590 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -42913,6 +42913,11 @@ components: **Supported pipeline types:** logs, metrics' properties: + address_key: + description: Name of the environment variable or secret that holds the listen + address for the Datadog Agent source. + example: DATADOG_AGENT_ADDRESS + type: string id: description: The unique identifier for this component. Used in other parts of the pipeline to reference this component (for example, as the `input` diff --git a/packages/datadog-api-client-v2/models/ObservabilityPipelineDatadogAgentSource.ts b/packages/datadog-api-client-v2/models/ObservabilityPipelineDatadogAgentSource.ts index e91ff917b09a..1d922118097b 100644 --- a/packages/datadog-api-client-v2/models/ObservabilityPipelineDatadogAgentSource.ts +++ b/packages/datadog-api-client-v2/models/ObservabilityPipelineDatadogAgentSource.ts @@ -14,6 +14,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util"; * **Supported pipeline types:** logs, metrics */ export class ObservabilityPipelineDatadogAgentSource { + /** + * Name of the environment variable or secret that holds the listen address for the Datadog Agent source. + */ + "addressKey"?: string; /** * 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). */ @@ -43,6 +47,10 @@ export class ObservabilityPipelineDatadogAgentSource { * @ignore */ static readonly attributeTypeMap: AttributeTypeMap = { + addressKey: { + baseName: "address_key", + type: "string", + }, id: { baseName: "id", type: "string",