pulumi-databricks 1.77.0a1760375482__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.0a1760375482.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.0a1760375482.dist-info/RECORD +0 -250
  175. {pulumi_databricks-1.77.0a1760375482.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/WHEEL +0 -0
  176. {pulumi_databricks-1.77.0a1760375482.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,286 @@
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__ = ['RfaAccessRequestDestinationsArgs', 'RfaAccessRequestDestinations']
20
+
21
+ @pulumi.input_type
22
+ class RfaAccessRequestDestinationsArgs:
23
+ def __init__(__self__, *,
24
+ destinations: pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]],
25
+ securable: pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']):
26
+ """
27
+ The set of arguments for constructing a RfaAccessRequestDestinations resource.
28
+ :param pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]] destinations: The access request destinations for the securable
29
+ :param pulumi.Input['RfaAccessRequestDestinationsSecurableArgs'] securable: The securable for which the access request destinations are being retrieved
30
+ """
31
+ pulumi.set(__self__, "destinations", destinations)
32
+ pulumi.set(__self__, "securable", securable)
33
+
34
+ @_builtins.property
35
+ @pulumi.getter
36
+ def destinations(self) -> pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]:
37
+ """
38
+ The access request destinations for the securable
39
+ """
40
+ return pulumi.get(self, "destinations")
41
+
42
+ @destinations.setter
43
+ def destinations(self, value: pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]):
44
+ pulumi.set(self, "destinations", value)
45
+
46
+ @_builtins.property
47
+ @pulumi.getter
48
+ def securable(self) -> pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']:
49
+ """
50
+ The securable for which the access request destinations are being retrieved
51
+ """
52
+ return pulumi.get(self, "securable")
53
+
54
+ @securable.setter
55
+ def securable(self, value: pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']):
56
+ pulumi.set(self, "securable", value)
57
+
58
+
59
+ @pulumi.input_type
60
+ class _RfaAccessRequestDestinationsState:
61
+ def __init__(__self__, *,
62
+ are_any_destinations_hidden: Optional[pulumi.Input[_builtins.bool]] = None,
63
+ destinations: Optional[pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]] = None,
64
+ securable: Optional[pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']] = None):
65
+ """
66
+ Input properties used for looking up and filtering RfaAccessRequestDestinations resources.
67
+ :param pulumi.Input[_builtins.bool] are_any_destinations_hidden: (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions.
68
+ This value is true if the caller does not have permission to see all destinations
69
+ :param pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]] destinations: The access request destinations for the securable
70
+ :param pulumi.Input['RfaAccessRequestDestinationsSecurableArgs'] securable: The securable for which the access request destinations are being retrieved
71
+ """
72
+ if are_any_destinations_hidden is not None:
73
+ pulumi.set(__self__, "are_any_destinations_hidden", are_any_destinations_hidden)
74
+ if destinations is not None:
75
+ pulumi.set(__self__, "destinations", destinations)
76
+ if securable is not None:
77
+ pulumi.set(__self__, "securable", securable)
78
+
79
+ @_builtins.property
80
+ @pulumi.getter(name="areAnyDestinationsHidden")
81
+ def are_any_destinations_hidden(self) -> Optional[pulumi.Input[_builtins.bool]]:
82
+ """
83
+ (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions.
84
+ This value is true if the caller does not have permission to see all destinations
85
+ """
86
+ return pulumi.get(self, "are_any_destinations_hidden")
87
+
88
+ @are_any_destinations_hidden.setter
89
+ def are_any_destinations_hidden(self, value: Optional[pulumi.Input[_builtins.bool]]):
90
+ pulumi.set(self, "are_any_destinations_hidden", value)
91
+
92
+ @_builtins.property
93
+ @pulumi.getter
94
+ def destinations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]]:
95
+ """
96
+ The access request destinations for the securable
97
+ """
98
+ return pulumi.get(self, "destinations")
99
+
100
+ @destinations.setter
101
+ def destinations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]]):
102
+ pulumi.set(self, "destinations", value)
103
+
104
+ @_builtins.property
105
+ @pulumi.getter
106
+ def securable(self) -> Optional[pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']]:
107
+ """
108
+ The securable for which the access request destinations are being retrieved
109
+ """
110
+ return pulumi.get(self, "securable")
111
+
112
+ @securable.setter
113
+ def securable(self, value: Optional[pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']]):
114
+ pulumi.set(self, "securable", value)
115
+
116
+
117
+ @pulumi.type_token("databricks:index/rfaAccessRequestDestinations:RfaAccessRequestDestinations")
118
+ class RfaAccessRequestDestinations(pulumi.CustomResource):
119
+ @overload
120
+ def __init__(__self__,
121
+ resource_name: str,
122
+ opts: Optional[pulumi.ResourceOptions] = None,
123
+ destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RfaAccessRequestDestinationsDestinationArgs', 'RfaAccessRequestDestinationsDestinationArgsDict']]]]] = None,
124
+ securable: Optional[pulumi.Input[Union['RfaAccessRequestDestinationsSecurableArgs', 'RfaAccessRequestDestinationsSecurableArgsDict']]] = None,
125
+ __props__=None):
126
+ """
127
+ [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
128
+
129
+ Request for Access (RFA) access request destinations allow you to configure where notifications are sent when users request access to securable objects in Unity Catalog. This resource enables you to manage access request destinations for specific securable objects, such as tables, catalogs, or schemas.
130
+
131
+ When a user requests access to a securable object, notifications can be sent to various destinations including email addresses, Slack channels, or Microsoft Teams channels. This resource allows you to configure these destinations to ensure that the appropriate stakeholders are notified of access requests.
132
+
133
+ ## Example Usage
134
+
135
+ ## Import
136
+
137
+ As of Pulumi v1.5, resources can be imported through configuration.
138
+
139
+ hcl
140
+
141
+ import {
142
+
143
+ id = ""
144
+
145
+ to = databricks_rfa_access_request_destinations.this
146
+
147
+ }
148
+
149
+ If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
150
+
151
+ ```sh
152
+ $ pulumi import databricks:index/rfaAccessRequestDestinations:RfaAccessRequestDestinations this ""
153
+ ```
154
+
155
+ :param str resource_name: The name of the resource.
156
+ :param pulumi.ResourceOptions opts: Options for the resource.
157
+ :param pulumi.Input[Sequence[pulumi.Input[Union['RfaAccessRequestDestinationsDestinationArgs', 'RfaAccessRequestDestinationsDestinationArgsDict']]]] destinations: The access request destinations for the securable
158
+ :param pulumi.Input[Union['RfaAccessRequestDestinationsSecurableArgs', 'RfaAccessRequestDestinationsSecurableArgsDict']] securable: The securable for which the access request destinations are being retrieved
159
+ """
160
+ ...
161
+ @overload
162
+ def __init__(__self__,
163
+ resource_name: str,
164
+ args: RfaAccessRequestDestinationsArgs,
165
+ opts: Optional[pulumi.ResourceOptions] = None):
166
+ """
167
+ [![Public Preview](https://img.shields.io/badge/Release_Stage-Public_Preview-yellowgreen)](https://docs.databricks.com/aws/en/release-notes/release-types)
168
+
169
+ Request for Access (RFA) access request destinations allow you to configure where notifications are sent when users request access to securable objects in Unity Catalog. This resource enables you to manage access request destinations for specific securable objects, such as tables, catalogs, or schemas.
170
+
171
+ When a user requests access to a securable object, notifications can be sent to various destinations including email addresses, Slack channels, or Microsoft Teams channels. This resource allows you to configure these destinations to ensure that the appropriate stakeholders are notified of access requests.
172
+
173
+ ## Example Usage
174
+
175
+ ## Import
176
+
177
+ As of Pulumi v1.5, resources can be imported through configuration.
178
+
179
+ hcl
180
+
181
+ import {
182
+
183
+ id = ""
184
+
185
+ to = databricks_rfa_access_request_destinations.this
186
+
187
+ }
188
+
189
+ If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
190
+
191
+ ```sh
192
+ $ pulumi import databricks:index/rfaAccessRequestDestinations:RfaAccessRequestDestinations this ""
193
+ ```
194
+
195
+ :param str resource_name: The name of the resource.
196
+ :param RfaAccessRequestDestinationsArgs args: The arguments to use to populate this resource's properties.
197
+ :param pulumi.ResourceOptions opts: Options for the resource.
198
+ """
199
+ ...
200
+ def __init__(__self__, resource_name: str, *args, **kwargs):
201
+ resource_args, opts = _utilities.get_resource_args_opts(RfaAccessRequestDestinationsArgs, pulumi.ResourceOptions, *args, **kwargs)
202
+ if resource_args is not None:
203
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
204
+ else:
205
+ __self__._internal_init(resource_name, *args, **kwargs)
206
+
207
+ def _internal_init(__self__,
208
+ resource_name: str,
209
+ opts: Optional[pulumi.ResourceOptions] = None,
210
+ destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RfaAccessRequestDestinationsDestinationArgs', 'RfaAccessRequestDestinationsDestinationArgsDict']]]]] = None,
211
+ securable: Optional[pulumi.Input[Union['RfaAccessRequestDestinationsSecurableArgs', 'RfaAccessRequestDestinationsSecurableArgsDict']]] = None,
212
+ __props__=None):
213
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
214
+ if not isinstance(opts, pulumi.ResourceOptions):
215
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
216
+ if opts.id is None:
217
+ if __props__ is not None:
218
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
219
+ __props__ = RfaAccessRequestDestinationsArgs.__new__(RfaAccessRequestDestinationsArgs)
220
+
221
+ if destinations is None and not opts.urn:
222
+ raise TypeError("Missing required property 'destinations'")
223
+ __props__.__dict__["destinations"] = destinations
224
+ if securable is None and not opts.urn:
225
+ raise TypeError("Missing required property 'securable'")
226
+ __props__.__dict__["securable"] = securable
227
+ __props__.__dict__["are_any_destinations_hidden"] = None
228
+ super(RfaAccessRequestDestinations, __self__).__init__(
229
+ 'databricks:index/rfaAccessRequestDestinations:RfaAccessRequestDestinations',
230
+ resource_name,
231
+ __props__,
232
+ opts)
233
+
234
+ @staticmethod
235
+ def get(resource_name: str,
236
+ id: pulumi.Input[str],
237
+ opts: Optional[pulumi.ResourceOptions] = None,
238
+ are_any_destinations_hidden: Optional[pulumi.Input[_builtins.bool]] = None,
239
+ destinations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['RfaAccessRequestDestinationsDestinationArgs', 'RfaAccessRequestDestinationsDestinationArgsDict']]]]] = None,
240
+ securable: Optional[pulumi.Input[Union['RfaAccessRequestDestinationsSecurableArgs', 'RfaAccessRequestDestinationsSecurableArgsDict']]] = None) -> 'RfaAccessRequestDestinations':
241
+ """
242
+ Get an existing RfaAccessRequestDestinations resource's state with the given name, id, and optional extra
243
+ properties used to qualify the lookup.
244
+
245
+ :param str resource_name: The unique name of the resulting resource.
246
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
247
+ :param pulumi.ResourceOptions opts: Options for the resource.
248
+ :param pulumi.Input[_builtins.bool] are_any_destinations_hidden: (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions.
249
+ This value is true if the caller does not have permission to see all destinations
250
+ :param pulumi.Input[Sequence[pulumi.Input[Union['RfaAccessRequestDestinationsDestinationArgs', 'RfaAccessRequestDestinationsDestinationArgsDict']]]] destinations: The access request destinations for the securable
251
+ :param pulumi.Input[Union['RfaAccessRequestDestinationsSecurableArgs', 'RfaAccessRequestDestinationsSecurableArgsDict']] securable: The securable for which the access request destinations are being retrieved
252
+ """
253
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
254
+
255
+ __props__ = _RfaAccessRequestDestinationsState.__new__(_RfaAccessRequestDestinationsState)
256
+
257
+ __props__.__dict__["are_any_destinations_hidden"] = are_any_destinations_hidden
258
+ __props__.__dict__["destinations"] = destinations
259
+ __props__.__dict__["securable"] = securable
260
+ return RfaAccessRequestDestinations(resource_name, opts=opts, __props__=__props__)
261
+
262
+ @_builtins.property
263
+ @pulumi.getter(name="areAnyDestinationsHidden")
264
+ def are_any_destinations_hidden(self) -> pulumi.Output[_builtins.bool]:
265
+ """
266
+ (boolean) - Indicates whether any destinations are hidden from the caller due to a lack of permissions.
267
+ This value is true if the caller does not have permission to see all destinations
268
+ """
269
+ return pulumi.get(self, "are_any_destinations_hidden")
270
+
271
+ @_builtins.property
272
+ @pulumi.getter
273
+ def destinations(self) -> pulumi.Output[Sequence['outputs.RfaAccessRequestDestinationsDestination']]:
274
+ """
275
+ The access request destinations for the securable
276
+ """
277
+ return pulumi.get(self, "destinations")
278
+
279
+ @_builtins.property
280
+ @pulumi.getter
281
+ def securable(self) -> pulumi.Output['outputs.RfaAccessRequestDestinationsSecurable']:
282
+ """
283
+ The securable for which the access request destinations are being retrieved
284
+ """
285
+ return pulumi.get(self, "securable")
286
+
@@ -37,7 +37,7 @@ class SchemaArgs:
37
37
  :param pulumi.Input[_builtins.str] name: Name of Schema relative to parent catalog. Change forces creation of a new resource.
