File tree Expand file tree Collapse file tree
packages/datadog-api-client/src
services/observability_pipelines/src/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 @@ -79,7 +79,8 @@ export const server1 = new ServerConfiguration<{
7979 | "ap2.datadoghq.com"
8080 | "datadoghq.eu"
8181 | "ddog-gov.com"
82- | "us2.ddog-gov.com" ;
82+ | "us2.ddog-gov.com"
83+ | "uk1.datadoghq.com" ;
8384 subdomain : string ;
8485} > ( "https://{subdomain}.{site}" , {
8586 site : "datadoghq.com" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client";
22
33import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions" ;
44import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType" ;
5- import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls" ;
65
76/**
87 * The `cloud_prem` destination sends logs to Datadog CloudPrem.
@@ -26,10 +25,6 @@ export class ObservabilityPipelineCloudPremDestination {
2625 * A list of component IDs whose output is used as the `input` for this component.
2726 */
2827 "inputs" : Array < string > ;
29- /**
30- * Configuration for enabling TLS encryption between the pipeline component and external services.
31- */
32- "tls" ?: ObservabilityPipelineTls ;
3328 /**
3429 * The destination type. The value should always be `cloud_prem`.
3530 */
@@ -67,10 +62,6 @@ export class ObservabilityPipelineCloudPremDestination {
6762 type : "Array<string>" ,
6863 required : true ,
6964 } ,
70- tls : {
71- baseName : "tls" ,
72- type : "ObservabilityPipelineTls" ,
73- } ,
7465 type : {
7566 baseName : "type" ,
7667 type : "ObservabilityPipelineCloudPremDestinationType" ,
You can’t perform that action at this time.
0 commit comments