pulumi-databricks 1.76.0a1757569246__py3-none-any.whl → 1.79.0a1764800092__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.

Potentially problematic release.


This version of pulumi-databricks might be problematic. Click here for more details.

Files changed (177) hide show
  1. pulumi_databricks/__init__.py +54 -46
  2. pulumi_databricks/_inputs.py +19547 -26284
  3. pulumi_databricks/account_federation_policy.py +48 -16
  4. pulumi_databricks/account_network_policy.py +60 -2
  5. pulumi_databricks/account_setting_v2.py +46 -83
  6. pulumi_databricks/alert_v2.py +174 -134
  7. pulumi_databricks/app.py +175 -0
  8. pulumi_databricks/apps_settings_custom_template.py +127 -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 +568 -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 +265 -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 +20 -27
  29. pulumi_databricks/get_account_network_policies.py +4 -0
  30. pulumi_databricks/get_account_network_policy.py +17 -18
  31. pulumi_databricks/get_account_setting_v2.py +36 -141
  32. pulumi_databricks/get_alert_v2.py +47 -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 +56 -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 +23 -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 +11558 -13079
  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 +354 -0
  147. pulumi_databricks/schema.py +7 -7
  148. pulumi_databricks/service_principal_federation_policy.py +52 -16
  149. pulumi_databricks/share.py +71 -84
  150. pulumi_databricks/sql_endpoint.py +47 -0
  151. pulumi_databricks/sql_table.py +42 -14
  152. pulumi_databricks/storage_credential.py +15 -2
  153. pulumi_databricks/tag_policy.py +111 -54
  154. pulumi_databricks/user.py +21 -21
  155. pulumi_databricks/volume.py +7 -7
  156. pulumi_databricks/workspace_binding.py +0 -48
  157. pulumi_databricks/workspace_network_option.py +6 -2
  158. pulumi_databricks/workspace_setting_v2.py +49 -133
  159. {pulumi_databricks-1.76.0a1757569246.dist-info → pulumi_databricks-1.79.0a1764800092.dist-info}/METADATA +1 -1
  160. pulumi_databricks-1.79.0a1764800092.dist-info/RECORD +250 -0
  161. pulumi_databricks/clean_room_asset.py +0 -938
  162. pulumi_databricks/clean_room_auto_approval_rule.py +0 -473
  163. pulumi_databricks/clean_rooms_clean_room.py +0 -565
  164. pulumi_databricks/get_clean_room_asset.py +0 -416
  165. pulumi_databricks/get_clean_room_asset_revisions_clean_room_asset.py +0 -392
  166. pulumi_databricks/get_clean_room_asset_revisions_clean_room_assets.py +0 -121
  167. pulumi_databricks/get_clean_room_assets.py +0 -146
  168. pulumi_databricks/get_clean_room_auto_approval_rule.py +0 -217
  169. pulumi_databricks/get_clean_room_auto_approval_rules.py +0 -101
  170. pulumi_databricks/get_clean_rooms_clean_room.py +0 -289
  171. pulumi_databricks/get_clean_rooms_clean_rooms.py +0 -125
  172. pulumi_databricks/get_recipient_federation_policies.py +0 -101
  173. pulumi_databricks/get_recipient_federation_policy.py +0 -182
  174. pulumi_databricks/recipient_federation_policy.py +0 -393
  175. pulumi_databricks-1.76.0a1757569246.dist-info/RECORD +0 -250
  176. {pulumi_databricks-1.76.0a1757569246.dist-info → pulumi_databricks-1.79.0a1764800092.dist-info}/WHEEL +0 -0
  177. {pulumi_databricks-1.76.0a1757569246.dist-info → pulumi_databricks-1.79.0a1764800092.dist-info}/top_level.txt +0 -0