38
38
  :param pulumi.Input[_builtins.str] owner: Username/groupname/sp application_id of the schema owner.
39
39
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Schema properties.
40
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
40
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
41
41
  """
42
42
  pulumi.set(__self__, "catalog_name", catalog_name)
43
43
  if comment is not None:
@@ -154,7 +154,7 @@ class SchemaArgs:
154
154
  @pulumi.getter(name="storageRoot")
155
155
  def storage_root(self) -> Optional[pulumi.Input[_builtins.str]]:
156
156
  """
157
- Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
157
+ Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
158
158
  """
159
159
  return pulumi.get(self, "storage_root")
160
160
 
@@ -186,7 +186,7 @@ class _SchemaState:
186
186
  :param pulumi.Input[_builtins.str] owner: Username/groupname/sp application_id of the schema owner.
187
187
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Schema properties.
188
188
  :param pulumi.Input[_builtins.str] schema_id: The unique identifier of the schema.
189
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
189
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
190
190
  """
191
191
  if catalog_name is not None:
192
192
  pulumi.set(__self__, "catalog_name", catalog_name)
@@ -318,7 +318,7 @@ class _SchemaState:
318
318
  @pulumi.getter(name="storageRoot")
319
319
  def storage_root(self) -> Optional[pulumi.Input[_builtins.str]]:
