From 124689085e7e7b43d9edfe5c6c2c8e9302c8dc28 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Thu, 24 Sep 2026 11:50:53 +0000 Subject: [PATCH] Regenerate client from commit 7a16c20 of spec repo --- .generator/schemas/v2/openapi.yaml | 2 ++ ...s_integration_account_authentication_response.py | 4 ++-- ...n_account_private_action_runner_auth_response.py | 13 +++++++------ 3 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.generator/schemas/v2/openapi.yaml b/.generator/schemas/v2/openapi.yaml index 4d2fffc0cf..f094434140 100644 --- a/.generator/schemas/v2/openapi.yaml +++ b/.generator/schemas/v2/openapi.yaml @@ -32445,6 +32445,7 @@ components: connection_id: description: Unique identifier of the Private Action Runner connection holding the credentials. example: 08356fb7-3ae3-4ea2-913e-b4cb1b7e7ec2 + format: uuid type: string secret_path: description: Path of the credential inside the secret backend configured on the runner. @@ -32453,6 +32454,7 @@ components: user_uuid: description: Unique identifier of the user the Private Action Runner connection belongs to. example: ac470ea4-aa08-11f0-994d-da9212322ca2 + format: uuid type: string required: - auth_type diff --git a/src/datadog_api_client/v2/model/databricks_integration_account_authentication_response.py b/src/datadog_api_client/v2/model/databricks_integration_account_authentication_response.py index 0aac54b2d2..074da500da 100644 --- a/src/datadog_api_client/v2/model/databricks_integration_account_authentication_response.py +++ b/src/datadog_api_client/v2/model/databricks_integration_account_authentication_response.py @@ -25,13 +25,13 @@ def __init__(self, **kwargs): :type client_id: str :param connection_id: Unique identifier of the Private Action Runner connection holding the credentials. - :type connection_id: str + :type connection_id: UUID :param secret_path: Path of the credential inside the secret backend configured on the runner. :type secret_path: str, optional :param user_uuid: Unique identifier of the user the Private Action Runner connection belongs to. - :type user_uuid: str + :type user_uuid: UUID """ super().__init__(kwargs) diff --git a/src/datadog_api_client/v2/model/databricks_integration_account_private_action_runner_auth_response.py b/src/datadog_api_client/v2/model/databricks_integration_account_private_action_runner_auth_response.py index 78e035c13c..badc4ddf6f 100644 --- a/src/datadog_api_client/v2/model/databricks_integration_account_private_action_runner_auth_response.py +++ b/src/datadog_api_client/v2/model/databricks_integration_account_private_action_runner_auth_response.py @@ -10,6 +10,7 @@ cached_property, unset, UnsetType, + UUID, ) @@ -28,9 +29,9 @@ def openapi_types(_): return { "auth_type": (DatabricksIntegrationAccountPrivateActionRunnerAuthType,), - "connection_id": (str,), + "connection_id": (UUID,), "secret_path": (str,), - "user_uuid": (str,), + "user_uuid": (UUID,), } attribute_map = { @@ -43,8 +44,8 @@ def openapi_types(_): def __init__( self_, auth_type: DatabricksIntegrationAccountPrivateActionRunnerAuthType, - connection_id: str, - user_uuid: str, + connection_id: UUID, + user_uuid: UUID, secret_path: Union[str, UnsetType] = unset, **kwargs, ): @@ -55,13 +56,13 @@ def __init__( :type auth_type: DatabricksIntegrationAccountPrivateActionRunnerAuthType :param connection_id: Unique identifier of the Private Action Runner connection holding the credentials. - :type connection_id: str + :type connection_id: UUID :param secret_path: Path of the credential inside the secret backend configured on the runner. :type secret_path: str, optional :param user_uuid: Unique identifier of the user the Private Action Runner connection belongs to. - :type user_uuid: str + :type user_uuid: UUID """ if secret_path is not unset: kwargs["secret_path"] = secret_path