diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index d829783224aa..31e2588cd555 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -28743,6 +28743,7 @@ paths: - us5.datadoghq.com - ap1.datadoghq.com - ap2.datadoghq.com + - uk1.datadoghq.com - datadoghq.eu - ddog-gov.com - us2.ddog-gov.com @@ -28752,6 +28753,7 @@ paths: - US5 - AP1 - AP2 + - UK1 - EU1 - GOV - US2_GOV @@ -44289,6 +44291,7 @@ paths: - us5.datadoghq.com - ap1.datadoghq.com - ap2.datadoghq.com + - uk1.datadoghq.com - datadoghq.eu - ddog-gov.com - us2.ddog-gov.com @@ -44298,6 +44301,7 @@ paths: - US5 - AP1 - AP2 + - UK1 - EU1 - GOV - US2_GOV @@ -44339,6 +44343,7 @@ servers: - us5.datadoghq.com - ap1.datadoghq.com - ap2.datadoghq.com + - uk1.datadoghq.com - datadoghq.eu - ddog-gov.com - us2.ddog-gov.com diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index b7b41151ba76..c2039595b9f5 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -64968,6 +64968,9 @@ components: description: The ID of a component whose output is used as input for this destination. type: string type: array + tls: + $ref: "#/components/schemas/ObservabilityPipelineTls" + description: Configuration for TLS encryption. type: $ref: "#/components/schemas/ObservabilityPipelineCloudPremDestinationType" required: @@ -133308,6 +133311,7 @@ paths: - us5.datadoghq.com - ap1.datadoghq.com - ap2.datadoghq.com + - uk1.datadoghq.com - datadoghq.eu - ddog-gov.com - us2.ddog-gov.com @@ -133317,6 +133321,7 @@ paths: - US5 - AP1 - AP2 + - UK1 - EU1 - GOV - US2_GOV @@ -150670,6 +150675,7 @@ paths: - us5.datadoghq.com - ap1.datadoghq.com - ap2.datadoghq.com + - uk1.datadoghq.com - datadoghq.eu - ddog-gov.com - us2.ddog-gov.com @@ -150679,6 +150685,7 @@ paths: - US5 - AP1 - AP2 + - UK1 - EU1 - GOV - US2_GOV @@ -196305,6 +196312,7 @@ servers: - us5.datadoghq.com - ap1.datadoghq.com - ap2.datadoghq.com + - uk1.datadoghq.com - datadoghq.eu - ddog-gov.com - us2.ddog-gov.com diff --git a/packages/datadog-api-client-common/servers.ts b/packages/datadog-api-client-common/servers.ts index b161beca5b12..9db23d1c2e3c 100644 --- a/packages/datadog-api-client-common/servers.ts +++ b/packages/datadog-api-client-common/servers.ts @@ -71,6 +71,7 @@ export const server1 = new ServerConfiguration<{ | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" + | "uk1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com" | "us2.ddog-gov.com" @@ -108,6 +109,7 @@ export const operationServers: { | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" + | "uk1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com" | "us2.ddog-gov.com"; @@ -137,6 +139,7 @@ export const operationServers: { | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" + | "uk1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com" | "us2.ddog-gov.com"; @@ -168,6 +171,7 @@ export const operationServers: { | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" + | "uk1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com" | "us2.ddog-gov.com"; @@ -199,6 +203,7 @@ export const operationServers: { | "us5.datadoghq.com" | "ap1.datadoghq.com" | "ap2.datadoghq.com" + | "uk1.datadoghq.com" | "datadoghq.eu" | "ddog-gov.com" | "us2.ddog-gov.com"; diff --git a/packages/datadog-api-client-v2/models/ObservabilityPipelineCloudPremDestination.ts b/packages/datadog-api-client-v2/models/ObservabilityPipelineCloudPremDestination.ts index 7e81edf2a8a1..e4081c4daa5b 100644 --- a/packages/datadog-api-client-v2/models/ObservabilityPipelineCloudPremDestination.ts +++ b/packages/datadog-api-client-v2/models/ObservabilityPipelineCloudPremDestination.ts @@ -5,6 +5,7 @@ */ import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions"; import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType"; +import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls"; import { AttributeTypeMap } from "../../datadog-api-client-common/util"; @@ -30,6 +31,10 @@ export class ObservabilityPipelineCloudPremDestination { * A list of component IDs whose output is used as the `input` for this component. */ "inputs": Array; + /** + * Configuration for enabling TLS encryption between the pipeline component and external services. + */ + "tls"?: ObservabilityPipelineTls; /** * The destination type. The value should always be `cloud_prem`. */ @@ -69,6 +74,10 @@ export class ObservabilityPipelineCloudPremDestination { type: "Array", required: true, }, + tls: { + baseName: "tls", + type: "ObservabilityPipelineTls", + }, type: { baseName: "type", type: "ObservabilityPipelineCloudPremDestinationType",