320
320
  """
321
- Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
321
+ Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
322
322
  """
323
323
  return pulumi.get(self, "storage_root")
324
324
 
@@ -410,7 +410,7 @@ class Schema(pulumi.CustomResource):
410
410
  :param pulumi.Input[_builtins.str] name: Name of Schema relative to parent catalog. Change forces creation of a new resource.
411
411
  :param pulumi.Input[_builtins.str] owner: Username/groupname/sp application_id of the schema owner.
412
412
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Schema properties.
413
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
413
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
414
414
  """
415
415
  ...
416
416
  @overload
@@ -556,7 +556,7 @@ class Schema(pulumi.CustomResource):
556
556
  :param pulumi.Input[_builtins.str] owner: Username/groupname/sp application_id of the schema owner.
557
557
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Schema properties.
558
558
  :param pulumi.Input[_builtins.str] schema_id: The unique identifier of the schema.
559
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
559
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
560
560
  """
561
561
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
562
562
 
@@ -647,7 +647,7 @@ class Schema(pulumi.CustomResource):
647
647
  @pulumi.getter(name="storageRoot")
648
648
  def storage_root(self) -> pulumi.Output[Optional[_builtins.str]]:
649
649
  """
650
- Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
650
+ Managed location of the schema. Location in cloud storage where data for managed tables will be stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). If not specified, the location will default to the catalog root location. Change forces creation of a new resource.
651
651
  """
