pulumi-databricks 1.77.0a1761975834__py3-none-any.whl → 1.79.0a1762839813__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (176) hide show
  1. pulumi_databricks/__init__.py +54 -46
  2. pulumi_databricks/_inputs.py +26079 -32918
  3. pulumi_databricks/account_federation_policy.py +44 -16
  4. pulumi_databricks/account_network_policy.py +56 -2
  5. pulumi_databricks/account_setting_v2.py +46 -83
  6. pulumi_databricks/alert_v2.py +168 -134
  7. pulumi_databricks/app.py +153 -0
  8. pulumi_databricks/apps_settings_custom_template.py +75 -52
  9. pulumi_databricks/budget_policy.py +6 -2
  10. pulumi_databricks/catalog.py +65 -23
  11. pulumi_databricks/cluster.py +47 -168
  12. pulumi_databricks/cluster_policy.py +120 -0
  13. pulumi_databricks/config/__init__.pyi +4 -0
  14. pulumi_databricks/config/vars.py +8 -0
  15. pulumi_databricks/data_quality_monitor.py +453 -0
  16. pulumi_databricks/data_quality_refresh.py +492 -0
  17. pulumi_databricks/database_database_catalog.py +9 -52
  18. pulumi_databricks/database_instance.py +271 -120
  19. pulumi_databricks/database_synced_database_table.py +239 -52
  20. pulumi_databricks/entitlements.py +21 -21
  21. pulumi_databricks/entity_tag_assignment.py +83 -52
  22. pulumi_databricks/external_location.py +131 -7
  23. pulumi_databricks/external_metadata.py +16 -59
  24. pulumi_databricks/feature_engineering_feature.py +480 -0
  25. pulumi_databricks/feature_engineering_materialized_feature.py +397 -0
  26. pulumi_databricks/file.py +2 -2
  27. pulumi_databricks/get_account_federation_policies.py +22 -3
  28. pulumi_databricks/get_account_federation_policy.py +12 -27
  29. pulumi_databricks/get_account_network_policies.py +4 -0
  30. pulumi_databricks/get_account_network_policy.py +9 -18
  31. pulumi_databricks/get_account_setting_v2.py +36 -141
  32. pulumi_databricks/get_alert_v2.py +41 -107
  33. pulumi_databricks/get_alerts_v2.py +29 -31
  34. pulumi_databricks/get_app.py +21 -5
  35. pulumi_databricks/get_apps.py +22 -6
  36. pulumi_databricks/get_apps_settings_custom_template.py +11 -55
  37. pulumi_databricks/get_apps_settings_custom_templates.py +25 -21
  38. pulumi_databricks/get_aws_assume_role_policy.py +14 -14
  39. pulumi_databricks/get_aws_bucket_policy.py +10 -10
  40. pulumi_databricks/get_aws_unity_catalog_assume_role_policy.py +10 -10
  41. pulumi_databricks/get_aws_unity_catalog_policy.py +10 -10
  42. pulumi_databricks/get_budget_policies.py +70 -6
  43. pulumi_databricks/get_budget_policy.py +9 -32
  44. pulumi_databricks/get_catalog.py +21 -4
  45. pulumi_databricks/get_catalogs.py +23 -4
  46. pulumi_databricks/get_cluster.py +75 -4
  47. pulumi_databricks/get_cluster_policy.py +23 -4
  48. pulumi_databricks/get_clusters.py +21 -4
  49. pulumi_databricks/get_current_config.py +4 -4
  50. pulumi_databricks/get_current_metastore.py +21 -4
  51. pulumi_databricks/get_dashboards.py +20 -4
  52. pulumi_databricks/get_data_quality_monitor.py +210 -0
  53. pulumi_databricks/get_data_quality_monitors.py +143 -0
  54. pulumi_databricks/get_data_quality_refresh.py +270 -0
  55. pulumi_databricks/get_data_quality_refreshes.py +207 -0
  56. pulumi_databricks/get_database_database_catalog.py +10 -41
  57. pulumi_databricks/get_database_database_catalogs.py +37 -18
  58. pulumi_databricks/get_database_instance.py +93 -99
  59. pulumi_databricks/get_database_instances.py +20 -16
  60. pulumi_databricks/get_database_synced_database_table.py +11 -49
  61. pulumi_databricks/get_database_synced_database_tables.py +42 -23
  62. pulumi_databricks/get_directory.py +20 -1
  63. pulumi_databricks/get_entity_tag_assignment.py +63 -30
  64. pulumi_databricks/get_entity_tag_assignments.py +69 -23
  65. pulumi_databricks/get_external_location.py +21 -4
  66. pulumi_databricks/get_external_locations.py +23 -4
  67. pulumi_databricks/get_external_metadata.py +18 -73
  68. pulumi_databricks/get_external_metadatas.py +22 -16
  69. pulumi_databricks/get_feature_engineering_feature.py +179 -0
  70. pulumi_databricks/get_feature_engineering_features.py +103 -0
  71. pulumi_databricks/get_feature_engineering_materialized_feature.py +180 -0
  72. pulumi_databricks/get_feature_engineering_materialized_features.py +123 -0
  73. pulumi_databricks/get_functions.py +16 -1
  74. pulumi_databricks/get_instance_profiles.py +21 -4
  75. pulumi_databricks/get_jobs.py +23 -4
  76. pulumi_databricks/get_materialized_features_feature_tag.py +7 -32
  77. pulumi_databricks/get_materialized_features_feature_tags.py +50 -18
  78. pulumi_databricks/get_metastore.py +6 -6
  79. pulumi_databricks/get_mlflow_experiment.py +18 -1
  80. pulumi_databricks/get_mlflow_model.py +18 -1
  81. pulumi_databricks/get_mlflow_models.py +23 -4
  82. pulumi_databricks/get_node_type.py +42 -5
  83. pulumi_databricks/get_notebook.py +20 -1
  84. pulumi_databricks/get_notification_destinations.py +17 -1
  85. pulumi_databricks/get_online_store.py +11 -38
  86. pulumi_databricks/get_online_stores.py +20 -18
  87. pulumi_databricks/get_pipelines.py +23 -4
  88. pulumi_databricks/get_policy_info.py +21 -109
  89. pulumi_databricks/get_policy_infos.py +50 -25
  90. pulumi_databricks/get_quality_monitor_v2.py +8 -21
  91. pulumi_databricks/get_quality_monitors_v2.py +23 -25
  92. pulumi_databricks/get_registered_model.py +19 -4
  93. pulumi_databricks/get_registered_model_versions.py +19 -4
  94. pulumi_databricks/get_rfa_access_request_destinations.py +126 -0
  95. pulumi_databricks/get_schema.py +18 -1
  96. pulumi_databricks/get_schemas.py +23 -4
  97. pulumi_databricks/get_service_principal_federation_policies.py +23 -4
  98. pulumi_databricks/get_service_principal_federation_policy.py +15 -24
  99. pulumi_databricks/get_service_principals.py +64 -0
  100. pulumi_databricks/get_serving_endpoints.py +19 -4
  101. pulumi_databricks/get_share.py +117 -18
  102. pulumi_databricks/get_shares.py +22 -3
  103. pulumi_databricks/get_spark_version.py +20 -1
  104. pulumi_databricks/get_sql_warehouse.py +16 -1
  105. pulumi_databricks/get_sql_warehouses.py +20 -1
  106. pulumi_databricks/get_storage_credential.py +18 -1
  107. pulumi_databricks/get_storage_credentials.py +23 -4
  108. pulumi_databricks/get_table.py +18 -1
  109. pulumi_databricks/get_tables.py +20 -1
  110. pulumi_databricks/get_tag_policies.py +55 -23
  111. pulumi_databricks/get_tag_policy.py +60 -40
  112. pulumi_databricks/get_views.py +20 -1
  113. pulumi_databricks/get_volume.py +18 -1
  114. pulumi_databricks/get_volumes.py +20 -1
  115. pulumi_databricks/get_workspace_network_option.py +8 -16
  116. pulumi_databricks/get_workspace_setting_v2.py +41 -163
  117. pulumi_databricks/get_zones.py +20 -1
  118. pulumi_databricks/git_credential.py +54 -7
  119. pulumi_databricks/group.py +21 -21
  120. pulumi_databricks/instance_profile.py +0 -182
  121. pulumi_databricks/job.py +47 -0
  122. pulumi_databricks/library.py +165 -0
  123. pulumi_databricks/materialized_features_feature_tag.py +9 -52
  124. pulumi_databricks/metastore.py +81 -7
  125. pulumi_databricks/metastore_data_access.py +48 -0
  126. pulumi_databricks/mlflow_webhook.py +4 -4
  127. pulumi_databricks/mws_credentials.py +10 -10
  128. pulumi_databricks/mws_customer_managed_keys.py +0 -288
  129. pulumi_databricks/mws_log_delivery.py +146 -0
  130. pulumi_databricks/mws_storage_configurations.py +16 -16
  131. pulumi_databricks/mws_vpc_endpoint.py +56 -56
  132. pulumi_databricks/mws_workspaces.py +146 -65
  133. pulumi_databricks/notebook.py +49 -0
  134. pulumi_databricks/online_store.py +9 -52
  135. pulumi_databricks/outputs.py +11885 -13474
  136. pulumi_databricks/permission_assignment.py +299 -8
  137. pulumi_databricks/permissions.py +6 -6
  138. pulumi_databricks/pipeline.py +37 -3
  139. pulumi_databricks/policy_info.py +9 -52
  140. pulumi_databricks/provider.py +36 -1
  141. pulumi_databricks/pulumi-plugin.json +1 -1
  142. pulumi_databricks/quality_monitor.py +47 -0
  143. pulumi_databricks/quality_monitor_v2.py +9 -52
  144. pulumi_databricks/recipient.py +74 -0
  145. pulumi_databricks/registered_model.py +308 -36
  146. pulumi_databricks/rfa_access_request_destinations.py +286 -0
  147. pulumi_databricks/schema.py +7 -7
  148. pulumi_databricks/service_principal_federation_policy.py +48 -16
  149. pulumi_databricks/share.py +71 -84
  150. pulumi_databricks/sql_table.py +42 -14
  151. pulumi_databricks/storage_credential.py +15 -2
  152. pulumi_databricks/tag_policy.py +111 -54
  153. pulumi_databricks/user.py +21 -21
  154. pulumi_databricks/volume.py +7 -7
  155. pulumi_databricks/workspace_binding.py +0 -48
  156. pulumi_databricks/workspace_network_option.py +6 -2
  157. pulumi_databricks/workspace_setting_v2.py +49 -133
  158. {pulumi_databricks-1.77.0a1761975834.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/METADATA +1 -1
  159. pulumi_databricks-1.79.0a1762839813.dist-info/RECORD +250 -0
  160. pulumi_databricks/clean_room_asset.py +0 -938
  161. pulumi_databricks/clean_room_auto_approval_rule.py +0 -473
  162. pulumi_databricks/clean_rooms_clean_room.py +0 -569
  163. pulumi_databricks/get_clean_room_asset.py +0 -416
  164. pulumi_databricks/get_clean_room_asset_revisions_clean_room_asset.py +0 -392
  165. pulumi_databricks/get_clean_room_asset_revisions_clean_room_assets.py +0 -121
  166. pulumi_databricks/get_clean_room_assets.py +0 -146
  167. pulumi_databricks/get_clean_room_auto_approval_rule.py +0 -217
  168. pulumi_databricks/get_clean_room_auto_approval_rules.py +0 -101
  169. pulumi_databricks/get_clean_rooms_clean_room.py +0 -289
  170. pulumi_databricks/get_clean_rooms_clean_rooms.py +0 -125
  171. pulumi_databricks/get_recipient_federation_policies.py +0 -101
  172. pulumi_databricks/get_recipient_federation_policy.py +0 -182
  173. pulumi_databricks/recipient_federation_policy.py +0 -393
  174. pulumi_databricks-1.77.0a1761975834.dist-info/RECORD +0 -250
  175. {pulumi_databricks-1.77.0a1761975834.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/WHEEL +0 -0
  176. {pulumi_databricks-1.77.0a1761975834.dist-info → pulumi_databricks-1.79.0a1762839813.dist-info}/top_level.txt +0 -0
@@ -36,7 +36,6 @@ class CatalogArgs:
36
36
  provider_name: Optional[pulumi.Input[_builtins.str]] = None,
37
37
  provisioning_info: Optional[pulumi.Input['CatalogProvisioningInfoArgs']] = None,
38
38
  share_name: Optional[pulumi.Input[_builtins.str]] = None,
39
- storage_location: Optional[pulumi.Input[_builtins.str]] = None,
40
39
  storage_root: Optional[pulumi.Input[_builtins.str]] = None):
41
40
  """
42
41
  The set of arguments for constructing a Catalog resource.
@@ -52,7 +51,7 @@ class CatalogArgs:
52
51
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Catalog properties.
53
52
  :param pulumi.Input[_builtins.str] provider_name: For Delta Sharing Catalogs: the name of the delta sharing provider. Change forces creation of a new resource.
54
53
  :param pulumi.Input[_builtins.str] share_name: For Delta Sharing Catalogs: the name of the share under the share provider. Change forces creation of a new resource.
55
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
54
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
56
55
  """
57
56
  if browse_only is not None:
58
57
  pulumi.set(__self__, "browse_only", browse_only)
@@ -84,8 +83,6 @@ class CatalogArgs:
84
83
  pulumi.set(__self__, "provisioning_info", provisioning_info)
85
84
  if share_name is not None:
86
85
  pulumi.set(__self__, "share_name", share_name)
87
- if storage_location is not None:
88
- pulumi.set(__self__, "storage_location", storage_location)
89
86
  if storage_root is not None:
90
87
  pulumi.set(__self__, "storage_root", storage_root)
91
88
 
@@ -260,20 +257,11 @@ class CatalogArgs:
260
257
  def share_name(self, value: Optional[pulumi.Input[_builtins.str]]):
261
258
  pulumi.set(self, "share_name", value)
262
259
 
263
- @_builtins.property
264
- @pulumi.getter(name="storageLocation")
265
- def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
266
- return pulumi.get(self, "storage_location")
267
-
268
- @storage_location.setter
269
- def storage_location(self, value: Optional[pulumi.Input[_builtins.str]]):
270
- pulumi.set(self, "storage_location", value)
271
-
272
260
  @_builtins.property
273
261
  @pulumi.getter(name="storageRoot")
274
262
  def storage_root(self) -> Optional[pulumi.Input[_builtins.str]]:
275
263
  """
276
- Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
264
+ Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
277
265
  """
278
266
  return pulumi.get(self, "storage_root")
279
267
 
@@ -311,8 +299,11 @@ class _CatalogState:
311
299
  updated_by: Optional[pulumi.Input[_builtins.str]] = None):
