Skip to content
Open
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
1,795 changes: 92 additions & 1,703 deletions pyatlan_v9/model/assets/__init__.py

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions pyatlan_v9/model/assets/atlan_app_deployment.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ class AtlanAppDeployment(Asset):
ATLAN_APP_STATUS: ClassVar[Any] = None
ATLAN_APP_OPERATION: ClassVar[Any] = None
ATLAN_APP_ERROR_DETAILS: ClassVar[Any] = None
ATLAN_APP_DEPLOYMENT_NAME: ClassVar[Any] = None
ATLAN_APP_QUALIFIED_NAME: ClassVar[Any] = None
ATLAN_APP_NAME: ClassVar[Any] = None
ATLAN_APP_METADATA: ClassVar[Any] = None
Expand Down Expand Up @@ -122,6 +123,9 @@ class AtlanAppDeployment(Asset):
atlan_app_error_details: Union[str, None, UnsetType] = UNSET
"""Detailed error message explaining why the deployment failed. Should only be populated when status = FAILED."""

atlan_app_deployment_name: Union[str, None, UnsetType] = UNSET
"""Target deployment environment where the app is installed (e.g. "atlan" for Atlan-managed infra, or a customer SDR deployment name for customer-managed infra)."""

atlan_app_qualified_name: Union[str, None, UnsetType] = UNSET
"""Qualified name of the Atlan application this asset belongs to."""

Expand Down Expand Up @@ -309,6 +313,9 @@ class AtlanAppDeploymentAttributes(AssetAttributes):
atlan_app_error_details: Union[str, None, UnsetType] = UNSET
"""Detailed error message explaining why the deployment failed. Should only be populated when status = FAILED."""

atlan_app_deployment_name: Union[str, None, UnsetType] = UNSET
"""Target deployment environment where the app is installed (e.g. "atlan" for Atlan-managed infra, or a customer SDR deployment name for customer-managed infra)."""

atlan_app_qualified_name: Union[str, None, UnsetType] = UNSET
"""Qualified name of the Atlan application this asset belongs to."""

