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
2 changes: 2 additions & 0 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
cached_property,
unset,
UnsetType,
UUID,
)


Expand All @@ -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 = {
Expand All @@ -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,
):
Expand All @@ -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
Expand Down
Loading