312
300
  """
313
301
  Input properties used for looking up and filtering Catalog resources.
302
+ :param pulumi.Input[_builtins.str] catalog_type: the type of the catalog.
314
303
  :param pulumi.Input[_builtins.str] comment: User-supplied free-form text.
315
304
  :param pulumi.Input[_builtins.str] connection_name: For Foreign Catalogs: the name of the connection to an external data source. Changes forces creation of a new resource.
305
+ :param pulumi.Input[_builtins.int] created_at: time at which this catalog was created, in epoch milliseconds.
306
+ :param pulumi.Input[_builtins.str] created_by: username of catalog creator.
316
307
  :param pulumi.Input[_builtins.str] enable_predictive_optimization: Whether predictive optimization should be enabled for this object and objects under it. Can be `ENABLE`, `DISABLE` or `INHERIT`
317
308
  :param pulumi.Input[_builtins.bool] force_destroy: Delete catalog regardless of its contents.
318
309
  :param pulumi.Input[_builtins.str] isolation_mode: Whether the catalog is accessible from all workspaces or a specific set of workspaces. Can be `ISOLATED` or `OPEN`. Setting the catalog to `ISOLATED` will automatically allow access from the current workspace.
@@ -322,8 +313,12 @@ class _CatalogState:
322
313
  :param pulumi.Input[_builtins.str] owner: Username/groupname/sp application_id of the catalog owner.
323
314
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Catalog properties.
324
315
  :param pulumi.Input[_builtins.str] provider_name: For Delta Sharing Catalogs: the name of the delta sharing provider. Change forces creation of a new resource.
316
+ :param pulumi.Input[_builtins.str] securable_type: the type of Unity Catalog securable.
325
317
  :param pulumi.Input[_builtins.str] share_name: For Delta Sharing Catalogs: the name of the share under the share provider. Change forces creation of a new resource.
326
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
318
+ :param pulumi.Input[_builtins.str] storage_location: effective storage Location URL (full path) for managed tables within catalog.
319
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
320
+ :param pulumi.Input[_builtins.int] updated_at: time at which this catalog was last modified, in epoch milliseconds..
321
+ :param pulumi.Input[_builtins.str] updated_by: username of user who last modified catalog.
327
322
  """