652
652
  return pulumi.get(self, "storage_root")
653
653
 
@@ -28,8 +28,8 @@ class ServicePrincipalFederationPolicyArgs:
28
28
  """
29
29
  The set of arguments for constructing a ServicePrincipalFederationPolicy resource.
30
30
  :param pulumi.Input[_builtins.str] description: Description of the federation policy
31
- :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy
32
- :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
31
+ :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy. Output only
32
+ :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
33
33
  """
34
34
  if description is not None:
35
35
  pulumi.set(__self__, "description", description)
@@ -65,7 +65,7 @@ class ServicePrincipalFederationPolicyArgs:
65
65
  @pulumi.getter(name="policyId")
66
66
  def policy_id(self) -> Optional[pulumi.Input[_builtins.str]]:
67
67
  """
68
- (string) - The ID of the federation policy
68
+ (string) - The ID of the federation policy. Output only
69
69
  """
70
70
  return pulumi.get(self, "policy_id")
71
71
 
@@ -77,7 +77,7 @@ class ServicePrincipalFederationPolicyArgs:
77
77
  @pulumi.getter(name="servicePrincipalId")
78
78
  def service_principal_id(self) -> Optional[pulumi.Input[_builtins.int]]:
79
79
  """
80
- (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
80
+ (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
81
81
  """
