Skip to content
Merged

Add UK1 #4528

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -28752,6 +28753,7 @@ paths:
- US5
- AP1
- AP2
- UK1
- EU1
- GOV
- US2_GOV
Expand Down Expand Up @@ -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
Expand All @@ -44298,6 +44301,7 @@ paths:
- US5
- AP1
- AP2
- UK1
- EU1
- GOV
- US2_GOV
Expand Down Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -133317,6 +133321,7 @@ paths:
- US5
- AP1
- AP2
- UK1
- EU1
- GOV
- US2_GOV
Expand Down Expand Up @@ -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
Expand All @@ -150679,6 +150685,7 @@ paths:
- US5
- AP1
- AP2
- UK1
- EU1
- GOV
- US2_GOV
Expand Down Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions packages/datadog-api-client-common/servers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down Expand Up @@ -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";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions";
import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType";
import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls";

import { AttributeTypeMap } from "../../datadog-api-client-common/util";

Expand All @@ -30,6 +31,10 @@ export class ObservabilityPipelineCloudPremDestination {
* A list of component IDs whose output is used as the `input` for this component.
*/
"inputs": Array<string>;
/**
* Configuration for enabling TLS encryption between the pipeline component and external services.
*/
"tls"?: ObservabilityPipelineTls;
/**
* The destination type. The value should always be `cloud_prem`.
*/
Expand Down Expand Up @@ -69,6 +74,10 @@ export class ObservabilityPipelineCloudPremDestination {
type: "Array<string>",
required: true,
},
tls: {
baseName: "tls",
type: "ObservabilityPipelineTls",
},
type: {
baseName: "type",
type: "ObservabilityPipelineCloudPremDestinationType",
Expand Down
Loading