328
323
  if browse_only is not None:
329
324
  pulumi.set(__self__, "browse_only", browse_only)
@@ -386,6 +381,9 @@ class _CatalogState:
386
381
  @_builtins.property
387
382
  @pulumi.getter(name="catalogType")
388
383
  def catalog_type(self) -> Optional[pulumi.Input[_builtins.str]]:
384
+ """
385
+ the type of the catalog.
386
+ """
389
387
  return pulumi.get(self, "catalog_type")
390
388
 
391
389
  @catalog_type.setter
@@ -419,6 +417,9 @@ class _CatalogState:
419
417
  @_builtins.property
420
418
  @pulumi.getter(name="createdAt")
421
419
  def created_at(self) -> Optional[pulumi.Input[_builtins.int]]:
420
+ """
421
+ time at which this catalog was created, in epoch milliseconds.
422
+ """
422
423
  return pulumi.get(self, "created_at")
423
424
 
424
425
  @created_at.setter
@@ -428,6 +429,9 @@ class _CatalogState:
428
429
  @_builtins.property
429
430
  @pulumi.getter(name="createdBy")
430
431
  def created_by(self) -> Optional[pulumi.Input[_builtins.str]]:
432
+ """
433
+ username of catalog creator.
434
+ """
431
435
  return pulumi.get(self, "created_by")
