Skip to content

Commit 33c37f5

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit c7504fc of spec repo (#4542)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 589fac4 commit 33c37f5

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

.generator/schemas/v2/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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:

packages/datadog-api-client-v2/models/ObservabilityPipelineCloudPremDestination.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66
import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions";
77
import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType";
8+
import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls";
89

910
import { 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",

0 commit comments

Comments
 (0)