Skip to content

Commit 2890a30

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Regenerate client from commit b4e7c78 of spec repo (#4553)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 6933b1f commit 2890a30

4 files changed

Lines changed: 4 additions & 13 deletions

File tree

.generator/schemas/v1/openapi.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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.

.generator/schemas/v2/openapi.yaml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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.

packages/datadog-api-client/src/servers.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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",

services/observability_pipelines/src/v2/models/ObservabilityPipelineCloudPremDestination.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client";
22

33
import { ObservabilityPipelineBufferOptions } from "./ObservabilityPipelineBufferOptions";
44
import { 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",

0 commit comments

Comments
 (0)