432
436
 
433
437
  @created_by.setter
@@ -572,6 +576,9 @@ class _CatalogState:
572
576
  @_builtins.property
573
577
  @pulumi.getter(name="securableType")
574
578
  def securable_type(self) -> Optional[pulumi.Input[_builtins.str]]:
579
+ """
580
+ the type of Unity Catalog securable.
581
+ """
575
582
  return pulumi.get(self, "securable_type")
576
583
 
577
584
  @securable_type.setter
@@ -593,6 +600,9 @@ class _CatalogState:
593
600
  @_builtins.property
594
601
  @pulumi.getter(name="storageLocation")
595
602
  def storage_location(self) -> Optional[pulumi.Input[_builtins.str]]:
603
+ """
604
+ effective storage Location URL (full path) for managed tables within catalog.
605
+ """
596
606
  return pulumi.get(self, "storage_location")
597
607
 
598
608
  @storage_location.setter
@@ -603,7 +613,7 @@ class _CatalogState:
603
613
  @pulumi.getter(name="storageRoot")
604
614
  def storage_root(self) -> Optional[pulumi.Input[_builtins.str]]:
605
615
  """
606
- Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
616
+ Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
607
617
  """
608
618
  return pulumi.get(self, "storage_root")
609
619
 
@@ -614,6 +624,9 @@ class _CatalogState:
614
624
  @_builtins.property