Expand Down Expand Up @@ -488,6 +495,7 @@ def _populate_atlan_app_deployment_attrs(
attrs.atlan_app_status = obj.atlan_app_status
attrs.atlan_app_operation = obj.atlan_app_operation
attrs.atlan_app_error_details = obj.atlan_app_error_details
attrs.atlan_app_deployment_name = obj.atlan_app_deployment_name
attrs.atlan_app_qualified_name = obj.atlan_app_qualified_name
attrs.atlan_app_name = obj.atlan_app_name
attrs.atlan_app_metadata = obj.atlan_app_metadata
Expand All @@ -502,6 +510,7 @@ def _extract_atlan_app_deployment_attrs(attrs: AtlanAppDeploymentAttributes) ->
result["atlan_app_status"] = attrs.atlan_app_status
result["atlan_app_operation"] = attrs.atlan_app_operation
result["atlan_app_error_details"] = attrs.atlan_app_error_details
result["atlan_app_deployment_name"] = attrs.atlan_app_deployment_name
result["atlan_app_qualified_name"] = attrs.atlan_app_qualified_name
result["atlan_app_name"] = attrs.atlan_app_name
result["atlan_app_metadata"] = attrs.atlan_app_metadata
Expand Down Expand Up @@ -634,6 +643,9 @@ def _atlan_app_deployment_from_nested_bytes(
AtlanAppDeployment.ATLAN_APP_ERROR_DETAILS = KeywordField(
"atlanAppErrorDetails", "atlanAppErrorDetails"
)
AtlanAppDeployment.ATLAN_APP_DEPLOYMENT_NAME = KeywordField(
"atlanAppDeploymentName", "atlanAppDeploymentName"
)
AtlanAppDeployment.ATLAN_APP_QUALIFIED_NAME = KeywordField(
"atlanAppQualifiedName", "atlanAppQualifiedName"
)
Expand Down
12 changes: 12 additions & 0 deletions pyatlan_v9/model/assets/atlan_app_installed.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ class AtlanAppInstalled(Asset):
ATLAN_APP_CURRENT_VERSION_ID: ClassVar[Any] = None
ATLAN_APP_CURRENT_VERSION_UUID: ClassVar[Any] = None
ATLAN_APP_DEPLOYMENT_CONFIG: ClassVar[Any] = None
ATLAN_APP_DEPLOYMENT_NAME: ClassVar[Any] = None
ATLAN_APP_QUALIFIED_NAME: ClassVar[Any] = None
ATLAN_APP_NAME: ClassVar[Any] = None
ATLAN_APP_METADATA: ClassVar[Any] = None
Expand Down Expand Up @@ -114,6 +115,9 @@ class AtlanAppInstalled(Asset):
atlan_app_deployment_config: Union[str, None, UnsetType] = UNSET
"""Configuration settings used by the atlan application."""

atlan_app_deployment_name: Union[str, None, UnsetType] = UNSET
"""Target deployment environment where the app is installed (e.g. "atlan" for Atlan-managed infra, or a customer SDR deployment name for customer-managed infra)."""

atlan_app_qualified_name: Union[str, None, UnsetType] = UNSET
"""Qualified name of the Atlan application this asset belongs to."""

Expand Down Expand Up @@ -295,6 +299,9 @@ class AtlanAppInstalledAttributes(AssetAttributes):
atlan_app_deployment_config: Union[str, None, UnsetType] = UNSET
"""Configuration settings used by the atlan application."""

atlan_app_deployment_name: Union[str, None, UnsetType] = UNSET
"""Target deployment environment where the app is installed (e.g. "atlan" for Atlan-managed infra, or a customer SDR deployment name for customer-managed infra)."""

atlan_app_qualified_name: Union[str, None, UnsetType] = UNSET
"""Qualified name of the Atlan application this asset belongs to."""

Expand Down Expand Up @@ -472,6 +479,7 @@ def _populate_atlan_app_installed_attrs(
attrs.atlan_app_current_version_id = obj.atlan_app_current_version_id
attrs.atlan_app_current_version_uuid = obj.atlan_app_current_version_uuid
attrs.atlan_app_deployment_config = obj.atlan_app_deployment_config
attrs.atlan_app_deployment_name = obj.atlan_app_deployment_name
attrs.atlan_app_qualified_name = obj.atlan_app_qualified_name
attrs.atlan_app_name = obj.atlan_app_name
attrs.atlan_app_metadata = obj.atlan_app_metadata
Expand All @@ -484,6 +492,7 @@ def _extract_atlan_app_installed_attrs(attrs: AtlanAppInstalledAttributes) -> di
result["atlan_app_current_version_id"] = attrs.atlan_app_current_version_id
result["atlan_app_current_version_uuid"] = attrs.atlan_app_current_version_uuid
result["atlan_app_deployment_config"] = attrs.atlan_app_deployment_config
result["atlan_app_deployment_name"] = attrs.atlan_app_deployment_name
result["atlan_app_qualified_name"] = attrs.atlan_app_qualified_name
result["atlan_app_name"] = attrs.atlan_app_name
result["atlan_app_metadata"] = attrs.atlan_app_metadata
Expand Down Expand Up @@ -612,6 +621,9 @@ def _atlan_app_installed_from_nested_bytes(
AtlanAppInstalled.ATLAN_APP_DEPLOYMENT_CONFIG = KeywordField(
"atlanAppDeploymentConfig", "atlanAppDeploymentConfig"
)
AtlanAppInstalled.ATLAN_APP_DEPLOYMENT_NAME = KeywordField(
"atlanAppDeploymentName", "atlanAppDeploymentName"
)
AtlanAppInstalled.ATLAN_APP_QUALIFIED_NAME = KeywordField(
"atlanAppQualifiedName", "atlanAppQualifiedName"
)
Expand Down
6 changes: 6 additions & 0 deletions pyatlan_v9/model/assets/atlan_app_related.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,9 @@ class RelatedAtlanAppInstalled(RelatedAtlanApp):
atlan_app_deployment_config: Union[str, None, UnsetType] = UNSET
"""Configuration settings used by the atlan application."""

atlan_app_deployment_name: Union[str, None, UnsetType] = UNSET
"""Target deployment environment where the app is installed (e.g. "atlan" for Atlan-managed infra, or a customer SDR deployment name for customer-managed infra)."""

def __post_init__(self) -> None:
RelatedReferenceable.__post_init__(self)
self.type_name = "AtlanAppInstalled"
Expand Down Expand Up @@ -105,6 +108,9 @@ class RelatedAtlanAppDeployment(RelatedAtlanApp):
atlan_app_error_details: Union[str, None, UnsetType] = UNSET
"""Detailed error message explaining why the deployment failed. Should only be populated when status = FAILED."""

atlan_app_deployment_name: Union[str, None, UnsetType] = UNSET
"""Target deployment environment where the app is installed (e.g. "atlan" for Atlan-managed infra, or a customer SDR deployment name for customer-managed infra)."""

def __post_init__(self) -> None:
RelatedReferenceable.__post_init__(self)
self.type_name = "AtlanAppDeployment"
Expand Down
Loading
Loading