File tree Expand file tree Collapse file tree
datadog-api-client-common
datadog-api-client-v2/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -44342,6 +44342,7 @@ servers:
4434244342 - datadoghq.eu
4434344343 - ddog-gov.com
4434444344 - us2.ddog-gov.com
44345+ - uk1.datadoghq.com
4434544346 subdomain:
4434644347 default: api
4434744348 description: The subdomain where the API is deployed.
Original file line number Diff line number Diff line change @@ -64968,9 +64968,6 @@ components:
6496864968 description: The ID of a component whose output is used as input for this destination.
6496964969 type: string
6497064970 type: array
64971- tls:
64972- $ref: "#/components/schemas/ObservabilityPipelineTls"
64973- description: Configuration for TLS encryption.
6497464971 type:
6497564972 $ref: "#/components/schemas/ObservabilityPipelineCloudPremDestinationType"
6497664973 required:
@@ -196311,6 +196308,7 @@ servers:
196311196308 - datadoghq.eu
196312196309 - ddog-gov.com
196313196310 - us2.ddog-gov.com
196311+ - uk1.datadoghq.com
196314196312 subdomain:
196315196313 default: api
196316196314 description: The subdomain where the API is deployed.
Original file line number Diff line number Diff line change @@ -73,7 +73,8 @@ export const server1 = new ServerConfiguration<{
7373 | "ap2.datadoghq.com"
7474 | "datadoghq.eu"
7575 | "ddog-gov.com"
76- | "us2.ddog-gov.com" ;
76+ | "us2.ddog-gov.com"
77+ | "uk1.datadoghq.com" ;
7778 subdomain : string ;
7879} > ( "https://{subdomain}.{site}" , {
7980 site : "datadoghq.com" ,
Original file line number Diff line number Diff line change 55 */
66import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions" ;
77import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType" ;
8- import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls" ;
98
109import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
1110
@@ -31,10 +30,6 @@ export class ObservabilityPipelineCloudPremDestination {
3130 * A list of component IDs whose output is used as the `input` for this component.
3231 */
3332 "inputs" : Array < string > ;
34- /**
35- * Configuration for enabling TLS encryption between the pipeline component and external services.
36- */
37- "tls" ?: ObservabilityPipelineTls ;
3833 /**
3934 * The destination type. The value should always be `cloud_prem`.
4035 */
@@ -74,10 +69,6 @@ export class ObservabilityPipelineCloudPremDestination {
7469 type : "Array<string>" ,
7570 required : true ,
7671 } ,
77- tls : {
78- baseName : "tls" ,
79- type : "ObservabilityPipelineTls" ,
80- } ,
8172 type : {
8273 baseName : "type" ,
8374 type : "ObservabilityPipelineCloudPremDestinationType" ,
You can’t perform that action at this time.
0 commit comments