615
625
  @pulumi.getter(name="updatedAt")
616
626
  def updated_at(self) -> Optional[pulumi.Input[_builtins.int]]:
627
+ """
628
+ time at which this catalog was last modified, in epoch milliseconds..
629
+ """
617
630
  return pulumi.get(self, "updated_at")
618
631
 
619
632
  @updated_at.setter
@@ -623,6 +636,9 @@ class _CatalogState:
623
636
  @_builtins.property
624
637
  @pulumi.getter(name="updatedBy")
625
638
  def updated_by(self) -> Optional[pulumi.Input[_builtins.str]]:
639
+ """
640
+ username of user who last modified catalog.
641
+ """
626
642
  return pulumi.get(self, "updated_by")
627
643
 
628
644
  @updated_by.setter
@@ -651,7 +667,6 @@ class Catalog(pulumi.CustomResource):
651
667
  provider_name: Optional[pulumi.Input[_builtins.str]] = None,
652
668
  provisioning_info: Optional[pulumi.Input[Union['CatalogProvisioningInfoArgs', 'CatalogProvisioningInfoArgsDict']]] = None,
653
669
  share_name: Optional[pulumi.Input[_builtins.str]] = None,
654
- storage_location: Optional[pulumi.Input[_builtins.str]] = None,
655
670
  storage_root: Optional[pulumi.Input[_builtins.str]] = None,