@@ -1,565 +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
- ## Import
317
-
318
- As of Pulumi v1.5, resources can be imported through configuration.
319
-
320
- hcl
321
-
322
- import {
323
-
324
- id = "name"
325
-
326
- to = databricks_clean_rooms_clean_room.this
327
-
328
- }
329
-
330
- If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
331
-
332
- ```sh
333
- $ pulumi import databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom databricks_clean_rooms_clean_room "name"
334
- ```
335
-
336
- :param str resource_name: The name of the resource.
337
- :param pulumi.ResourceOptions opts: Options for the resource.
338
- :param pulumi.Input[_builtins.str] name: The name of the clean room.
339
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
340
- :param pulumi.Input[_builtins.str] owner: This is the Databricks username of the owner of the local clean room securable for permission management
341
- :param pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']] remote_detailed_info: Central clean room details. During creation, users need to specify
342
- cloud_vendor, region, and collaborators.global_metastore_id.
343
- This field will not be filled in the ListCleanRooms call
344
- :param pulumi.Input[_builtins.str] workspace_id: Workspace ID of the resource
345
- """
346
- ...
347
- @overload
348
- def __init__(__self__,
349
- resource_name: str,
350
- args: Optional[CleanRoomsCleanRoomArgs] = None,
351
- opts: Optional[pulumi.ResourceOptions] = None):
352
- """
353
- 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.
354
-
355
- ## Example Usage
356
-
357
- ## Import
358
-
359
- As of Pulumi v1.5, resources can be imported through configuration.
360
-
361
- hcl
362
-
363
- import {
364
-
365
- id = "name"
366
-
367
- to = databricks_clean_rooms_clean_room.this
368
-
369
- }
370
-
371
- If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
372
-
373
- ```sh
374
- $ pulumi import databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom databricks_clean_rooms_clean_room "name"
375
- ```
376
-
377
- :param str resource_name: The name of the resource.
378
- :param CleanRoomsCleanRoomArgs args: The arguments to use to populate this resource's properties.
379
- :param pulumi.ResourceOptions opts: Options for the resource.
380
- """
381
- ...
382
- def __init__(__self__, resource_name: str, *args, **kwargs):
383
- resource_args, opts = _utilities.get_resource_args_opts(CleanRoomsCleanRoomArgs, pulumi.ResourceOptions, *args, **kwargs)
384
- if resource_args is not None:
385
- __self__._internal_init(resource_name, opts, **resource_args.__dict__)
386
- else:
387
- __self__._internal_init(resource_name, *args, **kwargs)
388
-
389
- def _internal_init(__self__,
390
- resource_name: str,
391
- opts: Optional[pulumi.ResourceOptions] = None,
392
- comment: Optional[pulumi.Input[_builtins.str]] = None,
393
- name: Optional[pulumi.Input[_builtins.str]] = None,
394
- owner: Optional[pulumi.Input[_builtins.str]] = None,
395
- remote_detailed_info: Optional[pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']]] = None,
396
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None,
397
- __props__=None):
398
- opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
399
- if not isinstance(opts, pulumi.ResourceOptions):
400
- raise TypeError('Expected resource options to be a ResourceOptions instance')
401
- if opts.id is None:
402
- if __props__ is not None:
403
- raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
404
- __props__ = CleanRoomsCleanRoomArgs.__new__(CleanRoomsCleanRoomArgs)
405
-
406
- __props__.__dict__["comment"] = comment
407
- __props__.__dict__["name"] = name
408
- __props__.__dict__["owner"] = owner
409
- __props__.__dict__["remote_detailed_info"] = remote_detailed_info
410
- __props__.__dict__["workspace_id"] = workspace_id
411
- __props__.__dict__["access_restricted"] = None
412
- __props__.__dict__["created_at"] = None
413
- __props__.__dict__["local_collaborator_alias"] = None
414
- __props__.__dict__["output_catalog"] = None
415
- __props__.__dict__["status"] = None
416
- __props__.__dict__["updated_at"] = None
417
- super(CleanRoomsCleanRoom, __self__).__init__(
418
- 'databricks:index/cleanRoomsCleanRoom:CleanRoomsCleanRoom',
419
- resource_name,
420
- __props__,
421
- opts)
422
-
423
- @staticmethod
424
- def get(resource_name: str,
425
- id: pulumi.Input[str],
426
- opts: Optional[pulumi.ResourceOptions] = None,
427
- access_restricted: Optional[pulumi.Input[_builtins.str]] = None,
428
- comment: Optional[pulumi.Input[_builtins.str]] = None,
429
- created_at: Optional[pulumi.Input[_builtins.int]] = None,
430
- local_collaborator_alias: Optional[pulumi.Input[_builtins.str]] = None,
431
- name: Optional[pulumi.Input[_builtins.str]] = None,
432
- output_catalog: Optional[pulumi.Input[Union['CleanRoomsCleanRoomOutputCatalogArgs', 'CleanRoomsCleanRoomOutputCatalogArgsDict']]] = None,
433
- owner: Optional[pulumi.Input[_builtins.str]] = None,
434
- remote_detailed_info: Optional[pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']]] = None,
435
- status: Optional[pulumi.Input[_builtins.str]] = None,
436
- updated_at: Optional[pulumi.Input[_builtins.int]] = None,
437
- workspace_id: Optional[pulumi.Input[_builtins.str]] = None) -> 'CleanRoomsCleanRoom':
438
- """
439
- Get an existing CleanRoomsCleanRoom resource's state with the given name, id, and optional extra
440
- properties used to qualify the lookup.
441
-
442
- :param str resource_name: The unique name of the resulting resource.
443
- :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
444
- :param pulumi.ResourceOptions opts: Options for the resource.
445
- :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`
446
- :param pulumi.Input[_builtins.int] created_at: (integer) - When the clean room was created, in epoch milliseconds
447
- :param pulumi.Input[_builtins.str] local_collaborator_alias: (string) - The alias of the collaborator tied to the local clean room
448
- :param pulumi.Input[_builtins.str] name: The name of the clean room.
449
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
450
- :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
451
- using the separate CreateCleanRoomOutputCatalog API
452
- :param pulumi.Input[_builtins.str] owner: This is the Databricks username of the owner of the local clean room securable for permission management
453
- :param pulumi.Input[Union['CleanRoomsCleanRoomRemoteDetailedInfoArgs', 'CleanRoomsCleanRoomRemoteDetailedInfoArgsDict']] remote_detailed_info: Central clean room details. During creation, users need to specify
454
- cloud_vendor, region, and collaborators.global_metastore_id.
455
- This field will not be filled in the ListCleanRooms call
456
- :param pulumi.Input[_builtins.str] status: (string) - . Possible values are: `CREATED`, `NOT_CREATED`, `NOT_ELIGIBLE`
457
- :param pulumi.Input[_builtins.int] updated_at: (integer) - When the clean room was last updated, in epoch milliseconds
458
- :param pulumi.Input[_builtins.str] workspace_id: Workspace ID of the resource
459
- """
460
- opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
461
-
462
- __props__ = _CleanRoomsCleanRoomState.__new__(_CleanRoomsCleanRoomState)
463
-
464
- __props__.__dict__["access_restricted"] = access_restricted
465
- __props__.__dict__["comment"] = comment
466
- __props__.__dict__["created_at"] = created_at
467
- __props__.__dict__["local_collaborator_alias"] = local_collaborator_alias
468
- __props__.__dict__["name"] = name
469
- __props__.__dict__["output_catalog"] = output_catalog
470
- __props__.__dict__["owner"] = owner
471
- __props__.__dict__["remote_detailed_info"] = remote_detailed_info
472
- __props__.__dict__["status"] = status
473
- __props__.__dict__["updated_at"] = updated_at
474
- __props__.__dict__["workspace_id"] = workspace_id
475
- return CleanRoomsCleanRoom(resource_name, opts=opts, __props__=__props__)
476
-
477
- @_builtins.property
478
- @pulumi.getter(name="accessRestricted")
479
- def access_restricted(self) -> pulumi.Output[_builtins.str]:
480
- """
481
- (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`
482
- """
483
- return pulumi.get(self, "access_restricted")
484
-
485
- @_builtins.property
486
- @pulumi.getter
487
- def comment(self) -> pulumi.Output[Optional[_builtins.str]]:
488
- return pulumi.get(self, "comment")
489
-
490
- @_builtins.property
491
- @pulumi.getter(name="createdAt")
492
- def created_at(self) -> pulumi.Output[_builtins.int]:
493
- """
494
- (integer) - When the clean room was created, in epoch milliseconds
495
- """
496
- return pulumi.get(self, "created_at")
497
-
498
- @_builtins.property
499
- @pulumi.getter(name="localCollaboratorAlias")
500
- def local_collaborator_alias(self) -> pulumi.Output[_builtins.str]:
501
- """
502
- (string) - The alias of the collaborator tied to the local clean room
503
- """
504
- return pulumi.get(self, "local_collaborator_alias")
505
-
506
- @_builtins.property
507
- @pulumi.getter
508
- def name(self) -> pulumi.Output[_builtins.str]:
509
- """
510
- The name of the clean room.
511
- It should follow [UC securable naming requirements](https://docs.databricks.com/en/data-governance/unity-catalog/index.html#securable-object-naming-requirements)
512
- """
513
- return pulumi.get(self, "name")
514
-
515
- @_builtins.property
516
- @pulumi.getter(name="outputCatalog")
517
- def output_catalog(self) -> pulumi.Output['outputs.CleanRoomsCleanRoomOutputCatalog']:
518
- """
519
- (CleanRoomOutputCatalog) - Output catalog of the clean room. It is an output only field. Output catalog is manipulated
520
- using the separate CreateCleanRoomOutputCatalog API
521
- """
522
- return pulumi.get(self, "output_catalog")
523
-
524
- @_builtins.property
525
- @pulumi.getter
526
- def owner(self) -> pulumi.Output[Optional[_builtins.str]]:
527
- """
528
- This is the Databricks username of the owner of the local clean room securable for permission management
529
- """
530
- return pulumi.get(self, "owner")
531
-
532
- @_builtins.property
533
- @pulumi.getter(name="remoteDetailedInfo")
534
- def remote_detailed_info(self) -> pulumi.Output[Optional['outputs.CleanRoomsCleanRoomRemoteDetailedInfo']]:
535
- """
536
- Central clean room details. During creation, users need to specify
537
- cloud_vendor, region, and collaborators.global_metastore_id.
538
- This field will not be filled in the ListCleanRooms call
539
- """
540
- return pulumi.get(self, "remote_detailed_info")
541
-
542
- @_builtins.property
543
- @pulumi.getter
544
- def status(self) -> pulumi.Output[_builtins.str]:
545
- """
546
- (string) - . Possible values are: `CREATED`, `NOT_CREATED`, `NOT_ELIGIBLE`
547
- """
548
- return pulumi.get(self, "status")
549
-
550
- @_builtins.property
551
- @pulumi.getter(name="updatedAt")
552
- def updated_at(self) -> pulumi.Output[_builtins.int]:
553
- """
554
- (integer) - When the clean room was last updated, in epoch milliseconds
555
- """
556
- return pulumi.get(self, "updated_at")
557
-
558
- @_builtins.property
559
- @pulumi.getter(name="workspaceId")
560
- def workspace_id(self) -> pulumi.Output[Optional[_builtins.str]]:
561
- """
562
- Workspace ID of the resource
563
- """
564
- return pulumi.get(self, "workspace_id")
565
-