pulumi-databricks 1.75.0a1756323569__py3-none-any.whl → 1.77.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_databricks/__init__.py +129 -46
- pulumi_databricks/_inputs.py +13377 -13798
- pulumi_databricks/account_federation_policy.py +473 -0
- pulumi_databricks/account_network_policy.py +12 -4
- pulumi_databricks/account_setting_v2.py +759 -0
- pulumi_databricks/alert_v2.py +223 -90
- pulumi_databricks/app.py +111 -4
- pulumi_databricks/apps_settings_custom_template.py +531 -0
- pulumi_databricks/budget_policy.py +28 -5
- pulumi_databricks/catalog.py +322 -2
- pulumi_databricks/cluster.py +47 -168
- pulumi_databricks/config/__init__.pyi +2 -0
- pulumi_databricks/config/vars.py +4 -0
- pulumi_databricks/connection.py +0 -34
- pulumi_databricks/data_quality_monitor.py +453 -0
- pulumi_databricks/data_quality_refresh.py +492 -0
- pulumi_databricks/database_database_catalog.py +8 -4
- pulumi_databricks/database_instance.py +354 -73
- pulumi_databricks/database_synced_database_table.py +52 -4
- pulumi_databricks/entitlements.py +21 -21
- pulumi_databricks/entity_tag_assignment.py +409 -0
- pulumi_databricks/external_metadata.py +15 -11
- pulumi_databricks/feature_engineering_feature.py +480 -0
- pulumi_databricks/feature_engineering_materialized_feature.py +397 -0
- pulumi_databricks/get_account_federation_policies.py +127 -0
- pulumi_databricks/get_account_federation_policy.py +214 -0
- pulumi_databricks/get_account_network_policies.py +4 -0
- pulumi_databricks/get_account_network_policy.py +17 -18
- pulumi_databricks/get_account_setting_v2.py +331 -0
- pulumi_databricks/get_alert_v2.py +78 -70
- pulumi_databricks/get_alerts_v2.py +31 -12
- pulumi_databricks/get_app.py +21 -9
- pulumi_databricks/get_apps.py +22 -10
- pulumi_databricks/get_apps_settings_custom_template.py +207 -0
- pulumi_databricks/get_apps_settings_custom_templates.py +133 -0
- pulumi_databricks/get_aws_bucket_policy.py +6 -6
- pulumi_databricks/get_budget_policies.py +70 -6
- pulumi_databricks/get_budget_policy.py +35 -30
- pulumi_databricks/get_catalog.py +21 -4
- pulumi_databricks/get_catalogs.py +23 -4
- pulumi_databricks/get_cluster.py +21 -4
- pulumi_databricks/get_cluster_policy.py +23 -4
- pulumi_databricks/get_clusters.py +21 -4
- pulumi_databricks/get_current_metastore.py +21 -4
- pulumi_databricks/get_dashboards.py +24 -4
- pulumi_databricks/get_data_quality_monitor.py +210 -0
- pulumi_databricks/get_data_quality_monitors.py +143 -0
- pulumi_databricks/get_data_quality_refresh.py +270 -0
- pulumi_databricks/get_data_quality_refreshes.py +207 -0
- pulumi_databricks/get_database_database_catalog.py +6 -20
- pulumi_databricks/get_database_database_catalogs.py +46 -8
- pulumi_databricks/get_database_instance.py +122 -75
- pulumi_databricks/get_database_instances.py +31 -6
- pulumi_databricks/get_database_synced_database_table.py +7 -28
- pulumi_databricks/get_database_synced_database_tables.py +43 -5
- pulumi_databricks/get_directory.py +20 -1
- pulumi_databricks/get_entity_tag_assignment.py +202 -0
- pulumi_databricks/get_entity_tag_assignments.py +187 -0
- pulumi_databricks/get_external_location.py +21 -4
- pulumi_databricks/get_external_locations.py +23 -4
- pulumi_databricks/get_external_metadata.py +12 -50
- pulumi_databricks/get_external_metadatas.py +55 -6
- pulumi_databricks/get_feature_engineering_feature.py +179 -0
- pulumi_databricks/get_feature_engineering_features.py +103 -0
- pulumi_databricks/get_feature_engineering_materialized_feature.py +180 -0
- pulumi_databricks/get_feature_engineering_materialized_features.py +123 -0
- pulumi_databricks/get_functions.py +16 -1
- pulumi_databricks/get_instance_profiles.py +21 -4
- pulumi_databricks/get_jobs.py +23 -4
- pulumi_databricks/get_materialized_features_feature_tag.py +3 -11
- pulumi_databricks/get_materialized_features_feature_tags.py +59 -8
- pulumi_databricks/get_metastore.py +2 -2
- pulumi_databricks/get_mlflow_experiment.py +18 -1
- pulumi_databricks/get_mlflow_model.py +18 -1
- pulumi_databricks/get_mlflow_models.py +23 -4
- pulumi_databricks/get_node_type.py +42 -5
- pulumi_databricks/get_notification_destinations.py +17 -1
- pulumi_databricks/get_online_store.py +7 -17
- pulumi_databricks/get_online_stores.py +29 -8
- pulumi_databricks/get_pipelines.py +23 -4
- pulumi_databricks/get_policy_info.py +28 -99
- pulumi_databricks/get_policy_infos.py +92 -5
- pulumi_databricks/get_quality_monitor_v2.py +4 -0
- pulumi_databricks/get_quality_monitors_v2.py +22 -3
- pulumi_databricks/get_registered_model.py +19 -4
- pulumi_databricks/get_registered_model_versions.py +19 -4
- pulumi_databricks/get_rfa_access_request_destinations.py +126 -0
- pulumi_databricks/get_schema.py +18 -1
- pulumi_databricks/get_schemas.py +23 -4
- pulumi_databricks/get_service_principal_federation_policies.py +151 -0
- pulumi_databricks/get_service_principal_federation_policy.py +220 -0
- pulumi_databricks/get_serving_endpoints.py +19 -4
- pulumi_databricks/get_share.py +117 -18
- pulumi_databricks/get_shares.py +22 -3
- pulumi_databricks/get_spark_version.py +20 -1
- pulumi_databricks/get_sql_warehouse.py +16 -1
- pulumi_databricks/get_sql_warehouses.py +20 -1
- pulumi_databricks/get_storage_credential.py +18 -1
- pulumi_databricks/get_storage_credentials.py +23 -4
- pulumi_databricks/get_table.py +18 -1
- pulumi_databricks/get_tables.py +20 -1
- pulumi_databricks/get_tag_policies.py +139 -0
- pulumi_databricks/get_tag_policy.py +175 -0
- pulumi_databricks/get_views.py +20 -1
- pulumi_databricks/get_volume.py +18 -1
- pulumi_databricks/get_volumes.py +20 -1
- pulumi_databricks/get_workspace_network_option.py +8 -16
- pulumi_databricks/get_workspace_setting_v2.py +331 -0
- pulumi_databricks/get_zones.py +20 -1
- pulumi_databricks/git_credential.py +54 -7
- pulumi_databricks/grant.py +2 -2
- pulumi_databricks/group.py +21 -21
- pulumi_databricks/job.py +47 -0
- pulumi_databricks/library.py +165 -0
- pulumi_databricks/materialized_features_feature_tag.py +8 -4
- pulumi_databricks/mws_ncc_private_endpoint_rule.py +7 -7
- pulumi_databricks/mws_permission_assignment.py +16 -16
- pulumi_databricks/mws_storage_configurations.py +6 -6
- pulumi_databricks/mws_workspaces.py +76 -29
- pulumi_databricks/online_store.py +8 -4
- pulumi_databricks/outputs.py +26397 -22382
- pulumi_databricks/permission_assignment.py +266 -24
- pulumi_databricks/pipeline.py +37 -3
- pulumi_databricks/policy_info.py +43 -39
- pulumi_databricks/provider.py +15 -0
- pulumi_databricks/pulumi-plugin.json +1 -1
- pulumi_databricks/quality_monitor.py +47 -0
- pulumi_databricks/quality_monitor_v2.py +8 -4
- pulumi_databricks/registered_model.py +301 -29
- pulumi_databricks/rfa_access_request_destinations.py +286 -0
- pulumi_databricks/service_principal_federation_policy.py +469 -0
- pulumi_databricks/share.py +71 -84
- pulumi_databricks/sql_endpoint.py +47 -0
- pulumi_databricks/sql_table.py +35 -7
- pulumi_databricks/storage_credential.py +59 -6
- pulumi_databricks/tag_policy.py +357 -0
- pulumi_databricks/user.py +21 -21
- pulumi_databricks/workspace_binding.py +0 -48
- pulumi_databricks/workspace_network_option.py +8 -4
- pulumi_databricks/workspace_setting_v2.py +759 -0
- {pulumi_databricks-1.75.0a1756323569.dist-info → pulumi_databricks-1.77.0.dist-info}/METADATA +1 -1
- pulumi_databricks-1.77.0.dist-info/RECORD +250 -0
- pulumi_databricks/clean_room_asset.py +0 -891
- pulumi_databricks/clean_room_auto_approval_rule.py +0 -426
- pulumi_databricks/clean_rooms_clean_room.py +0 -518
- pulumi_databricks/get_clean_room_asset.py +0 -399
- pulumi_databricks/get_clean_room_asset_revisions_clean_room_asset.py +0 -375
- pulumi_databricks/get_clean_room_asset_revisions_clean_room_assets.py +0 -82
- pulumi_databricks/get_clean_room_assets.py +0 -104
- pulumi_databricks/get_clean_room_auto_approval_rule.py +0 -200
- pulumi_databricks/get_clean_room_auto_approval_rules.py +0 -82
- pulumi_databricks/get_clean_rooms_clean_room.py +0 -272
- pulumi_databricks/get_clean_rooms_clean_rooms.py +0 -104
- pulumi_databricks/get_recipient_federation_policies.py +0 -82
- pulumi_databricks/get_recipient_federation_policy.py +0 -165
- pulumi_databricks/recipient_federation_policy.py +0 -346
- pulumi_databricks-1.75.0a1756323569.dist-info/RECORD +0 -231
- {pulumi_databricks-1.75.0a1756323569.dist-info → pulumi_databricks-1.77.0.dist-info}/WHEEL +0 -0
- {pulumi_databricks-1.75.0a1756323569.dist-info → pulumi_databricks-1.77.0.dist-info}/top_level.txt +0 -0
|
@@ -27,10 +27,16 @@ class GetDatabaseSyncedDatabaseTablesResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getDatabaseSyncedDatabaseTables.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, id=None, synced_tables=None):
|
|
30
|
+
def __init__(__self__, id=None, instance_name=None, page_size=None, synced_tables=None):
|
|
31
31
|
if id and not isinstance(id, str):
|
|
32
32
|
raise TypeError("Expected argument 'id' to be a str")
|
|
33
33
|
pulumi.set(__self__, "id", id)
|
|
34
|
+
if instance_name and not isinstance(instance_name, str):
|
|
35
|
+
raise TypeError("Expected argument 'instance_name' to be a str")
|
|
36
|
+
pulumi.set(__self__, "instance_name", instance_name)
|
|
37
|
+
if page_size and not isinstance(page_size, int):
|
|
38
|
+
raise TypeError("Expected argument 'page_size' to be a int")
|
|
39
|
+
pulumi.set(__self__, "page_size", page_size)
|
|
34
40
|
if synced_tables and not isinstance(synced_tables, list):
|
|
35
41
|
raise TypeError("Expected argument 'synced_tables' to be a list")
|
|
36
42
|
pulumi.set(__self__, "synced_tables", synced_tables)
|
|
@@ -43,6 +49,16 @@ class GetDatabaseSyncedDatabaseTablesResult:
|
|
|
43
49
|
"""
|
|
44
50
|
return pulumi.get(self, "id")
|
|
45
51
|
|
|
52
|
+
@_builtins.property
|
|
53
|
+
@pulumi.getter(name="instanceName")
|
|
54
|
+
def instance_name(self) -> _builtins.str:
|
|
55
|
+
return pulumi.get(self, "instance_name")
|
|
56
|
+
|
|
57
|
+
@_builtins.property
|
|
58
|
+
@pulumi.getter(name="pageSize")
|
|
59
|
+
def page_size(self) -> Optional[_builtins.int]:
|
|
60
|
+
return pulumi.get(self, "page_size")
|
|
61
|
+
|
|
46
62
|
@_builtins.property
|
|
47
63
|
@pulumi.getter(name="syncedTables")
|
|
48
64
|
def synced_tables(self) -> Sequence['outputs.GetDatabaseSyncedDatabaseTablesSyncedTableResult']:
|
|
@@ -56,27 +72,49 @@ class AwaitableGetDatabaseSyncedDatabaseTablesResult(GetDatabaseSyncedDatabaseTa
|
|
|
56
72
|
yield self
|
|
57
73
|
return GetDatabaseSyncedDatabaseTablesResult(
|
|
58
74
|
id=self.id,
|
|
75
|
+
instance_name=self.instance_name,
|
|
76
|
+
page_size=self.page_size,
|
|
59
77
|
synced_tables=self.synced_tables)
|
|
60
78
|
|
|
61
79
|
|
|
62
|
-
def get_database_synced_database_tables(
|
|
80
|
+
def get_database_synced_database_tables(instance_name: Optional[_builtins.str] = None,
|
|
81
|
+
page_size: Optional[_builtins.int] = None,
|
|
82
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabaseSyncedDatabaseTablesResult:
|
|
63
83
|
"""
|
|
64
|
-
|
|
84
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
:param _builtins.str instance_name: Name of the instance to get synced tables for
|
|
88
|
+
:param _builtins.int page_size: Upper bound for items returned
|
|
65
89
|
"""
|
|
66
90
|
__args__ = dict()
|
|
91
|
+
__args__['instanceName'] = instance_name
|
|
92
|
+
__args__['pageSize'] = page_size
|
|
67
93
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
68
94
|
__ret__ = pulumi.runtime.invoke('databricks:index/getDatabaseSyncedDatabaseTables:getDatabaseSyncedDatabaseTables', __args__, opts=opts, typ=GetDatabaseSyncedDatabaseTablesResult).value
|
|
69
95
|
|
|
70
96
|
return AwaitableGetDatabaseSyncedDatabaseTablesResult(
|
|
71
97
|
id=pulumi.get(__ret__, 'id'),
|
|
98
|
+
instance_name=pulumi.get(__ret__, 'instance_name'),
|
|
99
|
+
page_size=pulumi.get(__ret__, 'page_size'),
|
|
72
100
|
synced_tables=pulumi.get(__ret__, 'synced_tables'))
|
|
73
|
-
def get_database_synced_database_tables_output(
|
|
101
|
+
def get_database_synced_database_tables_output(instance_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
102
|
+
page_size: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
103
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabaseSyncedDatabaseTablesResult]:
|
|
74
104
|
"""
|
|
75
|
-
|
|
105
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
:param _builtins.str instance_name: Name of the instance to get synced tables for
|
|
109
|
+
:param _builtins.int page_size: Upper bound for items returned
|
|
76
110
|
"""
|
|
77
111
|
__args__ = dict()
|
|
112
|
+
__args__['instanceName'] = instance_name
|
|
113
|
+
__args__['pageSize'] = page_size
|
|
78
114
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
79
115
|
__ret__ = pulumi.runtime.invoke_output('databricks:index/getDatabaseSyncedDatabaseTables:getDatabaseSyncedDatabaseTables', __args__, opts=opts, typ=GetDatabaseSyncedDatabaseTablesResult)
|
|
80
116
|
return __ret__.apply(lambda __response__: GetDatabaseSyncedDatabaseTablesResult(
|
|
81
117
|
id=pulumi.get(__response__, 'id'),
|
|
118
|
+
instance_name=pulumi.get(__response__, 'instance_name'),
|
|
119
|
+
page_size=pulumi.get(__response__, 'page_size'),
|
|
82
120
|
synced_tables=pulumi.get(__response__, 'synced_tables')))
|
|
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
|
13
13
|
else:
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
16
18
|
|
|
17
19
|
__all__ = [
|
|
18
20
|
'GetDirectoryResult',
|
|
@@ -26,7 +28,7 @@ class GetDirectoryResult:
|
|
|
26
28
|
"""
|
|
27
29
|
A collection of values returned by getDirectory.
|
|
28
30
|
"""
|
|
29
|
-
def __init__(__self__, id=None, object_id=None, path=None, workspace_path=None):
|
|
31
|
+
def __init__(__self__, id=None, object_id=None, path=None, provider_config=None, workspace_path=None):
|
|
30
32
|
if id and not isinstance(id, str):
|
|
31
33
|
raise TypeError("Expected argument 'id' to be a str")
|
|
32
34
|
pulumi.set(__self__, "id", id)
|
|
@@ -36,6 +38,9 @@ class GetDirectoryResult:
|
|
|
36
38
|
if path and not isinstance(path, str):
|
|
37
39
|
raise TypeError("Expected argument 'path' to be a str")
|
|
38
40
|
pulumi.set(__self__, "path", path)
|
|
41
|
+
if provider_config and not isinstance(provider_config, dict):
|
|
42
|
+
raise TypeError("Expected argument 'provider_config' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "provider_config", provider_config)
|
|
39
44
|
if workspace_path and not isinstance(workspace_path, str):
|
|
40
45
|
raise TypeError("Expected argument 'workspace_path' to be a str")
|
|
41
46
|
pulumi.set(__self__, "workspace_path", workspace_path)
|
|
@@ -58,6 +63,11 @@ class GetDirectoryResult:
|
|
|
58
63
|
def path(self) -> _builtins.str:
|
|
59
64
|
return pulumi.get(self, "path")
|
|
60
65
|
|
|
66
|
+
@_builtins.property
|
|
67
|
+
@pulumi.getter(name="providerConfig")
|
|
68
|
+
def provider_config(self) -> Optional['outputs.GetDirectoryProviderConfigResult']:
|
|
69
|
+
return pulumi.get(self, "provider_config")
|
|
70
|
+
|
|
61
71
|
@_builtins.property
|
|
62
72
|
@pulumi.getter(name="workspacePath")
|
|
63
73
|
def workspace_path(self) -> _builtins.str:
|
|
@@ -76,12 +86,14 @@ class AwaitableGetDirectoryResult(GetDirectoryResult):
|
|
|
76
86
|
id=self.id,
|
|
77
87
|
object_id=self.object_id,
|
|
78
88
|
path=self.path,
|
|
89
|
+
provider_config=self.provider_config,
|
|
79
90
|
workspace_path=self.workspace_path)
|
|
80
91
|
|
|
81
92
|
|
|
82
93
|
def get_directory(id: Optional[_builtins.str] = None,
|
|
83
94
|
object_id: Optional[_builtins.int] = None,
|
|
84
95
|
path: Optional[_builtins.str] = None,
|
|
96
|
+
provider_config: Optional[Union['GetDirectoryProviderConfigArgs', 'GetDirectoryProviderConfigArgsDict']] = None,
|
|
85
97
|
workspace_path: Optional[_builtins.str] = None,
|
|
86
98
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDirectoryResult:
|
|
87
99
|
"""
|
|
@@ -101,12 +113,14 @@ def get_directory(id: Optional[_builtins.str] = None,
|
|
|
101
113
|
|
|
102
114
|
:param _builtins.int object_id: directory object ID
|
|
103
115
|
:param _builtins.str path: Path to a directory in the workspace
|
|
116
|
+
:param Union['GetDirectoryProviderConfigArgs', 'GetDirectoryProviderConfigArgsDict'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
104
117
|
:param _builtins.str workspace_path: path on Workspace File System (WSFS) in form of `/Workspace` + `path`
|
|
105
118
|
"""
|
|
106
119
|
__args__ = dict()
|
|
107
120
|
__args__['id'] = id
|
|
108
121
|
__args__['objectId'] = object_id
|
|
109
122
|
__args__['path'] = path
|
|
123
|
+
__args__['providerConfig'] = provider_config
|
|
110
124
|
__args__['workspacePath'] = workspace_path
|
|
111
125
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
112
126
|
__ret__ = pulumi.runtime.invoke('databricks:index/getDirectory:getDirectory', __args__, opts=opts, typ=GetDirectoryResult).value
|
|
@@ -115,10 +129,12 @@ def get_directory(id: Optional[_builtins.str] = None,
|
|
|
115
129
|
id=pulumi.get(__ret__, 'id'),
|
|
116
130
|
object_id=pulumi.get(__ret__, 'object_id'),
|
|
117
131
|
path=pulumi.get(__ret__, 'path'),
|
|
132
|
+
provider_config=pulumi.get(__ret__, 'provider_config'),
|
|
118
133
|
workspace_path=pulumi.get(__ret__, 'workspace_path'))
|
|
119
134
|
def get_directory_output(id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
120
135
|
object_id: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
121
136
|
path: Optional[pulumi.Input[_builtins.str]] = None,
|
|
137
|
+
provider_config: Optional[pulumi.Input[Optional[Union['GetDirectoryProviderConfigArgs', 'GetDirectoryProviderConfigArgsDict']]]] = None,
|
|
122
138
|
workspace_path: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
123
139
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDirectoryResult]:
|
|
124
140
|
"""
|
|
@@ -138,12 +154,14 @@ def get_directory_output(id: Optional[pulumi.Input[Optional[_builtins.str]]] = N
|
|
|
138
154
|
|
|
139
155
|
:param _builtins.int object_id: directory object ID
|
|
140
156
|
:param _builtins.str path: Path to a directory in the workspace
|
|
157
|
+
:param Union['GetDirectoryProviderConfigArgs', 'GetDirectoryProviderConfigArgsDict'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
141
158
|
:param _builtins.str workspace_path: path on Workspace File System (WSFS) in form of `/Workspace` + `path`
|
|
142
159
|
"""
|
|
143
160
|
__args__ = dict()
|
|
144
161
|
__args__['id'] = id
|
|
145
162
|
__args__['objectId'] = object_id
|
|
146
163
|
__args__['path'] = path
|
|
164
|
+
__args__['providerConfig'] = provider_config
|
|
147
165
|
__args__['workspacePath'] = workspace_path
|
|
148
166
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
149
167
|
__ret__ = pulumi.runtime.invoke_output('databricks:index/getDirectory:getDirectory', __args__, opts=opts, typ=GetDirectoryResult)
|
|
@@ -151,4 +169,5 @@ def get_directory_output(id: Optional[pulumi.Input[Optional[_builtins.str]]] = N
|
|
|
151
169
|
id=pulumi.get(__response__, 'id'),
|
|
152
170
|
object_id=pulumi.get(__response__, 'object_id'),
|
|
153
171
|
path=pulumi.get(__response__, 'path'),
|
|
172
|
+
provider_config=pulumi.get(__response__, 'provider_config'),
|
|
154
173
|
workspace_path=pulumi.get(__response__, 'workspace_path')))
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
|
|
17
|
+
__all__ = [
|
|
18
|
+
'GetEntityTagAssignmentResult',
|
|
19
|
+
'AwaitableGetEntityTagAssignmentResult',
|
|
20
|
+
'get_entity_tag_assignment',
|
|
21
|
+
'get_entity_tag_assignment_output',
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
@pulumi.output_type
|
|
25
|
+
class GetEntityTagAssignmentResult:
|
|
26
|
+
"""
|
|
27
|
+
A collection of values returned by getEntityTagAssignment.
|
|
28
|
+
"""
|
|
29
|
+
def __init__(__self__, entity_name=None, entity_type=None, id=None, tag_key=None, tag_value=None):
|
|
30
|
+
if entity_name and not isinstance(entity_name, str):
|
|
31
|
+
raise TypeError("Expected argument 'entity_name' to be a str")
|
|
32
|
+
pulumi.set(__self__, "entity_name", entity_name)
|
|
33
|
+
if entity_type and not isinstance(entity_type, str):
|
|
34
|
+
raise TypeError("Expected argument 'entity_type' to be a str")
|
|
35
|
+
pulumi.set(__self__, "entity_type", entity_type)
|
|
36
|
+
if id and not isinstance(id, str):
|
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
38
|
+
pulumi.set(__self__, "id", id)
|
|
39
|
+
if tag_key and not isinstance(tag_key, str):
|
|
40
|
+
raise TypeError("Expected argument 'tag_key' to be a str")
|
|
41
|
+
pulumi.set(__self__, "tag_key", tag_key)
|
|
42
|
+
if tag_value and not isinstance(tag_value, str):
|
|
43
|
+
raise TypeError("Expected argument 'tag_value' to be a str")
|
|
44
|
+
pulumi.set(__self__, "tag_value", tag_value)
|
|
45
|
+
|
|
46
|
+
@_builtins.property
|
|
47
|
+
@pulumi.getter(name="entityName")
|
|
48
|
+
def entity_name(self) -> _builtins.str:
|
|
49
|
+
"""
|
|
50
|
+
(string) - The fully qualified name of the entity to which the tag is assigned
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "entity_name")
|
|
53
|
+
|
|
54
|
+
@_builtins.property
|
|
55
|
+
@pulumi.getter(name="entityType")
|
|
56
|
+
def entity_type(self) -> _builtins.str:
|
|
57
|
+
"""
|
|
58
|
+
(string) - The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "entity_type")
|
|
61
|
+
|
|
62
|
+
@_builtins.property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def id(self) -> _builtins.str:
|
|
65
|
+
"""
|
|
66
|
+
The provider-assigned unique ID for this managed resource.
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "id")
|
|
69
|
+
|
|
70
|
+
@_builtins.property
|
|
71
|
+
@pulumi.getter(name="tagKey")
|
|
72
|
+
def tag_key(self) -> _builtins.str:
|
|
73
|
+
"""
|
|
74
|
+
(string) - The key of the tag
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "tag_key")
|
|
77
|
+
|
|
78
|
+
@_builtins.property
|
|
79
|
+
@pulumi.getter(name="tagValue")
|
|
80
|
+
def tag_value(self) -> _builtins.str:
|
|
81
|
+
"""
|
|
82
|
+
(string) - The value of the tag
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "tag_value")
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
class AwaitableGetEntityTagAssignmentResult(GetEntityTagAssignmentResult):
|
|
88
|
+
# pylint: disable=using-constant-test
|
|
89
|
+
def __await__(self):
|
|
90
|
+
if False:
|
|
91
|
+
yield self
|
|
92
|
+
return GetEntityTagAssignmentResult(
|
|
93
|
+
entity_name=self.entity_name,
|
|
94
|
+
entity_type=self.entity_type,
|
|
95
|
+
id=self.id,
|
|
96
|
+
tag_key=self.tag_key,
|
|
97
|
+
tag_value=self.tag_value)
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
def get_entity_tag_assignment(entity_name: Optional[_builtins.str] = None,
|
|
101
|
+
entity_type: Optional[_builtins.str] = None,
|
|
102
|
+
tag_key: Optional[_builtins.str] = None,
|
|
103
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEntityTagAssignmentResult:
|
|
104
|
+
"""
|
|
105
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
106
|
+
|
|
107
|
+
This data source allows you to get information about a tag assignment for a specific entity using the entity type, entity name, and tag key.
|
|
108
|
+
|
|
109
|
+
## Example Usage
|
|
110
|
+
|
|
111
|
+
### Get environment tag from a catalog
|
|
112
|
+
|
|
113
|
+
```python
|
|
114
|
+
import pulumi
|
|
115
|
+
import pulumi_databricks as databricks
|
|
116
|
+
|
|
117
|
+
catalog_tag = databricks.get_entity_tag_assignment(entity_type="catalogs",
|
|
118
|
+
entity_name="production_catalog",
|
|
119
|
+
tag_key="environment")
|
|
120
|
+
schema_tag = databricks.get_entity_tag_assignment(entity_type="schemas",
|
|
121
|
+
entity_name="production_catalog.analytics_data",
|
|
122
|
+
tag_key="cost_center")
|
|
123
|
+
table_tag = databricks.get_entity_tag_assignment(entity_type="tables",
|
|
124
|
+
entity_name="production_catalog.sales_data.customer_orders",
|
|
125
|
+
tag_key="owner")
|
|
126
|
+
column_tag = databricks.get_entity_tag_assignment(entity_type="columns",
|
|
127
|
+
entity_name="production_catalog.customer_data.users.email_address",
|
|
128
|
+
tag_key="pii_classification")
|
|
129
|
+
volume_tag = databricks.get_entity_tag_assignment(entity_type="volumes",
|
|
130
|
+
entity_name="production_catalog.raw_data.landing_zone",
|
|
131
|
+
tag_key="purpose")
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
:param _builtins.str entity_name: The fully qualified name of the entity to which the tag is assigned
|
|
136
|
+
:param _builtins.str entity_type: The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
|
|
137
|
+
:param _builtins.str tag_key: The key of the tag
|
|
138
|
+
"""
|
|
139
|
+
__args__ = dict()
|
|
140
|
+
__args__['entityName'] = entity_name
|
|
141
|
+
__args__['entityType'] = entity_type
|
|
142
|
+
__args__['tagKey'] = tag_key
|
|
143
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
144
|
+
__ret__ = pulumi.runtime.invoke('databricks:index/getEntityTagAssignment:getEntityTagAssignment', __args__, opts=opts, typ=GetEntityTagAssignmentResult).value
|
|
145
|
+
|
|
146
|
+
return AwaitableGetEntityTagAssignmentResult(
|
|
147
|
+
entity_name=pulumi.get(__ret__, 'entity_name'),
|
|
148
|
+
entity_type=pulumi.get(__ret__, 'entity_type'),
|
|
149
|
+
id=pulumi.get(__ret__, 'id'),
|
|
150
|
+
tag_key=pulumi.get(__ret__, 'tag_key'),
|
|
151
|
+
tag_value=pulumi.get(__ret__, 'tag_value'))
|
|
152
|
+
def get_entity_tag_assignment_output(entity_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
153
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
154
|
+
tag_key: Optional[pulumi.Input[_builtins.str]] = None,
|
|
155
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEntityTagAssignmentResult]:
|
|
156
|
+
"""
|
|
157
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
158
|
+
|
|
159
|
+
This data source allows you to get information about a tag assignment for a specific entity using the entity type, entity name, and tag key.
|
|
160
|
+
|
|
161
|
+
## Example Usage
|
|
162
|
+
|
|
163
|
+
### Get environment tag from a catalog
|
|
164
|
+
|
|
165
|
+
```python
|
|
166
|
+
import pulumi
|
|
167
|
+
import pulumi_databricks as databricks
|
|
168
|
+
|
|
169
|
+
catalog_tag = databricks.get_entity_tag_assignment(entity_type="catalogs",
|
|
170
|
+
entity_name="production_catalog",
|
|
171
|
+
tag_key="environment")
|
|
172
|
+
schema_tag = databricks.get_entity_tag_assignment(entity_type="schemas",
|
|
173
|
+
entity_name="production_catalog.analytics_data",
|
|
174
|
+
tag_key="cost_center")
|
|
175
|
+
table_tag = databricks.get_entity_tag_assignment(entity_type="tables",
|
|
176
|
+
entity_name="production_catalog.sales_data.customer_orders",
|
|
177
|
+
tag_key="owner")
|
|
178
|
+
column_tag = databricks.get_entity_tag_assignment(entity_type="columns",
|
|
179
|
+
entity_name="production_catalog.customer_data.users.email_address",
|
|
180
|
+
tag_key="pii_classification")
|
|
181
|
+
volume_tag = databricks.get_entity_tag_assignment(entity_type="volumes",
|
|
182
|
+
entity_name="production_catalog.raw_data.landing_zone",
|
|
183
|
+
tag_key="purpose")
|
|
184
|
+
```
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
:param _builtins.str entity_name: The fully qualified name of the entity to which the tag is assigned
|
|
188
|
+
:param _builtins.str entity_type: The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
|
|
189
|
+
:param _builtins.str tag_key: The key of the tag
|
|
190
|
+
"""
|
|
191
|
+
__args__ = dict()
|
|
192
|
+
__args__['entityName'] = entity_name
|
|
193
|
+
__args__['entityType'] = entity_type
|
|
194
|
+
__args__['tagKey'] = tag_key
|
|
195
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
196
|
+
__ret__ = pulumi.runtime.invoke_output('databricks:index/getEntityTagAssignment:getEntityTagAssignment', __args__, opts=opts, typ=GetEntityTagAssignmentResult)
|
|
197
|
+
return __ret__.apply(lambda __response__: GetEntityTagAssignmentResult(
|
|
198
|
+
entity_name=pulumi.get(__response__, 'entity_name'),
|
|
199
|
+
entity_type=pulumi.get(__response__, 'entity_type'),
|
|
200
|
+
id=pulumi.get(__response__, 'id'),
|
|
201
|
+
tag_key=pulumi.get(__response__, 'tag_key'),
|
|
202
|
+
tag_value=pulumi.get(__response__, 'tag_value')))
|
|
@@ -0,0 +1,187 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import builtins as _builtins
|
|
6
|
+
import warnings
|
|
7
|
+
import sys
|
|
8
|
+
import pulumi
|
|
9
|
+
import pulumi.runtime
|
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
|
+
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
|
|
18
|
+
__all__ = [
|
|
19
|
+
'GetEntityTagAssignmentsResult',
|
|
20
|
+
'AwaitableGetEntityTagAssignmentsResult',
|
|
21
|
+
'get_entity_tag_assignments',
|
|
22
|
+
'get_entity_tag_assignments_output',
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
@pulumi.output_type
|
|
26
|
+
class GetEntityTagAssignmentsResult:
|
|
27
|
+
"""
|
|
28
|
+
A collection of values returned by getEntityTagAssignments.
|
|
29
|
+
"""
|
|
30
|
+
def __init__(__self__, entity_name=None, entity_type=None, id=None, max_results=None, tag_assignments=None):
|
|
31
|
+
if entity_name and not isinstance(entity_name, str):
|
|
32
|
+
raise TypeError("Expected argument 'entity_name' to be a str")
|
|
33
|
+
pulumi.set(__self__, "entity_name", entity_name)
|
|
34
|
+
if entity_type and not isinstance(entity_type, str):
|
|
35
|
+
raise TypeError("Expected argument 'entity_type' to be a str")
|
|
36
|
+
pulumi.set(__self__, "entity_type", entity_type)
|
|
37
|
+
if id and not isinstance(id, str):
|
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "id", id)
|
|
40
|
+
if max_results and not isinstance(max_results, int):
|
|
41
|
+
raise TypeError("Expected argument 'max_results' to be a int")
|
|
42
|
+
pulumi.set(__self__, "max_results", max_results)
|
|
43
|
+
if tag_assignments and not isinstance(tag_assignments, list):
|
|
44
|
+
raise TypeError("Expected argument 'tag_assignments' to be a list")
|
|
45
|
+
pulumi.set(__self__, "tag_assignments", tag_assignments)
|
|
46
|
+
|
|
47
|
+
@_builtins.property
|
|
48
|
+
@pulumi.getter(name="entityName")
|
|
49
|
+
def entity_name(self) -> _builtins.str:
|
|
50
|
+
"""
|
|
51
|
+
(string) - The fully qualified name of the entity to which the tag is assigned
|
|
52
|
+
"""
|
|
53
|
+
return pulumi.get(self, "entity_name")
|
|
54
|
+
|
|
55
|
+
@_builtins.property
|
|
56
|
+
@pulumi.getter(name="entityType")
|
|
57
|
+
def entity_type(self) -> _builtins.str:
|
|
58
|
+
"""
|
|
59
|
+
(string) - The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
|
|
60
|
+
"""
|
|
61
|
+
return pulumi.get(self, "entity_type")
|
|
62
|
+
|
|
63
|
+
@_builtins.property
|
|
64
|
+
@pulumi.getter
|
|
65
|
+
def id(self) -> _builtins.str:
|
|
66
|
+
"""
|
|
67
|
+
The provider-assigned unique ID for this managed resource.
|
|
68
|
+
"""
|
|
69
|
+
return pulumi.get(self, "id")
|
|
70
|
+
|
|
71
|
+
@_builtins.property
|
|
72
|
+
@pulumi.getter(name="maxResults")
|
|
73
|
+
def max_results(self) -> Optional[_builtins.int]:
|
|
74
|
+
return pulumi.get(self, "max_results")
|
|
75
|
+
|
|
76
|
+
@_builtins.property
|
|
77
|
+
@pulumi.getter(name="tagAssignments")
|
|
78
|
+
def tag_assignments(self) -> Sequence['outputs.GetEntityTagAssignmentsTagAssignmentResult']:
|
|
79
|
+
return pulumi.get(self, "tag_assignments")
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
class AwaitableGetEntityTagAssignmentsResult(GetEntityTagAssignmentsResult):
|
|
83
|
+
# pylint: disable=using-constant-test
|
|
84
|
+
def __await__(self):
|
|
85
|
+
if False:
|
|
86
|
+
yield self
|
|
87
|
+
return GetEntityTagAssignmentsResult(
|
|
88
|
+
entity_name=self.entity_name,
|
|
89
|
+
entity_type=self.entity_type,
|
|
90
|
+
id=self.id,
|
|
91
|
+
max_results=self.max_results,
|
|
92
|
+
tag_assignments=self.tag_assignments)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def get_entity_tag_assignments(entity_name: Optional[_builtins.str] = None,
|
|
96
|
+
entity_type: Optional[_builtins.str] = None,
|
|
97
|
+
max_results: Optional[_builtins.int] = None,
|
|
98
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEntityTagAssignmentsResult:
|
|
99
|
+
"""
|
|
100
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
101
|
+
|
|
102
|
+
This data source allows you to retrieve tag assignments that have been applied to a particular entity in Unity Catalog.
|
|
103
|
+
|
|
104
|
+
## Example Usage
|
|
105
|
+
|
|
106
|
+
### Get all tag assignments for a catalog
|
|
107
|
+
|
|
108
|
+
```python
|
|
109
|
+
import pulumi
|
|
110
|
+
import pulumi_databricks as databricks
|
|
111
|
+
|
|
112
|
+
catalog_tags = databricks.get_entity_tag_assignments(entity_type="catalogs",
|
|
113
|
+
entity_name="production_catalog")
|
|
114
|
+
schema_tags = databricks.get_entity_tag_assignments(entity_type="schemas",
|
|
115
|
+
entity_name="production_catalog.sales_data")
|
|
116
|
+
table_tags = databricks.get_entity_tag_assignments(entity_type="tables",
|
|
117
|
+
entity_name="production_catalog.sales_data.customer_orders")
|
|
118
|
+
column_tags = databricks.get_entity_tag_assignments(entity_type="columns",
|
|
119
|
+
entity_name="production_catalog.customer_data.users.email_address")
|
|
120
|
+
volume_tags = databricks.get_entity_tag_assignments(entity_type="volumes",
|
|
121
|
+
entity_name="production_catalog.raw_data.landing_zone")
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
:param _builtins.str entity_name: The fully qualified name of the entity to which the tag is assigned
|
|
126
|
+
:param _builtins.str entity_type: The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
|
|
127
|
+
:param _builtins.int max_results: Optional. Maximum number of tag assignments to return in a single page
|
|
128
|
+
"""
|
|
129
|
+
__args__ = dict()
|
|
130
|
+
__args__['entityName'] = entity_name
|
|
131
|
+
__args__['entityType'] = entity_type
|
|
132
|
+
__args__['maxResults'] = max_results
|
|
133
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
134
|
+
__ret__ = pulumi.runtime.invoke('databricks:index/getEntityTagAssignments:getEntityTagAssignments', __args__, opts=opts, typ=GetEntityTagAssignmentsResult).value
|
|
135
|
+
|
|
136
|
+
return AwaitableGetEntityTagAssignmentsResult(
|
|
137
|
+
entity_name=pulumi.get(__ret__, 'entity_name'),
|
|
138
|
+
entity_type=pulumi.get(__ret__, 'entity_type'),
|
|
139
|
+
id=pulumi.get(__ret__, 'id'),
|
|
140
|
+
max_results=pulumi.get(__ret__, 'max_results'),
|
|
141
|
+
tag_assignments=pulumi.get(__ret__, 'tag_assignments'))
|
|
142
|
+
def get_entity_tag_assignments_output(entity_name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
143
|
+
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
144
|
+
max_results: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
145
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetEntityTagAssignmentsResult]:
|
|
146
|
+
"""
|
|
147
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
148
|
+
|
|
149
|
+
This data source allows you to retrieve tag assignments that have been applied to a particular entity in Unity Catalog.
|
|
150
|
+
|
|
151
|
+
## Example Usage
|
|
152
|
+
|
|
153
|
+
### Get all tag assignments for a catalog
|
|
154
|
+
|
|
155
|
+
```python
|
|
156
|
+
import pulumi
|
|
157
|
+
import pulumi_databricks as databricks
|
|
158
|
+
|
|
159
|
+
catalog_tags = databricks.get_entity_tag_assignments(entity_type="catalogs",
|
|
160
|
+
entity_name="production_catalog")
|
|
161
|
+
schema_tags = databricks.get_entity_tag_assignments(entity_type="schemas",
|
|
162
|
+
entity_name="production_catalog.sales_data")
|
|
163
|
+
table_tags = databricks.get_entity_tag_assignments(entity_type="tables",
|
|
164
|
+
entity_name="production_catalog.sales_data.customer_orders")
|
|
165
|
+
column_tags = databricks.get_entity_tag_assignments(entity_type="columns",
|
|
166
|
+
entity_name="production_catalog.customer_data.users.email_address")
|
|
167
|
+
volume_tags = databricks.get_entity_tag_assignments(entity_type="volumes",
|
|
168
|
+
entity_name="production_catalog.raw_data.landing_zone")
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
:param _builtins.str entity_name: The fully qualified name of the entity to which the tag is assigned
|
|
173
|
+
:param _builtins.str entity_type: The type of the entity to which the tag is assigned. Allowed values are: catalogs, schemas, tables, columns, volumes
|
|
174
|
+
:param _builtins.int max_results: Optional. Maximum number of tag assignments to return in a single page
|
|
175
|
+
"""
|
|
176
|
+
__args__ = dict()
|
|
177
|
+
__args__['entityName'] = entity_name
|
|
178
|
+
__args__['entityType'] = entity_type
|
|
179
|
+
__args__['maxResults'] = max_results
|
|
180
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
181
|
+
__ret__ = pulumi.runtime.invoke_output('databricks:index/getEntityTagAssignments:getEntityTagAssignments', __args__, opts=opts, typ=GetEntityTagAssignmentsResult)
|
|
182
|
+
return __ret__.apply(lambda __response__: GetEntityTagAssignmentsResult(
|
|
183
|
+
entity_name=pulumi.get(__response__, 'entity_name'),
|
|
184
|
+
entity_type=pulumi.get(__response__, 'entity_type'),
|
|
185
|
+
id=pulumi.get(__response__, 'id'),
|
|
186
|
+
max_results=pulumi.get(__response__, 'max_results'),
|
|
187
|
+
tag_assignments=pulumi.get(__response__, 'tag_assignments')))
|