pulumi-databricks 1.75.0a1756323569__py3-none-any.whl → 1.77.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_databricks/__init__.py +129 -46
- pulumi_databricks/_inputs.py +13377 -13798
- pulumi_databricks/account_federation_policy.py +473 -0
- pulumi_databricks/account_network_policy.py +12 -4
- pulumi_databricks/account_setting_v2.py +759 -0
- pulumi_databricks/alert_v2.py +223 -90
- pulumi_databricks/app.py +111 -4
- pulumi_databricks/apps_settings_custom_template.py +531 -0
- pulumi_databricks/budget_policy.py +28 -5
- pulumi_databricks/catalog.py +322 -2
- pulumi_databricks/cluster.py +47 -168
- pulumi_databricks/config/__init__.pyi +2 -0
- pulumi_databricks/config/vars.py +4 -0
- pulumi_databricks/connection.py +0 -34
- pulumi_databricks/data_quality_monitor.py +453 -0
- pulumi_databricks/data_quality_refresh.py +492 -0
- pulumi_databricks/database_database_catalog.py +8 -4
- pulumi_databricks/database_instance.py +354 -73
- pulumi_databricks/database_synced_database_table.py +52 -4
- pulumi_databricks/entitlements.py +21 -21
- pulumi_databricks/entity_tag_assignment.py +409 -0
- pulumi_databricks/external_metadata.py +15 -11
- pulumi_databricks/feature_engineering_feature.py +480 -0
- pulumi_databricks/feature_engineering_materialized_feature.py +397 -0
- pulumi_databricks/get_account_federation_policies.py +127 -0
- pulumi_databricks/get_account_federation_policy.py +214 -0
- pulumi_databricks/get_account_network_policies.py +4 -0
- pulumi_databricks/get_account_network_policy.py +17 -18
- pulumi_databricks/get_account_setting_v2.py +331 -0
- pulumi_databricks/get_alert_v2.py +78 -70
- pulumi_databricks/get_alerts_v2.py +31 -12
- pulumi_databricks/get_app.py +21 -9
- pulumi_databricks/get_apps.py +22 -10
- pulumi_databricks/get_apps_settings_custom_template.py +207 -0
- pulumi_databricks/get_apps_settings_custom_templates.py +133 -0
- pulumi_databricks/get_aws_bucket_policy.py +6 -6
- pulumi_databricks/get_budget_policies.py +70 -6
- pulumi_databricks/get_budget_policy.py +35 -30
- pulumi_databricks/get_catalog.py +21 -4
- pulumi_databricks/get_catalogs.py +23 -4
- pulumi_databricks/get_cluster.py +21 -4
- pulumi_databricks/get_cluster_policy.py +23 -4
- pulumi_databricks/get_clusters.py +21 -4
- pulumi_databricks/get_current_metastore.py +21 -4
- pulumi_databricks/get_dashboards.py +24 -4
- pulumi_databricks/get_data_quality_monitor.py +210 -0
- pulumi_databricks/get_data_quality_monitors.py +143 -0
- pulumi_databricks/get_data_quality_refresh.py +270 -0
- pulumi_databricks/get_data_quality_refreshes.py +207 -0
- pulumi_databricks/get_database_database_catalog.py +6 -20
- pulumi_databricks/get_database_database_catalogs.py +46 -8
- pulumi_databricks/get_database_instance.py +122 -75
- pulumi_databricks/get_database_instances.py +31 -6
- pulumi_databricks/get_database_synced_database_table.py +7 -28
- pulumi_databricks/get_database_synced_database_tables.py +43 -5
- pulumi_databricks/get_directory.py +20 -1
- pulumi_databricks/get_entity_tag_assignment.py +202 -0
- pulumi_databricks/get_entity_tag_assignments.py +187 -0
- pulumi_databricks/get_external_location.py +21 -4
- pulumi_databricks/get_external_locations.py +23 -4
- pulumi_databricks/get_external_metadata.py +12 -50
- pulumi_databricks/get_external_metadatas.py +55 -6
- pulumi_databricks/get_feature_engineering_feature.py +179 -0
- pulumi_databricks/get_feature_engineering_features.py +103 -0
- pulumi_databricks/get_feature_engineering_materialized_feature.py +180 -0
- pulumi_databricks/get_feature_engineering_materialized_features.py +123 -0
- pulumi_databricks/get_functions.py +16 -1
- pulumi_databricks/get_instance_profiles.py +21 -4
- pulumi_databricks/get_jobs.py +23 -4
- pulumi_databricks/get_materialized_features_feature_tag.py +3 -11
- pulumi_databricks/get_materialized_features_feature_tags.py +59 -8
- pulumi_databricks/get_metastore.py +2 -2
- pulumi_databricks/get_mlflow_experiment.py +18 -1
- pulumi_databricks/get_mlflow_model.py +18 -1
- pulumi_databricks/get_mlflow_models.py +23 -4
- pulumi_databricks/get_node_type.py +42 -5
- pulumi_databricks/get_notification_destinations.py +17 -1
- pulumi_databricks/get_online_store.py +7 -17
- pulumi_databricks/get_online_stores.py +29 -8
- pulumi_databricks/get_pipelines.py +23 -4
- pulumi_databricks/get_policy_info.py +28 -99
- pulumi_databricks/get_policy_infos.py +92 -5
- pulumi_databricks/get_quality_monitor_v2.py +4 -0
- pulumi_databricks/get_quality_monitors_v2.py +22 -3
- pulumi_databricks/get_registered_model.py +19 -4
- pulumi_databricks/get_registered_model_versions.py +19 -4
- pulumi_databricks/get_rfa_access_request_destinations.py +126 -0
- pulumi_databricks/get_schema.py +18 -1
- pulumi_databricks/get_schemas.py +23 -4
- pulumi_databricks/get_service_principal_federation_policies.py +151 -0
- pulumi_databricks/get_service_principal_federation_policy.py +220 -0
- pulumi_databricks/get_serving_endpoints.py +19 -4
- pulumi_databricks/get_share.py +117 -18
- pulumi_databricks/get_shares.py +22 -3
- pulumi_databricks/get_spark_version.py +20 -1
- pulumi_databricks/get_sql_warehouse.py +16 -1
- pulumi_databricks/get_sql_warehouses.py +20 -1
- pulumi_databricks/get_storage_credential.py +18 -1
- pulumi_databricks/get_storage_credentials.py +23 -4
- pulumi_databricks/get_table.py +18 -1
- pulumi_databricks/get_tables.py +20 -1
- pulumi_databricks/get_tag_policies.py +139 -0
- pulumi_databricks/get_tag_policy.py +175 -0
- pulumi_databricks/get_views.py +20 -1
- pulumi_databricks/get_volume.py +18 -1
- pulumi_databricks/get_volumes.py +20 -1
- pulumi_databricks/get_workspace_network_option.py +8 -16
- pulumi_databricks/get_workspace_setting_v2.py +331 -0
- pulumi_databricks/get_zones.py +20 -1
- pulumi_databricks/git_credential.py +54 -7
- pulumi_databricks/grant.py +2 -2
- pulumi_databricks/group.py +21 -21
- pulumi_databricks/job.py +47 -0
- pulumi_databricks/library.py +165 -0
- pulumi_databricks/materialized_features_feature_tag.py +8 -4
- pulumi_databricks/mws_ncc_private_endpoint_rule.py +7 -7
- pulumi_databricks/mws_permission_assignment.py +16 -16
- pulumi_databricks/mws_storage_configurations.py +6 -6
- pulumi_databricks/mws_workspaces.py +76 -29
- pulumi_databricks/online_store.py +8 -4
- pulumi_databricks/outputs.py +26397 -22382
- pulumi_databricks/permission_assignment.py +266 -24
- pulumi_databricks/pipeline.py +37 -3
- pulumi_databricks/policy_info.py +43 -39
- pulumi_databricks/provider.py +15 -0
- pulumi_databricks/pulumi-plugin.json +1 -1
- pulumi_databricks/quality_monitor.py +47 -0
- pulumi_databricks/quality_monitor_v2.py +8 -4
- pulumi_databricks/registered_model.py +301 -29
- pulumi_databricks/rfa_access_request_destinations.py +286 -0
- pulumi_databricks/service_principal_federation_policy.py +469 -0
- pulumi_databricks/share.py +71 -84
- pulumi_databricks/sql_endpoint.py +47 -0
- pulumi_databricks/sql_table.py +35 -7
- pulumi_databricks/storage_credential.py +59 -6
- pulumi_databricks/tag_policy.py +357 -0
- pulumi_databricks/user.py +21 -21
- pulumi_databricks/workspace_binding.py +0 -48
- pulumi_databricks/workspace_network_option.py +8 -4
- pulumi_databricks/workspace_setting_v2.py +759 -0
- {pulumi_databricks-1.75.0a1756323569.dist-info → pulumi_databricks-1.77.0.dist-info}/METADATA +1 -1
- pulumi_databricks-1.77.0.dist-info/RECORD +250 -0
- pulumi_databricks/clean_room_asset.py +0 -891
- pulumi_databricks/clean_room_auto_approval_rule.py +0 -426
- pulumi_databricks/clean_rooms_clean_room.py +0 -518
- pulumi_databricks/get_clean_room_asset.py +0 -399
- pulumi_databricks/get_clean_room_asset_revisions_clean_room_asset.py +0 -375
- pulumi_databricks/get_clean_room_asset_revisions_clean_room_assets.py +0 -82
- pulumi_databricks/get_clean_room_assets.py +0 -104
- pulumi_databricks/get_clean_room_auto_approval_rule.py +0 -200
- pulumi_databricks/get_clean_room_auto_approval_rules.py +0 -82
- pulumi_databricks/get_clean_rooms_clean_room.py +0 -272
- pulumi_databricks/get_clean_rooms_clean_rooms.py +0 -104
- pulumi_databricks/get_recipient_federation_policies.py +0 -82
- pulumi_databricks/get_recipient_federation_policy.py +0 -165
- pulumi_databricks/recipient_federation_policy.py +0 -346
- pulumi_databricks-1.75.0a1756323569.dist-info/RECORD +0 -231
- {pulumi_databricks-1.75.0a1756323569.dist-info → pulumi_databricks-1.77.0.dist-info}/WHEEL +0 -0
- {pulumi_databricks-1.75.0a1756323569.dist-info → pulumi_databricks-1.77.0.dist-info}/top_level.txt +0 -0
|
@@ -284,6 +284,8 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
284
284
|
spec: Optional[pulumi.Input[Union['DatabaseSyncedDatabaseTableSpecArgs', 'DatabaseSyncedDatabaseTableSpecArgsDict']]] = None,
|
|
285
285
|
__props__=None):
|
|
286
286
|
"""
|
|
287
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
288
|
+
|
|
287
289
|
Lakebase Synced Database Tables are Postgres tables automatically synced from a source table inside Unity Catalog.
|
|
288
290
|
They can be used to serve realtime queries without the operational overhead of managing ETL pipelines.
|
|
289
291
|
|
|
@@ -292,6 +294,28 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
292
294
|
|
|
293
295
|
## Example Usage
|
|
294
296
|
|
|
297
|
+
### Creating a Synced Database Table inside a Database Catalog
|
|
298
|
+
|
|
299
|
+
This example creates a Synced Database Table inside a Database Catalog.
|
|
300
|
+
|
|
301
|
+
### Creating a Synced Database Table inside a Standard Catalog
|
|
302
|
+
|
|
303
|
+
This example creates a Synced Database Table inside a Standard Catalog.
|
|
304
|
+
|
|
305
|
+
### Creating multiple Synced Database Tables and bin packing them into a single pipeline
|
|
306
|
+
|
|
307
|
+
This example creates two Synced Database Tables. The first one specifies a new pipeline spec,
|
|
308
|
+
which generates a new pipeline. The second one utilizes the pipeline ID of the first table.
|
|
309
|
+
|
|
310
|
+
### Creating a Synced Database Table with a custom Jobs schedule
|
|
311
|
+
|
|
312
|
+
This example creates a Synced Database Table and customizes the pipeline schedule. It assumes you already have
|
|
313
|
+
|
|
314
|
+
- A database instance named `"my-database-instance"`
|
|
315
|
+
- A standard catalog named `"my_standard_catalog"`
|
|
316
|
+
- A schema in the standard catalog named `"default"`
|
|
317
|
+
- A source delta table named `"source_delta.schema.customer"` with the primary key `"c_custkey"`
|
|
318
|
+
|
|
295
319
|
## Import
|
|
296
320
|
|
|
297
321
|
As of Pulumi v1.5, resources can be imported through configuration.
|
|
@@ -300,7 +324,7 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
300
324
|
|
|
301
325
|
import {
|
|
302
326
|
|
|
303
|
-
id = name
|
|
327
|
+
id = "name"
|
|
304
328
|
|
|
305
329
|
to = databricks_database_synced_database_table.this
|
|
306
330
|
|
|
@@ -309,7 +333,7 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
309
333
|
If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
|
|
310
334
|
|
|
311
335
|
```sh
|
|
312
|
-
$ pulumi import databricks:index/databaseSyncedDatabaseTable:DatabaseSyncedDatabaseTable
|
|
336
|
+
$ pulumi import databricks:index/databaseSyncedDatabaseTable:DatabaseSyncedDatabaseTable this "name"
|
|
313
337
|
```
|
|
314
338
|
|
|
315
339
|
:param str resource_name: The name of the resource.
|
|
@@ -337,6 +361,8 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
337
361
|
args: Optional[DatabaseSyncedDatabaseTableArgs] = None,
|
|
338
362
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
339
363
|
"""
|
|
364
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
365
|
+
|
|
340
366
|
Lakebase Synced Database Tables are Postgres tables automatically synced from a source table inside Unity Catalog.
|
|
341
367
|
They can be used to serve realtime queries without the operational overhead of managing ETL pipelines.
|
|
342
368
|
|
|
@@ -345,6 +371,28 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
345
371
|
|
|
346
372
|
## Example Usage
|
|
347
373
|
|
|
374
|
+
### Creating a Synced Database Table inside a Database Catalog
|
|
375
|
+
|
|
376
|
+
This example creates a Synced Database Table inside a Database Catalog.
|
|
377
|
+
|
|
378
|
+
### Creating a Synced Database Table inside a Standard Catalog
|
|
379
|
+
|
|
380
|
+
This example creates a Synced Database Table inside a Standard Catalog.
|
|
381
|
+
|
|
382
|
+
### Creating multiple Synced Database Tables and bin packing them into a single pipeline
|
|
383
|
+
|
|
384
|
+
This example creates two Synced Database Tables. The first one specifies a new pipeline spec,
|
|
385
|
+
which generates a new pipeline. The second one utilizes the pipeline ID of the first table.
|
|
386
|
+
|
|
387
|
+
### Creating a Synced Database Table with a custom Jobs schedule
|
|
388
|
+
|
|
389
|
+
This example creates a Synced Database Table and customizes the pipeline schedule. It assumes you already have
|
|
390
|
+
|
|
391
|
+
- A database instance named `"my-database-instance"`
|
|
392
|
+
- A standard catalog named `"my_standard_catalog"`
|
|
393
|
+
- A schema in the standard catalog named `"default"`
|
|
394
|
+
- A source delta table named `"source_delta.schema.customer"` with the primary key `"c_custkey"`
|
|
395
|
+
|
|
348
396
|
## Import
|
|
349
397
|
|
|
350
398
|
As of Pulumi v1.5, resources can be imported through configuration.
|
|
@@ -353,7 +401,7 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
353
401
|
|
|
354
402
|
import {
|
|
355
403
|
|
|
356
|
-
id = name
|
|
404
|
+
id = "name"
|
|
357
405
|
|
|
358
406
|
to = databricks_database_synced_database_table.this
|
|
359
407
|
|
|
@@ -362,7 +410,7 @@ class DatabaseSyncedDatabaseTable(pulumi.CustomResource):
|
|
|
362
410
|
If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
|
|
363
411
|
|
|
364
412
|
```sh
|
|
365
|
-
$ pulumi import databricks:index/databaseSyncedDatabaseTable:DatabaseSyncedDatabaseTable
|
|
413
|
+
$ pulumi import databricks:index/databaseSyncedDatabaseTable:DatabaseSyncedDatabaseTable this "name"
|
|
366
414
|
```
|
|
367
415
|
|
|
368
416
|
:param str resource_name: The name of the resource.
|
|
@@ -31,14 +31,14 @@ class EntitlementsArgs:
|
|
|
31
31
|
The set of arguments for constructing a Entitlements resource.
|
|
32
32
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: Allow the principal to have cluster create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and `cluster_id` argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
33
33
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: Allow the principal to have instance pool create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
34
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
34
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
35
35
|
:param pulumi.Input[_builtins.str] group_id: Canonical unique identifier for the group.
|
|
36
36
|
:param pulumi.Input[_builtins.str] service_principal_id: Canonical unique identifier for the service principal.
|
|
37
37
|
|
|
38
38
|
The following entitlements are available.
|
|
39
39
|
:param pulumi.Input[_builtins.str] user_id: Canonical unique identifier for the user.
|
|
40
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace.
|
|
41
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access to
|
|
40
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
41
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
42
42
|
"""
|
|
43
43
|
if allow_cluster_create is not None:
|
|
44
44
|
pulumi.set(__self__, "allow_cluster_create", allow_cluster_create)
|
|
@@ -85,7 +85,7 @@ class EntitlementsArgs:
|
|
|
85
85
|
@pulumi.getter(name="databricksSqlAccess")
|
|
86
86
|
def databricks_sql_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
87
87
|
"""
|
|
88
|
-
This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
88
|
+
This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
89
89
|
"""
|
|
90
90
|
return pulumi.get(self, "databricks_sql_access")
|
|
91
91
|
|
|
@@ -135,7 +135,7 @@ class EntitlementsArgs:
|
|
|
135
135
|
@pulumi.getter(name="workspaceAccess")
|
|
136
136
|
def workspace_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
137
137
|
"""
|
|
138
|
-
This is a field to allow the principal to have access to a Databricks Workspace.
|
|
138
|
+
This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
139
139
|
"""
|
|
140
140
|
return pulumi.get(self, "workspace_access")
|
|
141
141
|
|
|
@@ -147,7 +147,7 @@ class EntitlementsArgs:
|
|
|
147
147
|
@pulumi.getter(name="workspaceConsume")
|
|
148
148
|
def workspace_consume(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
149
149
|
"""
|
|
150
|
-
This is a field to allow the principal to have access to
|
|
150
|
+
This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
151
151
|
"""
|
|
152
152
|
return pulumi.get(self, "workspace_consume")
|
|
153
153
|
|
|
@@ -171,14 +171,14 @@ class _EntitlementsState:
|
|
|
171
171
|
Input properties used for looking up and filtering Entitlements resources.
|
|
172
172
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: Allow the principal to have cluster create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and `cluster_id` argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
173
173
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: Allow the principal to have instance pool create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
174
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
174
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
175
175
|
:param pulumi.Input[_builtins.str] group_id: Canonical unique identifier for the group.
|
|
176
176
|
:param pulumi.Input[_builtins.str] service_principal_id: Canonical unique identifier for the service principal.
|
|
177
177
|
|
|
178
178
|
The following entitlements are available.
|
|
179
179
|
:param pulumi.Input[_builtins.str] user_id: Canonical unique identifier for the user.
|
|
180
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace.
|
|
181
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access to
|
|
180
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
181
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
182
182
|
"""
|
|
183
183
|
if allow_cluster_create is not None:
|
|
184
184
|
pulumi.set(__self__, "allow_cluster_create", allow_cluster_create)
|
|
@@ -225,7 +225,7 @@ class _EntitlementsState:
|
|
|
225
225
|
@pulumi.getter(name="databricksSqlAccess")
|
|
226
226
|
def databricks_sql_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
227
227
|
"""
|
|
228
|
-
This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
228
|
+
This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "databricks_sql_access")
|
|
231
231
|
|
|
@@ -275,7 +275,7 @@ class _EntitlementsState:
|
|
|
275
275
|
@pulumi.getter(name="workspaceAccess")
|
|
276
276
|
def workspace_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
277
277
|
"""
|
|
278
|
-
This is a field to allow the principal to have access to a Databricks Workspace.
|
|
278
|
+
This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
279
279
|
"""
|
|
280
280
|
return pulumi.get(self, "workspace_access")
|
|
281
281
|
|
|
@@ -287,7 +287,7 @@ class _EntitlementsState:
|
|
|
287
287
|
@pulumi.getter(name="workspaceConsume")
|
|
288
288
|
def workspace_consume(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
289
289
|
"""
|
|
290
|
-
This is a field to allow the principal to have access to
|
|
290
|
+
This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
291
291
|
"""
|
|
292
292
|
return pulumi.get(self, "workspace_consume")
|
|
293
293
|
|
|
@@ -403,14 +403,14 @@ class Entitlements(pulumi.CustomResource):
|
|
|
403
403
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
404
404
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: Allow the principal to have cluster create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and `cluster_id` argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
405
405
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: Allow the principal to have instance pool create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
406
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
406
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
407
407
|
:param pulumi.Input[_builtins.str] group_id: Canonical unique identifier for the group.
|
|
408
408
|
:param pulumi.Input[_builtins.str] service_principal_id: Canonical unique identifier for the service principal.
|
|
409
409
|
|
|
410
410
|
The following entitlements are available.
|
|
411
411
|
:param pulumi.Input[_builtins.str] user_id: Canonical unique identifier for the user.
|
|
412
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace.
|
|
413
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access to
|
|
412
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
413
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
414
414
|
"""
|
|
415
415
|
...
|
|
416
416
|
@overload
|
|
@@ -573,14 +573,14 @@ class Entitlements(pulumi.CustomResource):
|
|
|
573
573
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
574
574
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: Allow the principal to have cluster create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and `cluster_id` argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
575
575
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: Allow the principal to have instance pool create privileges. Defaults to false. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
576
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
576
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
577
577
|
:param pulumi.Input[_builtins.str] group_id: Canonical unique identifier for the group.
|
|
578
578
|
:param pulumi.Input[_builtins.str] service_principal_id: Canonical unique identifier for the service principal.
|
|
579
579
|
|
|
580
580
|
The following entitlements are available.
|
|
581
581
|
:param pulumi.Input[_builtins.str] user_id: Canonical unique identifier for the user.
|
|
582
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace.
|
|
583
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access to
|
|
582
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
583
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
584
584
|
"""
|
|
585
585
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
586
586
|
|
|
@@ -616,7 +616,7 @@ class Entitlements(pulumi.CustomResource):
|
|
|
616
616
|
@pulumi.getter(name="databricksSqlAccess")
|
|
617
617
|
def databricks_sql_access(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
618
618
|
"""
|
|
619
|
-
This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
619
|
+
This is a field to allow the principal to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
620
620
|
"""
|
|
621
621
|
return pulumi.get(self, "databricks_sql_access")
|
|
622
622
|
|
|
@@ -650,7 +650,7 @@ class Entitlements(pulumi.CustomResource):
|
|
|
650
650
|
@pulumi.getter(name="workspaceAccess")
|
|
651
651
|
def workspace_access(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
652
652
|
"""
|
|
653
|
-
This is a field to allow the principal to have access to a Databricks Workspace.
|
|
653
|
+
This is a field to allow the principal to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
654
654
|
"""
|
|
655
655
|
return pulumi.get(self, "workspace_access")
|
|
656
656
|
|
|
@@ -658,7 +658,7 @@ class Entitlements(pulumi.CustomResource):
|
|
|
658
658
|
@pulumi.getter(name="workspaceConsume")
|
|
659
659
|
def workspace_consume(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
660
660
|
"""
|
|
661
|
-
This is a field to allow the principal to have access to
|
|
661
|
+
This is a field to allow the principal to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
662
662
|
"""
|
|
663
663
|
return pulumi.get(self, "workspace_consume")
|
|
664
664
|
|