pulumi-databricks 1.78.0a1762407761__py3-none-any.whl → 1.79.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_databricks/__init__.py +23 -0
- pulumi_databricks/_inputs.py +1630 -181
- pulumi_databricks/access_control_rule_set.py +81 -0
- pulumi_databricks/account_federation_policy.py +24 -0
- pulumi_databricks/account_network_policy.py +50 -0
- pulumi_databricks/account_setting_v2.py +181 -12
- pulumi_databricks/alert_v2.py +74 -2
- pulumi_databricks/app.py +71 -7
- pulumi_databricks/apps_settings_custom_template.py +102 -0
- pulumi_databricks/catalog.py +8 -8
- pulumi_databricks/cluster_policy.py +120 -0
- pulumi_databricks/config/__init__.pyi +4 -0
- pulumi_databricks/config/vars.py +8 -0
- pulumi_databricks/credential.py +7 -7
- pulumi_databricks/dashboard.py +94 -0
- pulumi_databricks/data_quality_monitor.py +2 -2
- pulumi_databricks/data_quality_refresh.py +78 -2
- pulumi_databricks/database_synced_database_table.py +212 -0
- pulumi_databricks/external_location.py +131 -7
- pulumi_databricks/feature_engineering_feature.py +52 -19
- pulumi_databricks/feature_engineering_kafka_config.py +463 -0
- pulumi_databricks/feature_engineering_materialized_feature.py +47 -0
- pulumi_databricks/file.py +2 -2
- pulumi_databricks/get_account_setting_v2.py +16 -16
- pulumi_databricks/get_alert_v2.py +2 -2
- pulumi_databricks/get_alerts_v2.py +2 -2
- pulumi_databricks/get_aws_assume_role_policy.py +14 -14
- pulumi_databricks/get_aws_bucket_policy.py +10 -10
- pulumi_databricks/get_aws_unity_catalog_assume_role_policy.py +10 -10
- pulumi_databricks/get_aws_unity_catalog_policy.py +10 -10
- pulumi_databricks/get_cluster.py +54 -0
- pulumi_databricks/get_current_config.py +4 -4
- pulumi_databricks/get_dashboards.py +32 -0
- pulumi_databricks/get_data_quality_monitor.py +2 -2
- pulumi_databricks/get_data_quality_monitors.py +2 -2
- pulumi_databricks/get_data_quality_refresh.py +2 -2
- pulumi_databricks/get_data_quality_refreshes.py +2 -2
- pulumi_databricks/get_feature_engineering_feature.py +12 -1
- pulumi_databricks/get_feature_engineering_kafka_config.py +182 -0
- pulumi_databricks/get_feature_engineering_kafka_configs.py +103 -0
- pulumi_databricks/get_feature_engineering_materialized_feature.py +16 -2
- pulumi_databricks/get_metastore.py +6 -6
- pulumi_databricks/get_notebook.py +20 -1
- pulumi_databricks/get_policy_info.py +36 -2
- pulumi_databricks/get_policy_infos.py +34 -2
- pulumi_databricks/get_service_principals.py +93 -7
- pulumi_databricks/get_spark_version.py +2 -2
- pulumi_databricks/get_tag_policies.py +2 -2
- pulumi_databricks/get_tag_policy.py +2 -2
- pulumi_databricks/get_users.py +194 -0
- pulumi_databricks/get_workspace_entity_tag_assignment.py +180 -0
- pulumi_databricks/get_workspace_entity_tag_assignments.py +171 -0
- pulumi_databricks/get_workspace_setting_v2.py +16 -16
- pulumi_databricks/instance_profile.py +0 -182
- pulumi_databricks/lakehouse_monitor.py +2 -2
- pulumi_databricks/metastore.py +81 -7
- pulumi_databricks/metastore_data_access.py +48 -0
- pulumi_databricks/mlflow_webhook.py +4 -4
- pulumi_databricks/mws_credentials.py +10 -10
- pulumi_databricks/mws_customer_managed_keys.py +0 -288
- pulumi_databricks/mws_log_delivery.py +146 -0
- pulumi_databricks/mws_storage_configurations.py +16 -16
- pulumi_databricks/mws_vpc_endpoint.py +56 -56
- pulumi_databricks/mws_workspaces.py +115 -55
- pulumi_databricks/notebook.py +49 -0
- pulumi_databricks/outputs.py +2017 -240
- pulumi_databricks/permission_assignment.py +49 -0
- pulumi_databricks/permissions.py +6 -6
- pulumi_databricks/pipeline.py +7 -7
- pulumi_databricks/policy_info.py +122 -2
- pulumi_databricks/provider.py +36 -1
- pulumi_databricks/pulumi-plugin.json +1 -1
- pulumi_databricks/recipient.py +74 -0
- pulumi_databricks/registered_model.py +7 -7
- pulumi_databricks/rfa_access_request_destinations.py +86 -19
- pulumi_databricks/schema.py +7 -7
- pulumi_databricks/service_principal_federation_policy.py +28 -0
- pulumi_databricks/sql_table.py +7 -7
- pulumi_databricks/tag_policy.py +2 -2
- pulumi_databricks/volume.py +7 -7
- pulumi_databricks/workspace_entity_tag_assignment.py +375 -0
- pulumi_databricks/workspace_setting_v2.py +181 -12
- {pulumi_databricks-1.78.0a1762407761.dist-info → pulumi_databricks-1.79.0.dist-info}/METADATA +1 -1
- {pulumi_databricks-1.78.0a1762407761.dist-info → pulumi_databricks-1.79.0.dist-info}/RECORD +86 -79
- {pulumi_databricks-1.78.0a1762407761.dist-info → pulumi_databricks-1.79.0.dist-info}/WHEEL +0 -0
- {pulumi_databricks-1.78.0a1762407761.dist-info → pulumi_databricks-1.79.0.dist-info}/top_level.txt +0 -0
|
@@ -42,7 +42,7 @@ class RegisteredModelArgs:
|
|
|
42
42
|
:param pulumi.Input[_builtins.str] name: The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
43
43
|
:param pulumi.Input[_builtins.str] owner: Name of the registered model owner.
|
|
44
44
|
:param pulumi.Input[_builtins.str] schema_name: The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
45
|
-
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
45
|
+
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
46
46
|
"""
|
|
47
47
|
if aliases is not None:
|
|
48
48
|
pulumi.set(__self__, "aliases", aliases)
|
|
@@ -191,7 +191,7 @@ class RegisteredModelArgs:
|
|
|
191
191
|
@pulumi.getter(name="storageLocation")
|
|
192
192
|
def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
193
193
|
"""
|
|
194
|
-
The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
194
|
+
The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "storage_location")
|
|
197
197
|
|
|
@@ -242,7 +242,7 @@ class _RegisteredModelState:
|
|
|
242
242
|
:param pulumi.Input[_builtins.str] name: The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
243
243
|
:param pulumi.Input[_builtins.str] owner: Name of the registered model owner.
|
|
244
244
|
:param pulumi.Input[_builtins.str] schema_name: The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
245
|
-
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
245
|
+
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
246
246
|
"""
|
|
247
247
|
if aliases is not None:
|
|
248
248
|
pulumi.set(__self__, "aliases", aliases)
|
|
@@ -391,7 +391,7 @@ class _RegisteredModelState:
|
|
|
391
391
|
@pulumi.getter(name="storageLocation")
|
|
392
392
|
def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
393
393
|
"""
|
|
394
|
-
The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
394
|
+
The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
395
395
|
"""
|
|
396
396
|
return pulumi.get(self, "storage_location")
|
|
397
397
|
|
|
@@ -498,7 +498,7 @@ class RegisteredModel(pulumi.CustomResource):
|
|
|
498
498
|
:param pulumi.Input[_builtins.str] name: The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
499
499
|
:param pulumi.Input[_builtins.str] owner: Name of the registered model owner.
|
|
500
500
|
:param pulumi.Input[_builtins.str] schema_name: The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
501
|
-
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
501
|
+
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
502
502
|
"""
|
|
503
503
|
...
|
|
504
504
|
@overload
|
|
@@ -646,7 +646,7 @@ class RegisteredModel(pulumi.CustomResource):
|
|
|
646
646
|
:param pulumi.Input[_builtins.str] name: The name of the registered model. *Change of this parameter forces recreation of the resource.*
|
|
647
647
|
:param pulumi.Input[_builtins.str] owner: Name of the registered model owner.
|
|
648
648
|
:param pulumi.Input[_builtins.str] schema_name: The name of the schema where the registered model resides. *Change of this parameter forces recreation of the resource.*
|
|
649
|
-
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
649
|
+
:param pulumi.Input[_builtins.str] storage_location: The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
650
650
|
"""
|
|
651
651
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
652
652
|
|
|
@@ -742,7 +742,7 @@ class RegisteredModel(pulumi.CustomResource):
|
|
|
742
742
|
@pulumi.getter(name="storageLocation")
|
|
743
743
|
def storage_location(self) -> pulumi.Output[_builtins.str]:
|
|
744
744
|
"""
|
|
745
|
-
The storage location under which model version data files are stored. *Change of this parameter forces recreation of the resource.*
|
|
745
|
+
The storage location under which model version data files are stored. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). *Change of this parameter forces recreation of the resource.*
|
|
746
746
|
"""
|
|
747
747
|
return pulumi.get(self, "storage_location")
|
|
748
748
|
|
|
@@ -21,27 +21,16 @@ __all__ = ['RfaAccessRequestDestinationsArgs', 'RfaAccessRequestDestinations']
|
|
|
21
21
|
@pulumi.input_type
|
|
22
22
|
class RfaAccessRequestDestinationsArgs:
|
|
23
23
|
def __init__(__self__, *,
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
securable: pulumi.Input['RfaAccessRequestDestinationsSecurableArgs'],
|
|
25
|
+
destinations: Optional[pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]] = None):
|
|
26
26
|
"""
|
|
27
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
28
|
:param pulumi.Input['RfaAccessRequestDestinationsSecurableArgs'] securable: The securable for which the access request destinations are being retrieved
|
|
29
|
+
:param pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]] destinations: The access request destinations for the securable
|
|
30
30
|
"""
|
|
31
|
-
pulumi.set(__self__, "destinations", destinations)
|
|
32
31
|
pulumi.set(__self__, "securable", securable)
|
|
33
|
-
|
|
34
|
-
|
|
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)
|
|
32
|
+
if destinations is not None:
|
|
33
|
+
pulumi.set(__self__, "destinations", destinations)
|
|
45
34
|
|
|
46
35
|
@_builtins.property
|
|
47
36
|
@pulumi.getter
|
|
@@ -55,6 +44,18 @@ class RfaAccessRequestDestinationsArgs:
|
|
|
55
44
|
def securable(self, value: pulumi.Input['RfaAccessRequestDestinationsSecurableArgs']):
|
|
56
45
|
pulumi.set(self, "securable", value)
|
|
57
46
|
|
|
47
|
+
@_builtins.property
|
|
48
|
+
@pulumi.getter
|
|
49
|
+
def destinations(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]]:
|
|
50
|
+
"""
|
|
51
|
+
The access request destinations for the securable
|
|
52
|
+
"""
|
|
53
|
+
return pulumi.get(self, "destinations")
|
|
54
|
+
|
|
55
|
+
@destinations.setter
|
|
56
|
+
def destinations(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['RfaAccessRequestDestinationsDestinationArgs']]]]):
|
|
57
|
+
pulumi.set(self, "destinations", value)
|
|
58
|
+
|
|
58
59
|
|
|
59
60
|
@pulumi.input_type
|
|
60
61
|
class _RfaAccessRequestDestinationsState:
|
|
@@ -132,6 +133,40 @@ class RfaAccessRequestDestinations(pulumi.CustomResource):
|
|
|
132
133
|
|
|
133
134
|
## Example Usage
|
|
134
135
|
|
|
136
|
+
```python
|
|
137
|
+
import pulumi
|
|
138
|
+
import pulumi_databricks as databricks
|
|
139
|
+
|
|
140
|
+
customer_data_table = databricks.RfaAccessRequestDestinations("customer_data_table",
|
|
141
|
+
destinations=[
|
|
142
|
+
{
|
|
143
|
+
"destination_id": "john.doe@databricks.com",
|
|
144
|
+
"destination_type": "EMAIL",
|
|
145
|
+
},
|
|
146
|
+
{
|
|
147
|
+
"destination_id": "https://www.databricks.com/",
|
|
148
|
+
"destination_type": "URL",
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"destination_id": "456e7890-e89b-12d3-a456-426614174001",
|
|
152
|
+
"destination_type": "SLACK",
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"destination_id": "789e0123-e89b-12d3-a456-426614174002",
|
|
156
|
+
"destination_type": "MICROSOFT_TEAMS",
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"destination_id": "012e3456-e89b-12d3-a456-426614174003",
|
|
160
|
+
"destination_type": "GENERIC_WEBHOOK",
|
|
161
|
+
},
|
|
162
|
+
],
|
|
163
|
+
securable={
|
|
164
|
+
"type": "SCHEMA",
|
|
165
|
+
"full_name": "main.customer_data",
|
|
166
|
+
},
|
|
167
|
+
are_any_destinations_hidden=False)
|
|
168
|
+
```
|
|
169
|
+
|
|
135
170
|
## Import
|
|
136
171
|
|
|
137
172
|
As of Pulumi v1.5, resources can be imported through configuration.
|
|
@@ -172,6 +207,40 @@ class RfaAccessRequestDestinations(pulumi.CustomResource):
|
|
|
172
207
|
|
|
173
208
|
## Example Usage
|
|
174
209
|
|
|
210
|
+
```python
|
|
211
|
+
import pulumi
|
|
212
|
+
import pulumi_databricks as databricks
|
|
213
|
+
|
|
214
|
+
customer_data_table = databricks.RfaAccessRequestDestinations("customer_data_table",
|
|
215
|
+
destinations=[
|
|
216
|
+
{
|
|
217
|
+
"destination_id": "john.doe@databricks.com",
|
|
218
|
+
"destination_type": "EMAIL",
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"destination_id": "https://www.databricks.com/",
|
|
222
|
+
"destination_type": "URL",
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"destination_id": "456e7890-e89b-12d3-a456-426614174001",
|
|
226
|
+
"destination_type": "SLACK",
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"destination_id": "789e0123-e89b-12d3-a456-426614174002",
|
|
230
|
+
"destination_type": "MICROSOFT_TEAMS",
|
|
231
|
+
},
|
|
232
|
+
{
|
|
233
|
+
"destination_id": "012e3456-e89b-12d3-a456-426614174003",
|
|
234
|
+
"destination_type": "GENERIC_WEBHOOK",
|
|
235
|
+
},
|
|
236
|
+
],
|
|
237
|
+
securable={
|
|
238
|
+
"type": "SCHEMA",
|
|
239
|
+
"full_name": "main.customer_data",
|
|
240
|
+
},
|
|
241
|
+
are_any_destinations_hidden=False)
|
|
242
|
+
```
|
|
243
|
+
|
|
175
244
|
## Import
|
|
176
245
|
|
|
177
246
|
As of Pulumi v1.5, resources can be imported through configuration.
|
|
@@ -218,8 +287,6 @@ class RfaAccessRequestDestinations(pulumi.CustomResource):
|
|
|
218
287
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
219
288
|
__props__ = RfaAccessRequestDestinationsArgs.__new__(RfaAccessRequestDestinationsArgs)
|
|
220
289
|
|
|
221
|
-
if destinations is None and not opts.urn:
|
|
222
|
-
raise TypeError("Missing required property 'destinations'")
|
|
223
290
|
__props__.__dict__["destinations"] = destinations
|
|
224
291
|
if securable is None and not opts.urn:
|
|
225
292
|
raise TypeError("Missing required property 'securable'")
|
|
@@ -270,7 +337,7 @@ class RfaAccessRequestDestinations(pulumi.CustomResource):
|
|
|
270
337
|
|
|
271
338
|
@_builtins.property
|
|
272
339
|
@pulumi.getter
|
|
273
|
-
def destinations(self) -> pulumi.Output[Sequence['outputs.RfaAccessRequestDestinationsDestination']]:
|
|
340
|
+
def destinations(self) -> pulumi.Output[Optional[Sequence['outputs.RfaAccessRequestDestinationsDestination']]]:
|
|
274
341
|
"""
|
|
275
342
|
The access request destinations for the securable
|
|
276
343
|
"""
|
pulumi_databricks/schema.py
CHANGED
|
@@ -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
|
|
|
@@ -250,6 +250,20 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
|
|
|
250
250
|
|
|
251
251
|
## Example Usage
|
|
252
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
|
+
|
|
253
267
|
## Import
|
|
254
268
|
|
|
255
269
|
As of Pulumi v1.5, resources can be imported through configuration.
|
|
@@ -293,6 +307,20 @@ class ServicePrincipalFederationPolicy(pulumi.CustomResource):
|
|
|
293
307
|
|
|
294
308
|
## Example Usage
|
|
295
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
|
+
|
|
296
324
|
## Import
|
|
297
325
|
|
|
298
326
|
As of Pulumi v1.5, resources can be imported through configuration.
|
pulumi_databricks/sql_table.py
CHANGED
|
@@ -52,7 +52,7 @@ class SqlTableArgs:
|
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] partitions: a subset of columns to partition the table by. Change forces the creation of a new resource. Conflicts with `cluster_keys`.
|
|
53
53
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: A map of table properties.
|
|
54
54
|
:param pulumi.Input[_builtins.str] storage_credential_name: For EXTERNAL Tables only: the name of storage credential to use. Change forces the creation of a new resource.
|
|
55
|
-
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
55
|
+
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
56
56
|
:param pulumi.Input[_builtins.str] view_definition: SQL text defining the view (for `table_type == "VIEW"`). Not supported for `MANAGED` or `EXTERNAL` table_type.
|
|
57
57
|
:param pulumi.Input[_builtins.str] warehouse_id: All table CRUD operations must be executed on a running cluster or SQL warehouse. If a `warehouse_id` is specified, that SQL warehouse will be used to execute SQL commands to manage this table. Conflicts with `cluster_id`.
|
|
58
58
|
"""
|
|
@@ -254,7 +254,7 @@ class SqlTableArgs:
|
|
|
254
254
|
@pulumi.getter(name="storageLocation")
|
|
255
255
|
def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
256
256
|
"""
|
|
257
|
-
URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
257
|
+
URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
258
258
|
"""
|
|
259
259
|
return pulumi.get(self, "storage_location")
|
|
260
260
|
|
|
@@ -322,7 +322,7 @@ class _SqlTableState:
|
|
|
322
322
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: A map of table properties.
|
|
323
323
|
:param pulumi.Input[_builtins.str] schema_name: Name of parent Schema relative to parent Catalog. Change forces the creation of a new resource.
|
|
324
324
|
:param pulumi.Input[_builtins.str] storage_credential_name: For EXTERNAL Tables only: the name of storage credential to use. Change forces the creation of a new resource.
|
|
325
|
-
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
325
|
+
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
326
326
|
:param pulumi.Input[_builtins.str] table_id: The unique identifier of the table.
|
|
327
327
|
:param pulumi.Input[_builtins.str] table_type: Distinguishes a view vs. managed/external Table. `MANAGED`, `EXTERNAL` or `VIEW`. Change forces the creation of a new resource.
|
|
328
328
|
:param pulumi.Input[_builtins.str] view_definition: SQL text defining the view (for `table_type == "VIEW"`). Not supported for `MANAGED` or `EXTERNAL` table_type.
|
|
@@ -530,7 +530,7 @@ class _SqlTableState:
|
|
|
530
530
|
@pulumi.getter(name="storageLocation")
|
|
531
531
|
def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
532
532
|
"""
|
|
533
|
-
URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
533
|
+
URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
534
534
|
"""
|
|
535
535
|
return pulumi.get(self, "storage_location")
|
|
536
536
|
|
|
@@ -647,7 +647,7 @@ class SqlTable(pulumi.CustomResource):
|
|
|
647
647
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: A map of table properties.
|
|
648
648
|
:param pulumi.Input[_builtins.str] schema_name: Name of parent Schema relative to parent Catalog. Change forces the creation of a new resource.
|
|
649
649
|
:param pulumi.Input[_builtins.str] storage_credential_name: For EXTERNAL Tables only: the name of storage credential to use. Change forces the creation of a new resource.
|
|
650
|
-
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
650
|
+
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
651
651
|
:param pulumi.Input[_builtins.str] table_type: Distinguishes a view vs. managed/external Table. `MANAGED`, `EXTERNAL` or `VIEW`. Change forces the creation of a new resource.
|
|
652
652
|
:param pulumi.Input[_builtins.str] view_definition: SQL text defining the view (for `table_type == "VIEW"`). Not supported for `MANAGED` or `EXTERNAL` table_type.
|
|
653
653
|
:param pulumi.Input[_builtins.str] warehouse_id: All table CRUD operations must be executed on a running cluster or SQL warehouse. If a `warehouse_id` is specified, that SQL warehouse will be used to execute SQL commands to manage this table. Conflicts with `cluster_id`.
|
|
@@ -794,7 +794,7 @@ class SqlTable(pulumi.CustomResource):
|
|
|
794
794
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: A map of table properties.
|
|
795
795
|
:param pulumi.Input[_builtins.str] schema_name: Name of parent Schema relative to parent Catalog. Change forces the creation of a new resource.
|
|
796
796
|
:param pulumi.Input[_builtins.str] storage_credential_name: For EXTERNAL Tables only: the name of storage credential to use. Change forces the creation of a new resource.
|
|
797
|
-
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
797
|
+
:param pulumi.Input[_builtins.str] storage_location: URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
798
798
|
:param pulumi.Input[_builtins.str] table_id: The unique identifier of the table.
|
|
799
799
|
:param pulumi.Input[_builtins.str] table_type: Distinguishes a view vs. managed/external Table. `MANAGED`, `EXTERNAL` or `VIEW`. Change forces the creation of a new resource.
|
|
800
800
|
:param pulumi.Input[_builtins.str] view_definition: SQL text defining the view (for `table_type == "VIEW"`). Not supported for `MANAGED` or `EXTERNAL` table_type.
|
|
@@ -932,7 +932,7 @@ class SqlTable(pulumi.CustomResource):
|
|
|
932
932
|
@pulumi.getter(name="storageLocation")
|
|
933
933
|
def storage_location(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
934
934
|
"""
|
|
935
|
-
URL of storage location for Table data (required for EXTERNAL Tables). Not supported for `VIEW` or `MANAGED` table_type.
|
|
935
|
+
URL of storage location for Table data (required for EXTERNAL Tables). If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Not supported for `VIEW` or `MANAGED` table_type.
|
|
936
936
|
"""
|
|
937
937
|
return pulumi.get(self, "storage_location")
|
|
938
938
|
|
pulumi_databricks/tag_policy.py
CHANGED
|
@@ -150,7 +150,7 @@ class TagPolicy(pulumi.CustomResource):
|
|
|
150
150
|
"""
|
|
151
151
|
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
152
152
|
|
|
153
|
-
Define tag policies to manage governed tags in your account.
|
|
153
|
+
Define tag policies to manage governed tags in your account. Manage tag policy permissions using the `AccessControlRuleSet` resource.
|
|
154
154
|
|
|
155
155
|
> **Note** This resource can only be used with a workspace-level provider!
|
|
156
156
|
|
|
@@ -208,7 +208,7 @@ class TagPolicy(pulumi.CustomResource):
|
|
|
208
208
|
"""
|
|
209
209
|
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
210
210
|
|
|
211
|
-
Define tag policies to manage governed tags in your account.
|
|
211
|
+
Define tag policies to manage governed tags in your account. Manage tag policy permissions using the `AccessControlRuleSet` resource.
|
|
212
212
|
|
|
213
213
|
> **Note** This resource can only be used with a workspace-level provider!
|
|
214
214
|
|
pulumi_databricks/volume.py
CHANGED
|
@@ -34,7 +34,7 @@ class VolumeArgs:
|
|
|
34
34
|
:param pulumi.Input[_builtins.str] comment: Free-form text.
|
|
35
35
|
:param pulumi.Input[_builtins.str] name: Name of the Volume
|
|
36
36
|
:param pulumi.Input[_builtins.str] owner: Name of the volume owner.
|
|
37
|
-
:param pulumi.Input[_builtins.str] storage_location:
|
|
37
|
+
:param pulumi.Input[_builtins.str] storage_location: URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
38
38
|
"""
|
|
39
39
|
pulumi.set(__self__, "catalog_name", catalog_name)
|
|
40
40
|
pulumi.set(__self__, "schema_name", schema_name)
|
|
@@ -124,7 +124,7 @@ class VolumeArgs:
|
|
|
124
124
|
@pulumi.getter(name="storageLocation")
|
|
125
125
|
def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
126
126
|
"""
|
|
127
|
-
|
|
127
|
+
URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
128
128
|
"""
|
|
129
129
|
return pulumi.get(self, "storage_location")
|
|
130
130
|
|
|
@@ -151,7 +151,7 @@ class _VolumeState:
|
|
|
151
151
|
:param pulumi.Input[_builtins.str] name: Name of the Volume
|
|
152
152
|
:param pulumi.Input[_builtins.str] owner: Name of the volume owner.
|
|
153
153
|
:param pulumi.Input[_builtins.str] schema_name: Name of parent Schema relative to parent Catalog. Change forces creation of a new resource.
|
|
154
|
-
:param pulumi.Input[_builtins.str] storage_location:
|
|
154
|
+
:param pulumi.Input[_builtins.str] storage_location: URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
155
155
|
:param pulumi.Input[_builtins.str] volume_path: base file path for this Unity Catalog Volume in form of `/Volumes/<catalog>/<schema>/<name>`.
|
|
156
156
|
:param pulumi.Input[_builtins.str] volume_type: Volume type. `EXTERNAL` or `MANAGED`. Change forces creation of a new resource.
|
|
157
157
|
"""
|
|
@@ -236,7 +236,7 @@ class _VolumeState:
|
|
|
236
236
|
@pulumi.getter(name="storageLocation")
|
|
237
237
|
def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
238
238
|
"""
|
|
239
|
-
|
|
239
|
+
URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
240
240
|
"""
|
|
241
241
|
return pulumi.get(self, "storage_location")
|
|
242
242
|
|
|
@@ -378,7 +378,7 @@ class Volume(pulumi.CustomResource):
|
|
|
378
378
|
:param pulumi.Input[_builtins.str] name: Name of the Volume
|
|
379
379
|
:param pulumi.Input[_builtins.str] owner: Name of the volume owner.
|
|
380
380
|
:param pulumi.Input[_builtins.str] schema_name: Name of parent Schema relative to parent Catalog. Change forces creation of a new resource.
|
|
381
|
-
:param pulumi.Input[_builtins.str] storage_location:
|
|
381
|
+
:param pulumi.Input[_builtins.str] storage_location: URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
382
382
|
:param pulumi.Input[_builtins.str] volume_type: Volume type. `EXTERNAL` or `MANAGED`. Change forces creation of a new resource.
|
|
383
383
|
"""
|
|
384
384
|
...
|
|
@@ -550,7 +550,7 @@ class Volume(pulumi.CustomResource):
|
|
|
550
550
|
:param pulumi.Input[_builtins.str] name: Name of the Volume
|
|
551
551
|
:param pulumi.Input[_builtins.str] owner: Name of the volume owner.
|
|
552
552
|
:param pulumi.Input[_builtins.str] schema_name: Name of parent Schema relative to parent Catalog. Change forces creation of a new resource.
|
|
553
|
-
:param pulumi.Input[_builtins.str] storage_location:
|
|
553
|
+
:param pulumi.Input[_builtins.str] storage_location: URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
554
554
|
:param pulumi.Input[_builtins.str] volume_path: base file path for this Unity Catalog Volume in form of `/Volumes/<catalog>/<schema>/<name>`.
|
|
555
555
|
:param pulumi.Input[_builtins.str] volume_type: Volume type. `EXTERNAL` or `MANAGED`. Change forces creation of a new resource.
|
|
556
556
|
"""
|
|
@@ -612,7 +612,7 @@ class Volume(pulumi.CustomResource):
|
|
|
612
612
|
@pulumi.getter(name="storageLocation")
|
|
613
613
|
def storage_location(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
614
614
|
"""
|
|
615
|
-
|
|
615
|
+
URL for the volume (should be inside of an existing External Location). Only used for `EXTERNAL` Volumes. If the URL contains special characters, such as space, `&`, etc., they should be percent-encoded (space > `%20`, etc.). Change forces creation of a new resource.
|
|
616
616
|
"""
|
|
617
617
|
return pulumi.get(self, "storage_location")
|
|
618
618
|
|