656
671
  __props__=None):
657
672
  """
@@ -719,7 +734,7 @@ class Catalog(pulumi.CustomResource):
719
734
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Catalog properties.
720
735
  :param pulumi.Input[_builtins.str] provider_name: For Delta Sharing Catalogs: the name of the delta sharing provider. Change forces creation of a new resource.
721
736
  :param pulumi.Input[_builtins.str] share_name: For Delta Sharing Catalogs: the name of the share under the share provider. Change forces creation of a new resource.
722
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
737
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
723
738
  """
724
739
  ...
725
740
  @overload
@@ -808,7 +823,6 @@ class Catalog(pulumi.CustomResource):
808
823
  provider_name: Optional[pulumi.Input[_builtins.str]] = None,
809
824
  provisioning_info: Optional[pulumi.Input[Union['CatalogProvisioningInfoArgs', 'CatalogProvisioningInfoArgsDict']]] = None,
810
825
  share_name: Optional[pulumi.Input[_builtins.str]] = None,
811
- storage_location: Optional[pulumi.Input[_builtins.str]] = None,
812
826
  storage_root: Optional[pulumi.Input[_builtins.str]] = None,
813
827
  __props__=None):
814
828
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -834,13 +848,13 @@ class Catalog(pulumi.CustomResource):
834
848
  __props__.__dict__["provider_name"] = provider_name
835
849
  __props__.__dict__["provisioning_info"] = provisioning_info
836
850
  __props__.__dict__["share_name"] = share_name
837
- __props__.__dict__["storage_location"] = storage_location
838
851
  __props__.__dict__["storage_root"] = storage_root
839
852
  __props__.__dict__["catalog_type"] = None
840
853
  __props__.__dict__["created_at"] = None
841
854
  __props__.__dict__["created_by"] = None
842
855
  __props__.__dict__["full_name"] = None
843
856
  __props__.__dict__["securable_type"] = None
857
+ __props__.__dict__["storage_location"] = None
844
858
  __props__.__dict__["updated_at"] = None
845
859
  __props__.__dict__["updated_by"] = None
