diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index 683c28d9d2..d829783224 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -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. diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 8b92b7a323..b7b41151ba 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -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: @@ -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. diff --git a/src/datadog_api_client/configuration.py b/src/datadog_api_client/configuration.py index 7d582439fe..4e07330739 100644 --- a/src/datadog_api_client/configuration.py +++ b/src/datadog_api_client/configuration.py @@ -965,6 +965,7 @@ def get_host_settings(self): "datadoghq.eu", "ddog-gov.com", "us2.ddog-gov.com", + "uk1.datadoghq.com", ], }, "subdomain": { diff --git a/src/datadog_api_client/v2/model/observability_pipeline_cloud_prem_destination.py b/src/datadog_api_client/v2/model/observability_pipeline_cloud_prem_destination.py index 23be48f6c7..6fdf1196a4 100644 --- a/src/datadog_api_client/v2/model/observability_pipeline_cloud_prem_destination.py +++ b/src/datadog_api_client/v2/model/observability_pipeline_cloud_prem_destination.py @@ -15,7 +15,6 @@ if TYPE_CHECKING: from datadog_api_client.v2.model.observability_pipeline_buffer_options import ObservabilityPipelineBufferOptions - from datadog_api_client.v2.model.observability_pipeline_tls import ObservabilityPipelineTls from datadog_api_client.v2.model.observability_pipeline_cloud_prem_destination_type import ( ObservabilityPipelineCloudPremDestinationType, ) @@ -34,7 +33,6 @@ class ObservabilityPipelineCloudPremDestination(ModelNormal): @cached_property def openapi_types(_): from datadog_api_client.v2.model.observability_pipeline_buffer_options import ObservabilityPipelineBufferOptions - from datadog_api_client.v2.model.observability_pipeline_tls import ObservabilityPipelineTls from datadog_api_client.v2.model.observability_pipeline_cloud_prem_destination_type import ( ObservabilityPipelineCloudPremDestinationType, ) @@ -44,7 +42,6 @@ def openapi_types(_): "endpoint_url_key": (str,), "id": (str,), "inputs": ([str],), - "tls": (ObservabilityPipelineTls,), "type": (ObservabilityPipelineCloudPremDestinationType,), } @@ -53,7 +50,6 @@ def openapi_types(_): "endpoint_url_key": "endpoint_url_key", "id": "id", "inputs": "inputs", - "tls": "tls", "type": "type", } @@ -70,7 +66,6 @@ def __init__( UnsetType, ] = unset, endpoint_url_key: Union[str, UnsetType] = unset, - tls: Union[ObservabilityPipelineTls, UnsetType] = unset, **kwargs, ): """ @@ -90,9 +85,6 @@ def __init__( :param inputs: A list of component IDs whose output is used as the ``input`` for this component. :type inputs: [str] - :param tls: Configuration for enabling TLS encryption between the pipeline component and external services. - :type tls: ObservabilityPipelineTls, optional - :param type: The destination type. The value should always be ``cloud_prem``. :type type: ObservabilityPipelineCloudPremDestinationType """ @@ -100,8 +92,6 @@ def __init__( kwargs["buffer"] = buffer if endpoint_url_key is not unset: kwargs["endpoint_url_key"] = endpoint_url_key - if tls is not unset: - kwargs["tls"] = tls super().__init__(kwargs) self_.id = id