82
82
  return pulumi.get(self, "service_principal_id")
83
83
 
@@ -107,8 +107,8 @@ class _ServicePrincipalFederationPolicyState:
107
107
  for Service Principal Federation Policies. Typically an output parameter, which does not need to be
108
108
  specified in create or update requests. If specified in a request, must match the value in the
109
109
  request URL
110
- :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy
111
- :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
110
+ :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy. Output only
111
+ :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
112
112
  :param pulumi.Input[_builtins.str] uid: (string) - Unique, immutable id of the federation policy
113
113
  :param pulumi.Input[_builtins.str] update_time: (string) - Last update time of the federation policy
114
114
  """
@@ -183,7 +183,7 @@ class _ServicePrincipalFederationPolicyState:
183
183
  @pulumi.getter(name="policyId")
184
184
  def policy_id(self) -> Optional[pulumi.Input[_builtins.str]]:
185
185
  """
186
- (string) - The ID of the federation policy
186
+ (string) - The ID of the federation policy. Output only
187
187
  """
188
188
  return pulumi.get(self, "policy_id")
189
189
 
@@ -195,7 +195,7 @@ class _ServicePrincipalFederationPolicyState:
195
195
  @pulumi.getter(name="servicePrincipalId")
196
196
  def service_principal_id(self) -> Optional[pulumi.Input[_builtins.int]]:
197
197
  """
