pulumi-databricks 1.77.0a1761975834__py3-none-any.whl → 1.79.0a1762839813__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.
Files changed (176) hide show
  1. pulumi_databricks/__init__.py +54 -46
  2. pulumi_databricks/_inputs.py +26079 -32918
  3. pulumi_databricks/account_federation_policy.py +44 -16
  4. pulumi_databricks/account_network_policy.py +56 -2
  5. pulumi_databricks/account_setting_v2.py +46 -83
  6. pulumi_databricks/alert_v2.py +168 -134
  7. pulumi_databricks/app.py +153 -0
  8. pulumi_databricks/apps_settings_custom_template.py +75 -52
  9. pulumi_databricks/budget_policy.py +6 -2
  10. pulumi_databricks/catalog.py +65 -23
  11. pulumi_databricks/cluster.py +47 -168
  12. pulumi_databricks/cluster_policy.py +120 -0
  13. pulumi_databricks/config/__init__.pyi +4 -0
  14. pulumi_databricks/config/vars.py +8 -0
  15. pulumi_databricks/data_quality_monitor.py +453 -0
  16. pulumi_databricks/data_quality_refresh.py +492 -0
  17. pulumi_databricks/database_database_catalog.py +9 -52
  18. pulumi_databricks/database_instance.py +271 -120
  19. pulumi_databricks/database_synced_database_table.py +239 -52
  20. pulumi_databricks/entitlements.py +21 -21
  21. pulumi_databricks/entity_tag_assignment.py +83 -52
  22. pulumi_databricks/external_location.py +131 -7
  23. pulumi_databricks/external_metadata.py +16 -59
  24. pulumi_databricks/feature_engineering_feature.py +480 -0
  25. pulumi_databricks/feature_engineering_materialized_feature.py +397 -0
  26. pulumi_databricks/file.py +2 -2
  27. pulumi_databricks/get_account_federation_policies.py +22 -3
  28. pulumi_databricks/get_account_federation_policy.py +12 -27
  29. pulumi_databricks/get_account_network_policies.py +4 -0
  30. pulumi_databricks/get_account_network_policy.py +9 -18
  31. pulumi_databricks/get_account_setting_v2.py +36 -141
  32. pulumi_databricks/get_alert_v2.py +41 -107
  33. pulumi_databricks/get_alerts_v2.py +29 -31
  34. pulumi_databricks/get_app.py +21 -5
  35. pulumi_databricks/get_apps.py +22 -6
  36. pulumi_databricks/get_apps_settings_custom_template.py +11 -55
  37. pulumi_databricks/get_apps_settings_custom_templates.py +25 -21
  38. pulumi_databricks/get_aws_assume_role_policy.py +14 -14
  39. pulumi_databricks/get_aws_bucket_policy.py +10 -10
  40. pulumi_databricks/get_aws_unity_catalog_assume_role_policy.py +10 -10
  41. pulumi_databricks/get_aws_unity_catalog_policy.py +10 -10
  42. pulumi_databricks/get_budget_policies.py +70 -6
  43. pulumi_databricks/get_budget_policy.py +9 -32
  44. pulumi_databricks/get_catalog.py +21 -4
  45. pulumi_databricks/get_catalogs.py +23 -4
  46. pulumi_databricks/get_cluster.py +75 -4
  47. pulumi_databricks/get_cluster_policy.py +23 -4
  48. pulumi_databricks/get_clusters.py +21 -4
  49. pulumi_databricks/get_current_config.py +4 -4
  50. pulumi_databricks/get_current_metastore.py +21 -4
  51. pulumi_databricks/get_dashboards.py +20 -4
  52. pulumi_databricks/get_data_quality_monitor.py +210 -0
  53. pulumi_databricks/get_data_quality_monitors.py +143 -0
  54. pulumi_databricks/get_data_quality_refresh.py +270 -0
  55. pulumi_databricks/get_data_quality_refreshes.py +207 -0
  56. pulumi_databricks/get_database_database_catalog.py +10 -41
  57. pulumi_databricks/get_database_database_catalogs.py +37 -18
  58. pulumi_databricks/get_database_instance.py +93 -99
  59. pulumi_databricks/get_database_instances.py +20 -16
  60. pulumi_databricks/get_database_synced_database_table.py +11 -49
  61. pulumi_databricks/get_database_synced_database_tables.py +42 -23
  62. pulumi_databricks/get_directory.py +20 -1
  63. pulumi_databricks/get_entity_tag_assignment.py +63 -30
  64. pulumi_databricks/get_entity_tag_assignments.py +69 -23
  65. pulumi_databricks/get_external_location.py +21 -4
  66. pulumi_databricks/get_external_locations.py +23 -4
  67. pulumi_databricks/get_external_metadata.py +18 -73
  68. pulumi_databricks/get_external_metadatas.py +22 -16
  69. pulumi_databricks/get_feature_engineering_feature.py +179 -0
  70. pulumi_databricks/get_feature_engineering_features.py +103 -0
  71. pulumi_databricks/get_feature_engineering_materialized_feature.py +180 -0
  72. pulumi_databricks/get_feature_engineering_materialized_features.py +123 -0
  73. pulumi_databricks/get_functions.py +16 -1
  74. pulumi_databricks/get_instance_profiles.py +21 -4
  75. pulumi_databricks/get_jobs.py +23 -4
  76. pulumi_databricks/get_materialized_features_feature_tag.py +7 -32
  77. pulumi_databricks/get_materialized_features_feature_tags.py +50 -18
  78. pulumi_databricks/get_metastore.py +6 -6
  79. pulumi_databricks/get_mlflow_experiment.py +18 -1
  80. pulumi_databricks/get_mlflow_model.py +18 -1
  81. pulumi_databricks/get_mlflow_models.py +23 -4
  82. pulumi_databricks/get_node_type.py +42 -5
  83. pulumi_databricks/get_notebook.py +20 -1
  84. pulumi_databricks/get_notification_destinations.py +17 -1
  85. pulumi_databricks/get_online_store.py +11 -38
  86. pulumi_databricks/get_online_stores.py +20 -18
  87. pulumi_databricks/get_pipelines.py +23 -4
  88. pulumi_databricks/get_policy_info.py +21 -109
  89. pulumi_databricks/get_policy_infos.py +50 -25
  90. pulumi_databricks/get_quality_monitor_v2.py +8 -21
  91. pulumi_databricks/get_quality_monitors_v2.py +23 -25
  92. pulumi_databricks/get_registered_model.py +19 -4
  93. pulumi_databricks/get_registered_model_versions.py +19 -4
  94. pulumi_databricks/get_rfa_access_request_destinations.py +126 -0
  95. pulumi_databricks/get_schema.py +18 -1
  96. pulumi_databricks/get_schemas.py +23 -4
  97. pulumi_databricks/get_service_principal_federation_policies.py +23 -4
  98. pulumi_databricks/get_service_principal_federation_policy.py +15 -24
  99. pulumi_databricks/get_service_principals.py +64 -0
  100. pulumi_databricks/get_serving_endpoints.py +19 -4
  101. pulumi_databricks/get_share.py +117 -18
  102. pulumi_databricks/get_shares.py +22 -3
  103. pulumi_databricks/get_spark_version.py +20 -1
  104. pulumi_databricks/get_sql_warehouse.py +16 -1
  105. pulumi_databricks/get_sql_warehouses.py +20 -1
  106. pulumi_databricks/get_storage_credential.py +18 -1
  107. pulumi_databricks/get_storage_credentials.py +23 -4
  108. pulumi_databricks/get_table.py +18 -1
  109. pulumi_databricks/get_tables.py +20 -1
  110. pulumi_databricks/get_tag_policies.py +55 -23
  111. pulumi_databricks/get_tag_policy.py +60 -40
  112. pulumi_databricks/get_views.py +20 -1
  113. pulumi_databricks/get_volume.py +18 -1
  114. pulumi_databricks/get_volumes.py +20 -1
  115. pulumi_databricks/get_workspace_network_option.py +8 -16
  116. pulumi_databricks/get_workspace_setting_v2.py +41 -163
  117. pulumi_databricks/get_zones.py +20 -1
  118. pulumi_databricks/git_credential.py +54 -7
  119. pulumi_databricks/group.py +21 -21
  120. pulumi_databricks/instance_profile.py +0 -182
  121. pulumi_databricks/job.py +47 -0
  122. pulumi_databricks/library.py +165 -0
  123. pulumi_databricks/materialized_features_feature_tag.py +9 -52
  124. pulumi_databricks/metastore.py +81 -7
  125. pulumi_databricks/metastore_data_access.py +48 -0
  126. pulumi_databricks/mlflow_webhook.py +4 -4
  127. pulumi_databricks/mws_credentials.py +10 -10
  128. pulumi_databricks/mws_customer_managed_keys.py +0 -288
  129. pulumi_databricks/mws_log_delivery.py +146 -0
  130. pulumi_databricks/mws_storage_configurations.py +16 -16
  131. pulumi_databricks/mws_vpc_endpoint.py +56 -56
  132. pulumi_databricks/mws_workspaces.py +146 -65
  133. pulumi_databricks/notebook.py +49 -0
  134. pulumi_databricks/online_store.py +9 -52
  135. pulumi_databricks/outputs.py +11885 -13474
  136. pulumi_databricks/permission_assignment.py +299 -8
  137. pulumi_databricks/permissions.py +6 -6
  138. pulumi_databricks/pipeline.py +37 -3
  139. pulumi_databricks/policy_info.py +9 -52
  140. pulumi_databricks/provider.py +36 -1
  141. pulumi_databricks/pulumi-plugin.json +1 -1
  142. pulumi_databricks/quality_monitor.py +47 -0
  143. pulumi_databricks/quality_monitor_v2.py +9 -52
  144. pulumi_databricks/recipient.py +74 -0
  145. pulumi_databricks/registered_model.py +308 -36
  146. pulumi_databricks/rfa_access_request_destinations.py +286 -0
  147. pulumi_databricks/schema.py +7 -7
  148. pulumi_databricks/service_principal_federation_policy.py +48 -16
  149. pulumi_databricks/share.py +71 -84
  150. pulumi_databricks/sql_table.py +42 -14
  151. pulumi_databricks/storage_credential.py +15 -2
  152. pulumi_databricks/tag_policy.py +111 -54
  153. pulumi_databricks/user.py +21 -21
  154. pulumi_databricks/volume.py +7 -7
  155. pulumi_databricks/workspace_binding.py +0 -48
  156. pulumi_databricks/workspace_network_option.py +6 -2
  157. pulumi_databricks/workspace_setting_v2.py +49 -133
  158. {pulumi_databricks-1.77.0a1761975834.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/METADATA +1 -1
  159. pulumi_databricks-1.79.0a1762839813.dist-info/RECORD +250 -0
  160. pulumi_databricks/clean_room_asset.py +0 -938
  161. pulumi_databricks/clean_room_auto_approval_rule.py +0 -473
  162. pulumi_databricks/clean_rooms_clean_room.py +0 -569
  163. pulumi_databricks/get_clean_room_asset.py +0 -416
  164. pulumi_databricks/get_clean_room_asset_revisions_clean_room_asset.py +0 -392
  165. pulumi_databricks/get_clean_room_asset_revisions_clean_room_assets.py +0 -121
  166. pulumi_databricks/get_clean_room_assets.py +0 -146
  167. pulumi_databricks/get_clean_room_auto_approval_rule.py +0 -217
  168. pulumi_databricks/get_clean_room_auto_approval_rules.py +0 -101
  169. pulumi_databricks/get_clean_rooms_clean_room.py +0 -289
  170. pulumi_databricks/get_clean_rooms_clean_rooms.py +0 -125
  171. pulumi_databricks/get_recipient_federation_policies.py +0 -101
  172. pulumi_databricks/get_recipient_federation_policy.py +0 -182
  173. pulumi_databricks/recipient_federation_policy.py +0 -393
  174. pulumi_databricks-1.77.0a1761975834.dist-info/RECORD +0 -250
  175. {pulumi_databricks-1.77.0a1761975834.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/WHEEL +0 -0
  176. {pulumi_databricks-1.77.0a1761975834.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/top_level.txt +0 -0
@@ -1,569 +0,0 @@
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
- from ._inputs import *
18
-
19
- __all__ = ['CleanRoomsCleanRoomArgs', 'CleanRoomsCleanRoom']
20
-
21
- @pulumi.input_type
22
- class CleanRoomsCleanRoomArgs:
23
- def __init__(__self__, *,
24
- comment: Optional[pulumi.Input[_builtins.str]] = None,
25
- name: Optional[pulumi.Input[_builtins.str]] = None,
26
- owner: Optional[pulumi.Input[_builtins.str]] = None,
27
- remote_detailed_info: Optional[pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs']] = None,
28
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None):
29
- """
30
- The set of arguments for constructing a CleanRoomsCleanRoom resource.
31
- :param pulumi.Input[_builtins.str] name: The name of the clean room.
32
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
33
- :param pulumi.Input[_builtins.str] owner: This is the Databricks username of the owner of the local clean room securable for permission management
34
- :param pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs'] remote_detailed_info: Central clean room details. During creation, users need to specify
35
- cloud_vendor, region, and collaborators.global_metastore_id.
36
- This field will not be filled in the ListCleanRooms call
37
- :param pulumi.Input[_builtins.str] workspace_id: Workspace ID of the resource
38
- """
39
- if comment is not None:
40
- pulumi.set(__self__, "comment", comment)
41
- if name is not None:
42
- pulumi.set(__self__, "name", name)
43
- if owner is not None:
44
- pulumi.set(__self__, "owner", owner)
45
- if remote_detailed_info is not None:
46
- pulumi.set(__self__, "remote_detailed_info", remote_detailed_info)
47
- if workspace_id is not None:
48
- pulumi.set(__self__, "workspace_id", workspace_id)
49
-
50
- @_builtins.property
51
- @pulumi.getter
52
- def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
53
- return pulumi.get(self, "comment")
54
-
55
- @comment.setter
56
- def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
57
- pulumi.set(self, "comment", value)
58
-
59
- @_builtins.property
60
- @pulumi.getter
61
- def name(self) -> Optional[pulumi.Input[_builtins.str]]:
62
- """
63
- The name of the clean room.
64
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
65
- """
66
- return pulumi.get(self, "name")
67
-
68
- @name.setter
69
- def name(self, value: Optional[pulumi.Input[_builtins.str]]):
70
- pulumi.set(self, "name", value)
71
-
72
- @_builtins.property
73
- @pulumi.getter
74
- def owner(self) -> Optional[pulumi.Input[_builtins.str]]:
75
- """
76
- This is the Databricks username of the owner of the local clean room securable for permission management
77
- """
78
- return pulumi.get(self, "owner")
79
-
80
- @owner.setter
81
- def owner(self, value: Optional[pulumi.Input[_builtins.str]]):
82
- pulumi.set(self, "owner", value)
83
-
84
- @_builtins.property
85
- @pulumi.getter(name="remoteDetailedInfo")
86
- def remote_detailed_info(self) -> Optional[pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs']]:
87
- """
88
- Central clean room details. During creation, users need to specify
89
- cloud_vendor, region, and collaborators.global_metastore_id.
90
- This field will not be filled in the ListCleanRooms call
91
- """
92
- return pulumi.get(self, "remote_detailed_info")
93
-
94
- @remote_detailed_info.setter
95
- def remote_detailed_info(self, value: Optional[pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs']]):
96
- pulumi.set(self, "remote_detailed_info", value)
97
-
98
- @_builtins.property
99
- @pulumi.getter(name="workspaceId")
100
- def workspace_id(self) -> Optional[pulumi.Input[_builtins.str]]:
101
- """
102
- Workspace ID of the resource
103
- """
104
- return pulumi.get(self, "workspace_id")
105
-
106
- @workspace_id.setter
107
- def workspace_id(self, value: Optional[pulumi.Input[_builtins.str]]):
108
- pulumi.set(self, "workspace_id", value)
109
-
110
-
111
- @pulumi.input_type
112
- class _CleanRoomsCleanRoomState:
113
- def __init__(__self__, *,
114
- access_restricted: Optional[pulumi.Input[_builtins.str]] = None,
115
- comment: Optional[pulumi.Input[_builtins.str]] = None,
116
- created_at: Optional[pulumi.Input[_builtins.int]] = None,
117
- local_collaborator_alias: Optional[pulumi.Input[_builtins.str]] = None,
118
- name: Optional[pulumi.Input[_builtins.str]] = None,
119
- output_catalog: Optional[pulumi.Input['CleanRoomsCleanRoomOutputCatalogArgs']] = None,
120
- owner: Optional[pulumi.Input[_builtins.str]] = None,
121
- remote_detailed_info: Optional[pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs']] = None,
122
- status: Optional[pulumi.Input[_builtins.str]] = None,
123
- updated_at: Optional[pulumi.Input[_builtins.int]] = None,
124
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None):
125
- """
126
- Input properties used for looking up and filtering CleanRoomsCleanRoom resources.
127
- :param pulumi.Input[_builtins.str] access_restricted: (string) - Whether clean room access is restricted due to [CSP](https://docs.databricks.com/en/security/privacy/security-profile.html). Possible values are: `CSP_MISMATCH`, `NO_RESTRICTION`
128
- :param pulumi.Input[_builtins.int] created_at: (integer) - When the clean room was created, in epoch milliseconds
129
- :param pulumi.Input[_builtins.str] local_collaborator_alias: (string) - The alias of the collaborator tied to the local clean room
130
- :param pulumi.Input[_builtins.str] name: The name of the clean room.
131
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
132
- :param pulumi.Input['CleanRoomsCleanRoomOutputCatalogArgs'] output_catalog: (CleanRoomOutputCatalog) - Output catalog of the clean room. It is an output only field. Output catalog is manipulated
133
- using the separate CreateCleanRoomOutputCatalog API
134
- :param pulumi.Input[_builtins.str] owner: This is the Databricks username of the owner of the local clean room securable for permission management
135
- :param pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs'] remote_detailed_info: Central clean room details. During creation, users need to specify
136
- cloud_vendor, region, and collaborators.global_metastore_id.
137
- This field will not be filled in the ListCleanRooms call
138
- :param pulumi.Input[_builtins.str] status: (string) - . Possible values are: `CREATED`, `NOT_CREATED`, `NOT_ELIGIBLE`
139
- :param pulumi.Input[_builtins.int] updated_at: (integer) - When the clean room was last updated, in epoch milliseconds
140
- :param pulumi.Input[_builtins.str] workspace_id: Workspace ID of the resource
141
- """
142
- if access_restricted is not None:
143
- pulumi.set(__self__, "access_restricted", access_restricted)
144
- if comment is not None:
145
- pulumi.set(__self__, "comment", comment)
146
- if created_at is not None:
147
- pulumi.set(__self__, "created_at", created_at)
148
- if local_collaborator_alias is not None:
149
- pulumi.set(__self__, "local_collaborator_alias", local_collaborator_alias)
150
- if name is not None:
151
- pulumi.set(__self__, "name", name)
152
- if output_catalog is not None:
153
- pulumi.set(__self__, "output_catalog", output_catalog)
154
- if owner is not None:
155
- pulumi.set(__self__, "owner", owner)
156
- if remote_detailed_info is not None:
157
- pulumi.set(__self__, "remote_detailed_info", remote_detailed_info)
158
- if status is not None:
159
- pulumi.set(__self__, "status", status)
160
- if updated_at is not None:
161
- pulumi.set(__self__, "updated_at", updated_at)
162
- if workspace_id is not None:
163
- pulumi.set(__self__, "workspace_id", workspace_id)
164
-
165
- @_builtins.property
166
- @pulumi.getter(name="accessRestricted")
167
- def access_restricted(self) -> Optional[pulumi.Input[_builtins.str]]:
168
- """
169
- (string) - Whether clean room access is restricted due to [CSP](https://docs.databricks.com/en/security/privacy/security-profile.html). Possible values are: `CSP_MISMATCH`, `NO_RESTRICTION`
170
- """
171
- return pulumi.get(self, "access_restricted")
172
-
173
- @access_restricted.setter
174
- def access_restricted(self, value: Optional[pulumi.Input[_builtins.str]]):
175
- pulumi.set(self, "access_restricted", value)
176
-
177
- @_builtins.property
178
- @pulumi.getter
179
- def comment(self) -> Optional[pulumi.Input[_builtins.str]]:
180
- return pulumi.get(self, "comment")
181
-
182
- @comment.setter
183
- def comment(self, value: Optional[pulumi.Input[_builtins.str]]):
184
- pulumi.set(self, "comment", value)
185
-
186
- @_builtins.property
187
- @pulumi.getter(name="createdAt")
188
- def created_at(self) -> Optional[pulumi.Input[_builtins.int]]:
189
- """
190
- (integer) - When the clean room was created, in epoch milliseconds
191
- """
192
- return pulumi.get(self, "created_at")
193
-
194
- @created_at.setter
195
- def created_at(self, value: Optional[pulumi.Input[_builtins.int]]):
196
- pulumi.set(self, "created_at", value)
197
-
198
- @_builtins.property
199
- @pulumi.getter(name="localCollaboratorAlias")
200
- def local_collaborator_alias(self) -> Optional[pulumi.Input[_builtins.str]]:
201
- """
202
- (string) - The alias of the collaborator tied to the local clean room
203
- """
204
- return pulumi.get(self, "local_collaborator_alias")
205
-
206
- @local_collaborator_alias.setter
207
- def local_collaborator_alias(self, value: Optional[pulumi.Input[_builtins.str]]):
208
- pulumi.set(self, "local_collaborator_alias", value)
209
-
210
- @_builtins.property
211
- @pulumi.getter
212
- def name(self) -> Optional[pulumi.Input[_builtins.str]]:
213
- """
214
- The name of the clean room.
215
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
216
- """
217
- return pulumi.get(self, "name")
218
-
219
- @name.setter
220
- def name(self, value: Optional[pulumi.Input[_builtins.str]]):
221
- pulumi.set(self, "name", value)
222
-
223
- @_builtins.property
224
- @pulumi.getter(name="outputCatalog")
225
- def output_catalog(self) -> Optional[pulumi.Input['CleanRoomsCleanRoomOutputCatalogArgs']]:
226
- """
227
- (CleanRoomOutputCatalog) - Output catalog of the clean room. It is an output only field. Output catalog is manipulated
228
- using the separate CreateCleanRoomOutputCatalog API
229
- """
230
- return pulumi.get(self, "output_catalog")
231
-
232
- @output_catalog.setter
233
- def output_catalog(self, value: Optional[pulumi.Input['CleanRoomsCleanRoomOutputCatalogArgs']]):
234
- pulumi.set(self, "output_catalog", value)
235
-
236
- @_builtins.property
237
- @pulumi.getter
238
- def owner(self) -> Optional[pulumi.Input[_builtins.str]]:
239
- """
240
- This is the Databricks username of the owner of the local clean room securable for permission management
241
- """
242
- return pulumi.get(self, "owner")
243
-
244
- @owner.setter
245
- def owner(self, value: Optional[pulumi.Input[_builtins.str]]):
246
- pulumi.set(self, "owner", value)
247
-
248
- @_builtins.property
249
- @pulumi.getter(name="remoteDetailedInfo")
250
- def remote_detailed_info(self) -> Optional[pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs']]:
251
- """
252
- Central clean room details. During creation, users need to specify
253
- cloud_vendor, region, and collaborators.global_metastore_id.
254
- This field will not be filled in the ListCleanRooms call
255
- """
256
- return pulumi.get(self, "remote_detailed_info")
257
-
258
- @remote_detailed_info.setter
259
- def remote_detailed_info(self, value: Optional[pulumi.Input['CleanRoomsCleanRoomRemoteDetailedInfoArgs']]):
260
- pulumi.set(self, "remote_detailed_info", value)
261
-
262
- @_builtins.property
263
- @pulumi.getter
264
- def status(self) -> Optional[pulumi.Input[_builtins.str]]:
265
- """
266
- (string) - . Possible values are: `CREATED`, `NOT_CREATED`, `NOT_ELIGIBLE`
267
- """
268
- return pulumi.get(self, "status")
269
-
270
- @status.setter
271
- def status(self, value: Optional[pulumi.Input[_builtins.str]]):
272
- pulumi.set(self, "status", value)
273
-
274
- @_builtins.property
275
- @pulumi.getter(name="updatedAt")
276
- def updated_at(self) -> Optional[pulumi.Input[_builtins.int]]:
277
- """
278
- (integer) - When the clean room was last updated, in epoch milliseconds
279
- """
280
- return pulumi.get(self, "updated_at")
281
-
282
- @updated_at.setter
283
- def updated_at(self, value: Optional[pulumi.Input[_builtins.int]]):
284
- pulumi.set(self, "updated_at", value)
285
-
286
- @_builtins.property
287
- @pulumi.getter(name="workspaceId")
288
- def workspace_id(self) -> Optional[pulumi.Input[_builtins.str]]:
289
- """
290
- Workspace ID of the resource
291
- """
292
- return pulumi.get(self, "workspace_id")
293
-
294
- @workspace_id.setter
295
- def workspace_id(self, value: Optional[pulumi.Input[_builtins.str]]):
296
- pulumi.set(self, "workspace_id", value)
297
-
298
-
299
- @pulumi.type_token("databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom")
300
- class CleanRoomsCleanRoom(pulumi.CustomResource):
301
- @overload
302
- def __init__(__self__,
303
- resource_name: str,
304
- opts: Optional[pulumi.ResourceOptions] = None,
305
- comment: Optional[pulumi.Input[_builtins.str]] = None,
306
- name: Optional[pulumi.Input[_builtins.str]] = None,
307
- owner: Optional[pulumi.Input[_builtins.str]] = None,
308
- remote_detailed_info: Optional[pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']]] = None,
309
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None,
310
- __props__=None):
311
- """
312
- A Clean Room is a secure environment for data collaboration that enables multiple organizations to analyze their data together while maintaining privacy and security. Clean Rooms provide a controlled environment where data can be shared and analyzed without exposing the underlying raw data.
313
-
314
- ## Example Usage
315
-
316
- # Example: Clean Room Resource
317
-
318
- ## Import
319
-
320
- As of Pulumi v1.5, resources can be imported through configuration.
321
-
322
- hcl
323
-
324
- import {
325
-
326
- id = "name"
327
-
328
- to = databricks_clean_rooms_clean_room.this
329
-
330
- }
331
-
332
- If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
333
-
334
- ```sh
335
- $ pulumi import databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom databricks_clean_rooms_clean_room "name"
336
- ```
337
-
338
- :param str resource_name: The name of the resource.
339
- :param pulumi.ResourceOptions opts: Options for the resource.
340
- :param pulumi.Input[_builtins.str] name: The name of the clean room.
341
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
342
- :param pulumi.Input[_builtins.str] owner: This is the Databricks username of the owner of the local clean room securable for permission management
343
- :param pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']] remote_detailed_info: Central clean room details. During creation, users need to specify
344
- cloud_vendor, region, and collaborators.global_metastore_id.
345
- This field will not be filled in the ListCleanRooms call
346
- :param pulumi.Input[_builtins.str] workspace_id: Workspace ID of the resource
347
- """
348
- ...
349
- @overload
350
- def __init__(__self__,
351
- resource_name: str,
352
- args: Optional[CleanRoomsCleanRoomArgs] = None,
353
- opts: Optional[pulumi.ResourceOptions] = None):
354
- """
355
- A Clean Room is a secure environment for data collaboration that enables multiple organizations to analyze their data together while maintaining privacy and security. Clean Rooms provide a controlled environment where data can be shared and analyzed without exposing the underlying raw data.
356
-
357
- ## Example Usage
358
-
359
- # Example: Clean Room Resource
360
-
361
- ## Import
362
-
363
- As of Pulumi v1.5, resources can be imported through configuration.
364
-
365
- hcl
366
-
367
- import {
368
-
369
- id = "name"
370
-
371
- to = databricks_clean_rooms_clean_room.this
372
-
373
- }
374
-
375
- If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
376
-
377
- ```sh
378
- $ pulumi import databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom databricks_clean_rooms_clean_room "name"
379
- ```
380
-
381
- :param str resource_name: The name of the resource.
382
- :param CleanRoomsCleanRoomArgs args: The arguments to use to populate this resource's properties.
383
- :param pulumi.ResourceOptions opts: Options for the resource.
384
- """
385
- ...
386
- def __init__(__self__, resource_name: str, *args, **kwargs):
387
- resource_args, opts = _utilities.get_resource_args_opts(CleanRoomsCleanRoomArgs, pulumi.ResourceOptions, *args, **kwargs)
388
- if resource_args is not None:
389
- __self__._internal_init(resource_name, opts, **resource_args.__dict__)
390
- else:
391
- __self__._internal_init(resource_name, *args, **kwargs)
392
-
393
- def _internal_init(__self__,
394
- resource_name: str,
395
- opts: Optional[pulumi.ResourceOptions] = None,
396
- comment: Optional[pulumi.Input[_builtins.str]] = None,
397
- name: Optional[pulumi.Input[_builtins.str]] = None,
398
- owner: Optional[pulumi.Input[_builtins.str]] = None,
399
- remote_detailed_info: Optional[pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']]] = None,
400
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None,
401
- __props__=None):
402
- opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
403
- if not isinstance(opts, pulumi.ResourceOptions):
404
- raise TypeError('Expected resource options to be a ResourceOptions instance')
405
- if opts.id is None:
406
- if __props__ is not None:
407
- raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
408
- __props__ = CleanRoomsCleanRoomArgs.__new__(CleanRoomsCleanRoomArgs)
409
-
410
- __props__.__dict__["comment"] = comment
411
- __props__.__dict__["name"] = name
412
- __props__.__dict__["owner"] = owner
413
- __props__.__dict__["remote_detailed_info"] = remote_detailed_info
414
- __props__.__dict__["workspace_id"] = workspace_id
415
- __props__.__dict__["access_restricted"] = None
416
- __props__.__dict__["created_at"] = None
417
- __props__.__dict__["local_collaborator_alias"] = None
418
- __props__.__dict__["output_catalog"] = None
419
- __props__.__dict__["status"] = None
420
- __props__.__dict__["updated_at"] = None
421
- super(CleanRoomsCleanRoom, __self__).__init__(
422
- 'databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom',
423
- resource_name,
424
- __props__,
425
- opts)
426
-
427
- @staticmethod
428
- def get(resource_name: str,
429
- id: pulumi.Input[str],
430
- opts: Optional[pulumi.ResourceOptions] = None,
431
- access_restricted: Optional[pulumi.Input[_builtins.str]] = None,
432
- comment: Optional[pulumi.Input[_builtins.str]] = None,
433
- created_at: Optional[pulumi.Input[_builtins.int]] = None,
434
- local_collaborator_alias: Optional[pulumi.Input[_builtins.str]] = None,
435
- name: Optional[pulumi.Input[_builtins.str]] = None,
436
- output_catalog: Optional[pulumi.Input[Union['CleanRoomsCleanRoomOutputCatalogArgs', 'CleanRoomsCleanRoomOutputCatalogArgsDict']]] = None,
437
- owner: Optional[pulumi.Input[_builtins.str]] = None,
438
- remote_detailed_info: Optional[pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']]] = None,
439
- status: Optional[pulumi.Input[_builtins.str]] = None,
440
- updated_at: Optional[pulumi.Input[_builtins.int]] = None,
441
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'CleanRoomsCleanRoom':
442
- """
443
- Get an existing CleanRoomsCleanRoom resource's state with the given name, id, and optional extra
444
- properties used to qualify the lookup.
445
-
446
- :param str resource_name: The unique name of the resulting resource.
447
- :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
448
- :param pulumi.ResourceOptions opts: Options for the resource.
449
- :param pulumi.Input[_builtins.str] access_restricted: (string) - Whether clean room access is restricted due to [CSP](https://docs.databricks.com/en/security/privacy/security-profile.html). Possible values are: `CSP_MISMATCH`, `NO_RESTRICTION`
450
- :param pulumi.Input[_builtins.int] created_at: (integer) - When the clean room was created, in epoch milliseconds
451
- :param pulumi.Input[_builtins.str] local_collaborator_alias: (string) - The alias of the collaborator tied to the local clean room
452
- :param pulumi.Input[_builtins.str] name: The name of the clean room.
453
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
454
- :param pulumi.Input[Union['CleanRoomsCleanRoomOutputCatalogArgs', 'CleanRoomsCleanRoomOutputCatalogArgsDict']] output_catalog: (CleanRoomOutputCatalog) - Output catalog of the clean room. It is an output only field. Output catalog is manipulated
455
- using the separate CreateCleanRoomOutputCatalog API
456
- :param pulumi.Input[_builtins.str] owner: This is the Databricks username of the owner of the local clean room securable for permission management
457
- :param pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']] remote_detailed_info: Central clean room details. During creation, users need to specify
458
- cloud_vendor, region, and collaborators.global_metastore_id.
459
- This field will not be filled in the ListCleanRooms call
460
- :param pulumi.Input[_builtins.str] status: (string) - . Possible values are: `CREATED`, `NOT_CREATED`, `NOT_ELIGIBLE`
461
- :param pulumi.Input[_builtins.int] updated_at: (integer) - When the clean room was last updated, in epoch milliseconds
462
- :param pulumi.Input[_builtins.str] workspace_id: Workspace ID of the resource
463
- """
464
- opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
465
-
466
- __props__ = _CleanRoomsCleanRoomState.__new__(_CleanRoomsCleanRoomState)
467
-
468
- __props__.__dict__["access_restricted"] = access_restricted
469
- __props__.__dict__["comment"] = comment
470
- __props__.__dict__["created_at"] = created_at
471
- __props__.__dict__["local_collaborator_alias"] = local_collaborator_alias
472
- __props__.__dict__["name"] = name
473
- __props__.__dict__["output_catalog"] = output_catalog
474
- __props__.__dict__["owner"] = owner
475
- __props__.__dict__["remote_detailed_info"] = remote_detailed_info
476
- __props__.__dict__["status"] = status
477
- __props__.__dict__["updated_at"] = updated_at
478
- __props__.__dict__["workspace_id"] = workspace_id
479
- return CleanRoomsCleanRoom(resource_name, opts=opts, __props__=__props__)
480
-
481
- @_builtins.property
482
- @pulumi.getter(name="accessRestricted")
483
- def access_restricted(self) -> pulumi.Output[_builtins.str]:
484
- """
485
- (string) - Whether clean room access is restricted due to [CSP](https://docs.databricks.com/en/security/privacy/security-profile.html). Possible values are: `CSP_MISMATCH`, `NO_RESTRICTION`
486
- """
487
- return pulumi.get(self, "access_restricted")
488
-
489
- @_builtins.property
490
- @pulumi.getter
491
- def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
492
- return pulumi.get(self, "comment")
493
-
494
- @_builtins.property
495
- @pulumi.getter(name="createdAt")
496
- def created_at(self) -> pulumi.Output[_builtins.int]:
497
- """
498
- (integer) - When the clean room was created, in epoch milliseconds
499
- """
500
- return pulumi.get(self, "created_at")
501
-
502
- @_builtins.property
503
- @pulumi.getter(name="localCollaboratorAlias")
504
- def local_collaborator_alias(self) -> pulumi.Output[_builtins.str]:
505
- """
506
- (string) - The alias of the collaborator tied to the local clean room
507
- """
508
- return pulumi.get(self, "local_collaborator_alias")
509
-
510
- @_builtins.property
511
- @pulumi.getter
512
- def name(self) -> pulumi.Output[_builtins.str]:
513
- """
514
- The name of the clean room.
515
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
516
- """
517
- return pulumi.get(self, "name")
518
-
519
- @_builtins.property
520
- @pulumi.getter(name="outputCatalog")
521
- def output_catalog(self) -> pulumi.Output['outputs.CleanRoomsCleanRoomOutputCatalog']:
522
- """
523
- (CleanRoomOutputCatalog) - Output catalog of the clean room. It is an output only field. Output catalog is manipulated
524
- using the separate CreateCleanRoomOutputCatalog API
525
- """
526
- return pulumi.get(self, "output_catalog")
527
-
528
- @_builtins.property
529
- @pulumi.getter
530
- def owner(self) -> pulumi.Output[Optional[_builtins.str]]:
531
- """
532
- This is the Databricks username of the owner of the local clean room securable for permission management
533
- """
534
- return pulumi.get(self, "owner")
535
-
536
- @_builtins.property
537
- @pulumi.getter(name="remoteDetailedInfo")
538
- def remote_detailed_info(self) -> pulumi.Output[Optional['outputs.CleanRoomsCleanRoomRemoteDetailedInfo']]:
539
- """
540
- Central clean room details. During creation, users need to specify
541
- cloud_vendor, region, and collaborators.global_metastore_id.
542
- This field will not be filled in the ListCleanRooms call
543
- """
544
- return pulumi.get(self, "remote_detailed_info")
545
-
546
- @_builtins.property
547
- @pulumi.getter
548
- def status(self) -> pulumi.Output[_builtins.str]:
549
- """
550
- (string) - . Possible values are: `CREATED`, `NOT_CREATED`, `NOT_ELIGIBLE`
551
- """
552
- return pulumi.get(self, "status")
553
-
554
- @_builtins.property
555
- @pulumi.getter(name="updatedAt")
556
- def updated_at(self) -> pulumi.Output[_builtins.int]:
557
- """
558
- (integer) - When the clean room was last updated, in epoch milliseconds
559
- """
560
- return pulumi.get(self, "updated_at")
561
-
562
- @_builtins.property
563
- @pulumi.getter(name="workspaceId")
564
- def workspace_id(self) -> pulumi.Output[Optional[_builtins.str]]:
565
- """
566
- Workspace ID of the resource
567
- """
568
- return pulumi.get(self, "workspace_id")
569
-