Skip to content
Merged
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
1 change: 1 addition & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44342,6 +44342,7 @@ servers:
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
- uk1.datadoghq.com
subdomain:
default: api
description: The subdomain where the API is deployed.
Expand Down
4 changes: 1 addition & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64968,9 +64968,6 @@ 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 @@ -196311,6 +196308,7 @@ servers:
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
- uk1.datadoghq.com
subdomain:
default: api
description: The subdomain where the API is deployed.
Expand Down
3 changes: 2 additions & 1 deletion packages/datadog-api-client/src/servers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ export const server1 = new ServerConfiguration<{
| "ap2.datadoghq.com"
| "datadoghq.eu"
| "ddog-gov.com"
| "us2.ddog-gov.com";
| "us2.ddog-gov.com"
| "uk1.datadoghq.com";
subdomain: string;
}>("https://{subdomain}.{site}", {
site: "datadoghq.com",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client";

import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions";
import { ObservabilityPipelineCloudPremDestinationType } from "./ObservabilityPipelineCloudPremDestinationType";
import { ObservabilityPipelineTls } from "./ObservabilityPipelineTls";

/**
* The `cloud_prem` destination sends logs to Datadog CloudPrem.
Expand All @@ -26,10 +25,6 @@ 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 @@ -67,10 +62,6 @@ export class ObservabilityPipelineCloudPremDestination {
type: "Array<string>",
required: true,
},
tls: {
baseName: "tls",
type: "ObservabilityPipelineTls",
},
type: {
baseName: "type",
type: "ObservabilityPipelineCloudPremDestinationType",
Expand Down
Loading