198
- (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
198
+ (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
199
199
  """
200
200
  return pulumi.get(self, "service_principal_id")
201
201
 
@@ -240,6 +240,8 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
240
240
  service_principal_id: Optional[pulumi.Input[_builtins.int]] = None,
241
241
  __props__=None):
242
242
  """
243
+ [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
244
+
243
245
  Service principal federation policies allow automated workloads running outside of Databricks to access Databricks APIs without the need for Databricks secrets. Your application (workload) authenticates to Databricks as a Databricks service principal using tokens issued by the workload runtime, for example Github Actions.
244
246
 
245
247
  A service principal federation policy is associated with a service principal in your Databricks account, and specifies:
@@ -248,6 +250,20 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
248
250
 
249
251
  ## Example Usage
250
252
 
253
+ ```python
254
+ import pulumi
255
+ import pulumi_databricks as databricks
256
+
257
+ this = databricks.ServicePrincipalFederationPolicy("this",
258
+ service_principal_id=1234,
259
+ policy_id="my-policy",
260
+ oidc_policy={
261
+ "issuer": "https://myidp.example.com",
262
+ "subject_claim": "sub",
263
+ "subject": "subject-in-token-from-myidp",
264
+ })
265
+ ```
266
+
251
267
  ## Import
252
268
 
253
269
  As of Pulumi v1.5, resources can be imported through configuration.
@@ -265,14 +281,14 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
265
281
  If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
266
282
 
267
283
  ```sh
268
- $ pulumi import databricks:index/servicePrincipalFederationPolicy:ServicePrincipalFederationPolicy databricks_service_principal_federation_policy "service_principal_id,policy_id"
284
+ $ pulumi import databricks:index/servicePrincipalFederationPolicy:ServicePrincipalFederationPolicy this "service_principal_id,policy_id"
269
285
  ```
270
286
 
271
287
  :param str resource_name: The name of the resource.
272
288
  :param pulumi.ResourceOptions opts: Options for the resource.
273
289
  :param pulumi.Input[_builtins.str] description: Description of the federation policy
274
- :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy
275
- :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
290
+ :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy. Output only
291
+ :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
276
292
  """
277
293
  ...
278
294
  @overload
@@ -281,6 +297,8 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
281
297
  args: Optional[ServicePrincipalFederationPolicyArgs] = None,
282
298
  opts: Optional[pulumi.ResourceOptions] = None):
283
299
  """
300
+ [![GA](https://img.shields.io/badge/Release_Stage-GA-green)](https://docs.databricks.com/aws/en/release-notes/release-types)
301
+
284
302
  Service principal federation policies allow automated workloads running outside of Databricks to access Databricks APIs without the need for Databricks secrets. Your application (workload) authenticates to Databricks as a Databricks service principal using tokens issued by the workload runtime, for example Github Actions.
285
303
 
286
304
  A service principal federation policy is associated with a service principal in your Databricks account, and specifies:
@@ -289,6 +307,20 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
289
307
 
290
308
  ## Example Usage
291
309
 
310
+ ```python
311
+ import pulumi
312
+ import pulumi_databricks as databricks
313
+
314
+ this = databricks.ServicePrincipalFederationPolicy("this",
315
+ service_principal_id=1234,
316
+ policy_id="my-policy",
317
+ oidc_policy={
318
+ "issuer": "https://myidp.example.com",
319
+ "subject_claim": "sub",
320
+ "subject": "subject-in-token-from-myidp",
321
+ })
322
+ ```
323
+
292
324
  ## Import
293
325
 
294
326
  As of Pulumi v1.5, resources can be imported through configuration.
@@ -306,7 +338,7 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
306
338
  If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
307
339
 
308
340
  ```sh
309
- $ pulumi import databricks:index/servicePrincipalFederationPolicy:ServicePrincipalFederationPolicy databricks_service_principal_federation_policy "service_principal_id,policy_id"
341
+ $ pulumi import databricks:index/servicePrincipalFederationPolicy:ServicePrincipalFederationPolicy this "service_principal_id,policy_id"
310
342
  ```
311
343
 
312
344
  :param str resource_name: The name of the resource.
@@ -378,8 +410,8 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
378
410
  for Service Principal Federation Policies. Typically an output parameter, which does not need to be
379
411
  specified in create or update requests. If specified in a request, must match the value in the
380
412
  request URL
381
- :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy
382
- :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
413
+ :param pulumi.Input[_builtins.str] policy_id: (string) - The ID of the federation policy. Output only
414
+ :param pulumi.Input[_builtins.int] service_principal_id: (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
383
415
  :param pulumi.Input[_builtins.str] uid: (string) - Unique, immutable id of the federation policy
384
416
  :param pulumi.Input[_builtins.str] update_time: (string) - Last update time of the federation policy
385
417
  """
@@ -435,7 +467,7 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
435
467
  @pulumi.getter(name="policyId")
436
468
  def policy_id(self) -> pulumi.Output[_builtins.str]:
437
469
  """
438
- (string) - The ID of the federation policy
470
+ (string) - The ID of the federation policy. Output only
439
471
  """
440
472
  return pulumi.get(self, "policy_id")
441
473
 
@@ -443,7 +475,7 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
443
475
  @pulumi.getter(name="servicePrincipalId")
444
476
  def service_principal_id(self) -> pulumi.Output[_builtins.int]:
445
477
  """
446
- (integer) - The service principal ID that this federation policy applies to. Only set for service principal federation policies
478
+ (integer) - The service principal ID that this federation policy applies to. Output only. Only set for service principal federation policies
447
479
  """
448
480
  return pulumi.get(self, "service_principal_id")
449
481