File tree Expand file tree Collapse file tree
packages/datadog-api-client-v2/models Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -64968,6 +64968,9 @@ 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.
6497164974 type:
6497264975 $ref: "#/components/schemas/ObservabilityPipelineCloudPremDestinationType"
6497364976 required:
Original file line number Diff line number Diff line change 55 */
66import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions" ;
77import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType" ;
8+ import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls" ;
89
910import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
1011
@@ -30,6 +31,10 @@ export class ObservabilityPipelineCloudPremDestination {
3031 * A list of component IDs whose output is used as the `input` for this component.
3132 */
3233 "inputs" : Array < string > ;
34+ /**
35+ * Configuration for enabling TLS encryption between the pipeline component and external services.
36+ */
37+ "tls" ?: ObservabilityPipelineTls ;
3338 /**
3439 * The destination type. The value should always be `cloud_prem`.
3540 */
@@ -69,6 +74,10 @@ export class ObservabilityPipelineCloudPremDestination {
6974 type : "Array<string>" ,
7075 required : true ,
7176 } ,
77+ tls : {
78+ baseName : "tls" ,
79+ type : "ObservabilityPipelineTls" ,
80+ } ,
7281 type : {
7382 baseName : "type" ,
7483 type : "ObservabilityPipelineCloudPremDestinationType" ,
You can’t perform that action at this time.
0 commit comments