846
860
  super(Catalog, __self__).__init__(
@@ -884,8 +898,11 @@ class Catalog(pulumi.CustomResource):
884
898
  :param str resource_name: The unique name of the resulting resource.
885
899
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
886
900
  :param pulumi.ResourceOptions opts: Options for the resource.
901
+ :param pulumi.Input[_builtins.str] catalog_type: the type of the catalog.
887
902
  :param pulumi.Input[_builtins.str] comment: User-supplied free-form text.
888
903
  :param pulumi.Input[_builtins.str] connection_name: For Foreign Catalogs: the name of the connection to an external data source. Changes forces creation of a new resource.
904
+ :param pulumi.Input[_builtins.int] created_at: time at which this catalog was created, in epoch milliseconds.
905
+ :param pulumi.Input[_builtins.str] created_by: username of catalog creator.
889
906
  :param pulumi.Input[_builtins.str] enable_predictive_optimization: Whether predictive optimization should be enabled for this object and objects under it. Can be `ENABLE`, `DISABLE` or `INHERIT`
890
907
  :param pulumi.Input[_builtins.bool] force_destroy: Delete catalog regardless of its contents.
891
908
  :param pulumi.Input[_builtins.str] isolation_mode: Whether the catalog is accessible from all workspaces or a specific set of workspaces. Can be `ISOLATED` or `OPEN`. Setting the catalog to `ISOLATED` will automatically allow access from the current workspace.
@@ -895,8 +912,12 @@ class Catalog(pulumi.CustomResource):
895
912
  :param pulumi.Input[_builtins.str] owner: Username/groupname/sp application_id of the catalog owner.
896
913
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: Extensible Catalog properties.
897
914
  :param pulumi.Input[_builtins.str] provider_name: For Delta Sharing Catalogs: the name of the delta sharing provider. Change forces creation of a new resource.
915
+ :param pulumi.Input[_builtins.str] securable_type: the type of Unity Catalog securable.
898
916
  :param pulumi.Input[_builtins.str] share_name: For Delta Sharing Catalogs: the name of the share under the share provider. Change forces creation of a new resource.
899
- :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
917
+ :param pulumi.Input[_builtins.str] storage_location: effective storage Location URL (full path) for managed tables within catalog.
918
+ :param pulumi.Input[_builtins.str] storage_root: Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
919
+ :param pulumi.Input[_builtins.int] updated_at: time at which this catalog was last modified, in epoch milliseconds..
920
+ :param pulumi.Input[_builtins.str] updated_by: username of user who last modified catalog.
900
921
  """
901
922
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
902
923
 
@@ -936,6 +957,9 @@ class Catalog(pulumi.CustomResource):
936
957
  @_builtins.property
937
958
  @pulumi.getter(name="catalogType")
938
959
  def catalog_type(self) -> pulumi.Output[_builtins.str]:
960
+ """
961
+ the type of the catalog.
962
+ """
939
963
  return pulumi.get(self, "catalog_type")
940
964
 
941
965
  @_builtins.property
@@ -957,11 +981,17 @@ class Catalog(pulumi.CustomResource):
957
981
  @_builtins.property
958
982
  @pulumi.getter(name="createdAt")
959
983
  def created_at(self) -> pulumi.Output[_builtins.int]:
984
+ """
985
+ time at which this catalog was created, in epoch milliseconds.
986
+ """
960
987
  return pulumi.get(self, "created_at")
961
988
 
962
989
  @_builtins.property
963
990
  @pulumi.getter(name="createdBy")
964
991
  def created_by(self) -> pulumi.Output[_builtins.str]:
992
+ """
993
+ username of catalog creator.
994
+ """
965
995
  return pulumi.get(self, "created_by")
966
996
 
967
997
  @_builtins.property
@@ -1054,6 +1084,9 @@ class Catalog(pulumi.CustomResource):
1054
1084
  @_builtins.property
1055
1085
  @pulumi.getter(name="securableType")
1056
1086
  def securable_type(self) -> pulumi.Output[_builtins.str]:
1087
+ """
1088
+ the type of Unity Catalog securable.
1089
+ """
1057
1090
  return pulumi.get(self, "securable_type")
1058
1091
 
1059
1092
  @_builtins.property
@@ -1066,24 +1099,33 @@ class Catalog(pulumi.CustomResource):
1066
1099
 
1067
1100
  @_builtins.property
1068
1101
  @pulumi.getter(name="storageLocation")
1069
- def storage_location(self) -> pulumi.Output[Optional[_builtins.str]]:
1102
+ def storage_location(self) -> pulumi.Output[_builtins.str]:
1103
+ """
1104
+ effective storage Location URL (full path) for managed tables within catalog.
1105
+ """
1070
1106
  return pulumi.get(self, "storage_location")
1071
1107
 
1072
1108
  @_builtins.property
1073
1109
  @pulumi.getter(name="storageRoot")
1074
1110
  def storage_root(self) -> pulumi.Output[Optional[_builtins.str]]:
1075
1111
  """
1076
- Managed location of the catalog. Location in cloud storage where data for managed tables will be stored. If not specified, the location will default to the metastore root location. Change forces creation of a new resource.
1112
+ Managed location of the catalog. 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 metastore root location. Change forces creation of a new resource.
1077
1113
  """
1078
1114
  return pulumi.get(self, "storage_root")
1079
1115
 
1080
1116
  @_builtins.property
1081
1117
  @pulumi.getter(name="updatedAt")
1082
1118
  def updated_at(self) -> pulumi.Output[_builtins.int]:
1119
+ """
1120
+ time at which this catalog was last modified, in epoch milliseconds..
1121
+ """
1083
1122
  return pulumi.get(self, "updated_at")
1084
1123
 
1085
1124
  @_builtins.property
1086
1125
  @pulumi.getter(name="updatedBy")
1087
1126
  def updated_by(self) -> pulumi.Output[_builtins.str]:
1127
+ """
1128
+ username of user who last modified catalog.
1129
+ """
1088
1130
  return pulumi.get(self, "updated_by")
1089
1131