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
3 changes: 3 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26513,6 +26513,7 @@ paths:
- ap2.datadoghq.com
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
subdomain:
default: ip-ranges
description: The subdomain where the API is deployed.
Expand Down Expand Up @@ -39887,6 +39888,7 @@ paths:
- ap2.datadoghq.com
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
subdomain:
default: http-intake.logs
description: The subdomain where the API is deployed.
Expand Down Expand Up @@ -39927,6 +39929,7 @@ servers:
- ap2.datadoghq.com
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
subdomain:
default: api
description: The subdomain where the API is deployed.
Expand Down
3 changes: 3 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93576,6 +93576,7 @@ paths:
- ap2.datadoghq.com
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
subdomain:
default: event-management-intake
description: The subdomain where the API is deployed.
Expand Down Expand Up @@ -102783,6 +102784,7 @@ paths:
- ap2.datadoghq.com
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.com
subdomain:
default: http-intake.logs
description: The subdomain where the API is deployed.
Expand Down Expand Up @@ -130305,6 +130307,7 @@ servers:
- ap2.datadoghq.com
- datadoghq.eu
- ddog-gov.com
- us2.ddog-gov.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 @@ -78,7 +78,8 @@ export const server1 = new ServerConfiguration<{
| "ap1.datadoghq.com"
| "ap2.datadoghq.com"
| "datadoghq.eu"
| "ddog-gov.com";
| "ddog-gov.com"
| "us2.ddog-gov.com";
subdomain: string;
}>("https://{subdomain}.{site}", {
site: "datadoghq.com",
Expand Down
3 changes: 2 additions & 1 deletion services/events/src/v2/EventsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -600,7 +600,8 @@ export class EventsApi {
| "ap1.datadoghq.com"
| "ap2.datadoghq.com"
| "datadoghq.eu"
| "ddog-gov.com";
| "ddog-gov.com"
| "us2.ddog-gov.com";
subdomain: string;
}>("https://{subdomain}.{site}", {
site: "datadoghq.com",
Expand Down
3 changes: 2 additions & 1 deletion services/ip_ranges/src/v1/IPRangesApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ export class IPRangesApi {
| "ap1.datadoghq.com"
| "ap2.datadoghq.com"
| "datadoghq.eu"
| "ddog-gov.com";
| "ddog-gov.com"
| "us2.ddog-gov.com";
subdomain: string;
}>("https://{subdomain}.{site}", {
site: "datadoghq.com",
Expand Down
3 changes: 2 additions & 1 deletion services/logs/src/v1/LogsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,8 @@ export class LogsApi {
| "ap1.datadoghq.com"
| "ap2.datadoghq.com"
| "datadoghq.eu"
| "ddog-gov.com";
| "ddog-gov.com"
| "us2.ddog-gov.com";
subdomain: string;
}>("https://{subdomain}.{site}", {
site: "datadoghq.com",
Expand Down
3 changes: 2 additions & 1 deletion services/logs/src/v2/LogsApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,8 @@ export class LogsApi {
| "ap1.datadoghq.com"
| "ap2.datadoghq.com"
| "datadoghq.eu"
| "ddog-gov.com";
| "ddog-gov.com"
| "us2.ddog-gov.com";
subdomain: string;
}>("https://{subdomain}.{site}", {
site: "datadoghq.com",
Expand Down
Loading