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
@@ -0,0 +1,179 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetFeatureEngineeringFeatureResult',
20
+ 'AwaitableGetFeatureEngineeringFeatureResult',
21
+ 'get_feature_engineering_feature',
22
+ 'get_feature_engineering_feature_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetFeatureEngineeringFeatureResult:
27
+ """
28
+ A collection of values returned by getFeatureEngineeringFeature.
29
+ """
30
+ def __init__(__self__, description=None, filter_condition=None, full_name=None, function=None, id=None, inputs=None, source=None, time_window=None):
31
+ if description and not isinstance(description, str):
32
+ raise TypeError("Expected argument 'description' to be a str")
33
+ pulumi.set(__self__, "description", description)
34
+ if filter_condition and not isinstance(filter_condition, str):
35
+ raise TypeError("Expected argument 'filter_condition' to be a str")
36
+ pulumi.set(__self__, "filter_condition", filter_condition)
37
+ if full_name and not isinstance(full_name, str):
38
+ raise TypeError("Expected argument 'full_name' to be a str")
39
+ pulumi.set(__self__, "full_name", full_name)
40
+ if function and not isinstance(function, dict):
41
+ raise TypeError("Expected argument 'function' to be a dict")
42
+ pulumi.set(__self__, "function", function)
43
+ if id and not isinstance(id, str):
44
+ raise TypeError("Expected argument 'id' to be a str")
45
+ pulumi.set(__self__, "id", id)
46
+ if inputs and not isinstance(inputs, list):
47
+ raise TypeError("Expected argument 'inputs' to be a list")
48
+ pulumi.set(__self__, "inputs", inputs)
49
+ if source and not isinstance(source, dict):
50
+ raise TypeError("Expected argument 'source' to be a dict")
51
+ pulumi.set(__self__, "source", source)
52
+ if time_window and not isinstance(time_window, dict):
53
+ raise TypeError("Expected argument 'time_window' to be a dict")
54
+ pulumi.set(__self__, "time_window", time_window)
55
+
56
+ @_builtins.property
57
+ @pulumi.getter
58
+ def description(self) -> _builtins.str:
59
+ """
60
+ (string) - The description of the feature
61
+ """
62
+ return pulumi.get(self, "description")
63
+
64
+ @_builtins.property
65
+ @pulumi.getter(name="filterCondition")
66
+ def filter_condition(self) -> _builtins.str:
67
+ """
68
+ (string) - The filter condition applied to the source data before aggregation
69
+ """
70
+ return pulumi.get(self, "filter_condition")
71
+
72
+ @_builtins.property
73
+ @pulumi.getter(name="fullName")
74
+ def full_name(self) -> _builtins.str:
75
+ """
76
+ (string) - The full three-part (catalog, schema, table) name of the Delta table
77
+ """
78
+ return pulumi.get(self, "full_name")
79
+
80
+ @_builtins.property
81
+ @pulumi.getter
82
+ def function(self) -> 'outputs.GetFeatureEngineeringFeatureFunctionResult':
83
+ """
84
+ (Function) - The function by which the feature is computed
85
+ """
86
+ return pulumi.get(self, "function")
87
+
88
+ @_builtins.property
89
+ @pulumi.getter
90
+ def id(self) -> _builtins.str:
91
+ """
92
+ The provider-assigned unique ID for this managed resource.
93
+ """
94
+ return pulumi.get(self, "id")
95
+
96
+ @_builtins.property
97
+ @pulumi.getter
98
+ def inputs(self) -> Sequence[_builtins.str]:
99
+ """
100
+ (list of string) - The input columns from which the feature is computed
101
+ """
102
+ return pulumi.get(self, "inputs")
103
+
104
+ @_builtins.property
105
+ @pulumi.getter
106
+ def source(self) -> 'outputs.GetFeatureEngineeringFeatureSourceResult':
107
+ """
108
+ (DataSource) - The data source of the feature
109
+ """
110
+ return pulumi.get(self, "source")
111
+
112
+ @_builtins.property
113
+ @pulumi.getter(name="timeWindow")
114
+ def time_window(self) -> 'outputs.GetFeatureEngineeringFeatureTimeWindowResult':
115
+ """
116
+ (TimeWindow) - The time window in which the feature is computed
117
+ """
118
+ return pulumi.get(self, "time_window")
119
+
120
+
121
+ class AwaitableGetFeatureEngineeringFeatureResult(GetFeatureEngineeringFeatureResult):
122
+ # pylint: disable=using-constant-test
123
+ def __await__(self):
124
+ if False:
125
+ yield self
126
+ return GetFeatureEngineeringFeatureResult(
127
+ description=self.description,
128
+ filter_condition=self.filter_condition,
129
+ full_name=self.full_name,
130
+ function=self.function,
131
+ id=self.id,
132
+ inputs=self.inputs,
133
+ source=self.source,
134
+ time_window=self.time_window)
135
+
136
+
137
+ def get_feature_engineering_feature(full_name: Optional[_builtins.str] = None,
138
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFeatureEngineeringFeatureResult:
139
+ """
140
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
141
+
142
+
143
+ :param _builtins.str full_name: The full three-part name (catalog, schema, name) of the feature
144
+ """
145
+ __args__ = dict()
146
+ __args__['fullName'] = full_name
147
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
148
+ __ret__ = pulumi.runtime.invoke('databricks:index/getFeatureEngineeringFeature:getFeatureEngineeringFeature', __args__, opts=opts, typ=GetFeatureEngineeringFeatureResult).value
149
+
150
+ return AwaitableGetFeatureEngineeringFeatureResult(
151
+ description=pulumi.get(__ret__, 'description'),
152
+ filter_condition=pulumi.get(__ret__, 'filter_condition'),
153
+ full_name=pulumi.get(__ret__, 'full_name'),
154
+ function=pulumi.get(__ret__, 'function'),
155
+ id=pulumi.get(__ret__, 'id'),
156
+ inputs=pulumi.get(__ret__, 'inputs'),
157
+ source=pulumi.get(__ret__, 'source'),
158
+ time_window=pulumi.get(__ret__, 'time_window'))
159
+ def get_feature_engineering_feature_output(full_name: Optional[pulumi.Input[_builtins.str]] = None,
160
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFeatureEngineeringFeatureResult]:
161
+ """
162
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
163
+
164
+
165
+ :param _builtins.str full_name: The full three-part name (catalog, schema, name) of the feature
166
+ """
167
+ __args__ = dict()
168
+ __args__['fullName'] = full_name
169
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
170
+ __ret__ = pulumi.runtime.invoke_output('databricks:index/getFeatureEngineeringFeature:getFeatureEngineeringFeature', __args__, opts=opts, typ=GetFeatureEngineeringFeatureResult)
171
+ return __ret__.apply(lambda __response__: GetFeatureEngineeringFeatureResult(
172
+ description=pulumi.get(__response__, 'description'),
173
+ filter_condition=pulumi.get(__response__, 'filter_condition'),
174
+ full_name=pulumi.get(__response__, 'full_name'),
175
+ function=pulumi.get(__response__, 'function'),
176
+ id=pulumi.get(__response__, 'id'),
177
+ inputs=pulumi.get(__response__, 'inputs'),
178
+ source=pulumi.get(__response__, 'source'),
179
+ time_window=pulumi.get(__response__, 'time_window')))
@@ -0,0 +1,103 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetFeatureEngineeringFeaturesResult',
20
+ 'AwaitableGetFeatureEngineeringFeaturesResult',
21
+ 'get_feature_engineering_features',
22
+ 'get_feature_engineering_features_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetFeatureEngineeringFeaturesResult:
27
+ """
28
+ A collection of values returned by getFeatureEngineeringFeatures.
29
+ """
30
+ def __init__(__self__, features=None, id=None, page_size=None):
31
+ if features and not isinstance(features, list):
32
+ raise TypeError("Expected argument 'features' to be a list")
33
+ pulumi.set(__self__, "features", features)
34
+ if id and not isinstance(id, str):
35
+ raise TypeError("Expected argument 'id' to be a str")
36
+ pulumi.set(__self__, "id", id)
37
+ if page_size and not isinstance(page_size, int):
38
+ raise TypeError("Expected argument 'page_size' to be a int")
39
+ pulumi.set(__self__, "page_size", page_size)
40
+
41
+ @_builtins.property
42
+ @pulumi.getter
43
+ def features(self) -> Sequence['outputs.GetFeatureEngineeringFeaturesFeatureResult']:
44
+ return pulumi.get(self, "features")
45
+
46
+ @_builtins.property
47
+ @pulumi.getter
48
+ def id(self) -> _builtins.str:
49
+ """
50
+ The provider-assigned unique ID for this managed resource.
51
+ """
52
+ return pulumi.get(self, "id")
53
+
54
+ @_builtins.property
55
+ @pulumi.getter(name="pageSize")
56
+ def page_size(self) -> Optional[_builtins.int]:
57
+ return pulumi.get(self, "page_size")
58
+
59
+
60
+ class AwaitableGetFeatureEngineeringFeaturesResult(GetFeatureEngineeringFeaturesResult):
61
+ # pylint: disable=using-constant-test
62
+ def __await__(self):
63
+ if False:
64
+ yield self
65
+ return GetFeatureEngineeringFeaturesResult(
66
+ features=self.features,
67
+ id=self.id,
68
+ page_size=self.page_size)
69
+
70
+
71
+ def get_feature_engineering_features(page_size: Optional[_builtins.int] = None,
72
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFeatureEngineeringFeaturesResult:
73
+ """
74
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
75
+
76
+
77
+ :param _builtins.int page_size: The maximum number of results to return
78
+ """
79
+ __args__ = dict()
80
+ __args__['pageSize'] = page_size
81
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
82
+ __ret__ = pulumi.runtime.invoke('databricks:index/getFeatureEngineeringFeatures:getFeatureEngineeringFeatures', __args__, opts=opts, typ=GetFeatureEngineeringFeaturesResult).value
83
+
84
+ return AwaitableGetFeatureEngineeringFeaturesResult(
85
+ features=pulumi.get(__ret__, 'features'),
86
+ id=pulumi.get(__ret__, 'id'),
87
+ page_size=pulumi.get(__ret__, 'page_size'))
88
+ def get_feature_engineering_features_output(page_size: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
89
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFeatureEngineeringFeaturesResult]:
90
+ """
91
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
92
+
93
+
94
+ :param _builtins.int page_size: The maximum number of results to return
95
+ """
96
+ __args__ = dict()
97
+ __args__['pageSize'] = page_size
98
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
99
+ __ret__ = pulumi.runtime.invoke_output('databricks:index/getFeatureEngineeringFeatures:getFeatureEngineeringFeatures', __args__, opts=opts, typ=GetFeatureEngineeringFeaturesResult)
100
+ return __ret__.apply(lambda __response__: GetFeatureEngineeringFeaturesResult(
101
+ features=pulumi.get(__response__, 'features'),
102
+ id=pulumi.get(__response__, 'id'),
103
+ page_size=pulumi.get(__response__, 'page_size')))
@@ -0,0 +1,180 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetFeatureEngineeringMaterializedFeatureResult',
20
+ 'AwaitableGetFeatureEngineeringMaterializedFeatureResult',
21
+ 'get_feature_engineering_materialized_feature',
22
+ 'get_feature_engineering_materialized_feature_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetFeatureEngineeringMaterializedFeatureResult:
27
+ """
28
+ A collection of values returned by getFeatureEngineeringMaterializedFeature.
29
+ """
30
+ def __init__(__self__, feature_name=None, id=None, last_materialization_time=None, materialized_feature_id=None, offline_store_config=None, online_store_config=None, pipeline_schedule_state=None, table_name=None):
31
+ if feature_name and not isinstance(feature_name, str):
32
+ raise TypeError("Expected argument 'feature_name' to be a str")
33
+ pulumi.set(__self__, "feature_name", feature_name)
34
+ if id and not isinstance(id, str):
35
+ raise TypeError("Expected argument 'id' to be a str")
36
+ pulumi.set(__self__, "id", id)
37
+ if last_materialization_time and not isinstance(last_materialization_time, str):
38
+ raise TypeError("Expected argument 'last_materialization_time' to be a str")
39
+ pulumi.set(__self__, "last_materialization_time", last_materialization_time)
40
+ if materialized_feature_id and not isinstance(materialized_feature_id, str):
41
+ raise TypeError("Expected argument 'materialized_feature_id' to be a str")
42
+ pulumi.set(__self__, "materialized_feature_id", materialized_feature_id)
43
+ if offline_store_config and not isinstance(offline_store_config, dict):
44
+ raise TypeError("Expected argument 'offline_store_config' to be a dict")
45
+ pulumi.set(__self__, "offline_store_config", offline_store_config)
46
+ if online_store_config and not isinstance(online_store_config, dict):
47
+ raise TypeError("Expected argument 'online_store_config' to be a dict")
48
+ pulumi.set(__self__, "online_store_config", online_store_config)
49
+ if pipeline_schedule_state and not isinstance(pipeline_schedule_state, str):
50
+ raise TypeError("Expected argument 'pipeline_schedule_state' to be a str")
51
+ pulumi.set(__self__, "pipeline_schedule_state", pipeline_schedule_state)
52
+ if table_name and not isinstance(table_name, str):
53
+ raise TypeError("Expected argument 'table_name' to be a str")
54
+ pulumi.set(__self__, "table_name", table_name)
55
+
56
+ @_builtins.property
57
+ @pulumi.getter(name="featureName")
58
+ def feature_name(self) -> _builtins.str:
59
+ """
60
+ (string) - The full name of the feature in Unity Catalog
61
+ """
62
+ return pulumi.get(self, "feature_name")
63
+
64
+ @_builtins.property
65
+ @pulumi.getter
66
+ def id(self) -> _builtins.str:
67
+ """
68
+ The provider-assigned unique ID for this managed resource.
69
+ """
70
+ return pulumi.get(self, "id")
71
+
72
+ @_builtins.property
73
+ @pulumi.getter(name="lastMaterializationTime")
74
+ def last_materialization_time(self) -> _builtins.str:
75
+ """
76
+ (string) - The timestamp when the pipeline last ran and updated the materialized feature values.
77
+ If the pipeline has not run yet, this field will be null
78
+ """
79
+ return pulumi.get(self, "last_materialization_time")
80
+
81
+ @_builtins.property
82
+ @pulumi.getter(name="materializedFeatureId")
83
+ def materialized_feature_id(self) -> _builtins.str:
84
+ """
85
+ (string) - Unique identifier for the materialized feature
86
+ """
87
+ return pulumi.get(self, "materialized_feature_id")
88
+
89
+ @_builtins.property
90
+ @pulumi.getter(name="offlineStoreConfig")
91
+ def offline_store_config(self) -> 'outputs.GetFeatureEngineeringMaterializedFeatureOfflineStoreConfigResult':
92
+ """
93
+ (OfflineStoreConfig)
94
+ """
95
+ return pulumi.get(self, "offline_store_config")
96
+
97
+ @_builtins.property
98
+ @pulumi.getter(name="onlineStoreConfig")
99
+ def online_store_config(self) -> 'outputs.GetFeatureEngineeringMaterializedFeatureOnlineStoreConfigResult':
100
+ """
101
+ (OnlineStore)
102
+ """
103
+ return pulumi.get(self, "online_store_config")
104
+
105
+ @_builtins.property
106
+ @pulumi.getter(name="pipelineScheduleState")
107
+ def pipeline_schedule_state(self) -> _builtins.str:
108
+ """
109
+ (string) - The schedule state of the materialization pipeline. Possible values are: `ACTIVE`, `PAUSED`, `SNAPSHOT`
110
+ """
111
+ return pulumi.get(self, "pipeline_schedule_state")
112
+
113
+ @_builtins.property
114
+ @pulumi.getter(name="tableName")
115
+ def table_name(self) -> _builtins.str:
116
+ """
117
+ (string) - The fully qualified Unity Catalog path to the table containing the materialized feature (Delta table or Lakebase table). Output only
118
+ """
119
+ return pulumi.get(self, "table_name")
120
+
121
+
122
+ class AwaitableGetFeatureEngineeringMaterializedFeatureResult(GetFeatureEngineeringMaterializedFeatureResult):
123
+ # pylint: disable=using-constant-test
124
+ def __await__(self):
125
+ if False:
126
+ yield self
127
+ return GetFeatureEngineeringMaterializedFeatureResult(
128
+ feature_name=self.feature_name,
129
+ id=self.id,
130
+ last_materialization_time=self.last_materialization_time,
131
+ materialized_feature_id=self.materialized_feature_id,
132
+ offline_store_config=self.offline_store_config,
133
+ online_store_config=self.online_store_config,
134
+ pipeline_schedule_state=self.pipeline_schedule_state,
135
+ table_name=self.table_name)
136
+
137
+
138
+ def get_feature_engineering_materialized_feature(materialized_feature_id: Optional[_builtins.str] = None,
139
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFeatureEngineeringMaterializedFeatureResult:
140
+ """
141
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
142
+
143
+
144
+ :param _builtins.str materialized_feature_id: Unique identifier for the materialized feature
145
+ """
146
+ __args__ = dict()
147
+ __args__['materializedFeatureId'] = materialized_feature_id
148
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
149
+ __ret__ = pulumi.runtime.invoke('databricks:index/getFeatureEngineeringMaterializedFeature:getFeatureEngineeringMaterializedFeature', __args__, opts=opts, typ=GetFeatureEngineeringMaterializedFeatureResult).value
150
+
151
+ return AwaitableGetFeatureEngineeringMaterializedFeatureResult(
152
+ feature_name=pulumi.get(__ret__, 'feature_name'),
153
+ id=pulumi.get(__ret__, 'id'),
154
+ last_materialization_time=pulumi.get(__ret__, 'last_materialization_time'),
155
+ materialized_feature_id=pulumi.get(__ret__, 'materialized_feature_id'),
156
+ offline_store_config=pulumi.get(__ret__, 'offline_store_config'),
157
+ online_store_config=pulumi.get(__ret__, 'online_store_config'),
158
+ pipeline_schedule_state=pulumi.get(__ret__, 'pipeline_schedule_state'),
159
+ table_name=pulumi.get(__ret__, 'table_name'))
160
+ def get_feature_engineering_materialized_feature_output(materialized_feature_id: Optional[pulumi.Input[_builtins.str]] = None,
161
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFeatureEngineeringMaterializedFeatureResult]:
162
+ """
163
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
164
+
165
+
166
+ :param _builtins.str materialized_feature_id: Unique identifier for the materialized feature
167
+ """
168
+ __args__ = dict()
169
+ __args__['materializedFeatureId'] = materialized_feature_id
170
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
171
+ __ret__ = pulumi.runtime.invoke_output('databricks:index/getFeatureEngineeringMaterializedFeature:getFeatureEngineeringMaterializedFeature', __args__, opts=opts, typ=GetFeatureEngineeringMaterializedFeatureResult)
172
+ return __ret__.apply(lambda __response__: GetFeatureEngineeringMaterializedFeatureResult(
173
+ feature_name=pulumi.get(__response__, 'feature_name'),
174
+ id=pulumi.get(__response__, 'id'),
175
+ last_materialization_time=pulumi.get(__response__, 'last_materialization_time'),
176
+ materialized_feature_id=pulumi.get(__response__, 'materialized_feature_id'),
177
+ offline_store_config=pulumi.get(__response__, 'offline_store_config'),
178
+ online_store_config=pulumi.get(__response__, 'online_store_config'),
179
+ pipeline_schedule_state=pulumi.get(__response__, 'pipeline_schedule_state'),
180
+ table_name=pulumi.get(__response__, 'table_name')))
@@ -0,0 +1,123 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins as _builtins
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetFeatureEngineeringMaterializedFeaturesResult',
20
+ 'AwaitableGetFeatureEngineeringMaterializedFeaturesResult',
21
+ 'get_feature_engineering_materialized_features',
22
+ 'get_feature_engineering_materialized_features_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetFeatureEngineeringMaterializedFeaturesResult:
27
+ """
28
+ A collection of values returned by getFeatureEngineeringMaterializedFeatures.
29
+ """
30
+ def __init__(__self__, feature_name=None, id=None, materialized_features=None, page_size=None):
31
+ if feature_name and not isinstance(feature_name, str):
32
+ raise TypeError("Expected argument 'feature_name' to be a str")
33
+ pulumi.set(__self__, "feature_name", feature_name)
34
+ if id and not isinstance(id, str):
35
+ raise TypeError("Expected argument 'id' to be a str")
36
+ pulumi.set(__self__, "id", id)
37
+ if materialized_features and not isinstance(materialized_features, list):
38
+ raise TypeError("Expected argument 'materialized_features' to be a list")
39
+ pulumi.set(__self__, "materialized_features", materialized_features)
40
+ if page_size and not isinstance(page_size, int):
41
+ raise TypeError("Expected argument 'page_size' to be a int")
42
+ pulumi.set(__self__, "page_size", page_size)
43
+
44
+ @_builtins.property
45
+ @pulumi.getter(name="featureName")
46
+ def feature_name(self) -> Optional[_builtins.str]:
47
+ """
48
+ (string) - The full name of the feature in Unity Catalog
49
+ """
50
+ return pulumi.get(self, "feature_name")
51
+
52
+ @_builtins.property
53
+ @pulumi.getter
54
+ def id(self) -> _builtins.str:
55
+ """
56
+ The provider-assigned unique ID for this managed resource.
57
+ """
58
+ return pulumi.get(self, "id")
59
+
60
+ @_builtins.property
61
+ @pulumi.getter(name="materializedFeatures")
62
+ def materialized_features(self) -> Sequence['outputs.GetFeatureEngineeringMaterializedFeaturesMaterializedFeatureResult']:
63
+ return pulumi.get(self, "materialized_features")
64
+
65
+ @_builtins.property
66
+ @pulumi.getter(name="pageSize")
67
+ def page_size(self) -> Optional[_builtins.int]:
68
+ return pulumi.get(self, "page_size")
69
+
70
+
71
+ class AwaitableGetFeatureEngineeringMaterializedFeaturesResult(GetFeatureEngineeringMaterializedFeaturesResult):
72
+ # pylint: disable=using-constant-test
73
+ def __await__(self):
74
+ if False:
75
+ yield self
76
+ return GetFeatureEngineeringMaterializedFeaturesResult(
77
+ feature_name=self.feature_name,
78
+ id=self.id,
79
+ materialized_features=self.materialized_features,
80
+ page_size=self.page_size)
81
+
82
+
83
+ def get_feature_engineering_materialized_features(feature_name: Optional[_builtins.str] = None,
84
+ page_size: Optional[_builtins.int] = None,
85
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFeatureEngineeringMaterializedFeaturesResult:
86
+ """
87
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
88
+
89
+
90
+ :param _builtins.str feature_name: Filter by feature name. If specified, only materialized features materialized from this feature will be returned
91
+ :param _builtins.int page_size: The maximum number of results to return. Defaults to 100 if not specified. Cannot be greater than 1000
92
+ """
93
+ __args__ = dict()
94
+ __args__['featureName'] = feature_name
95
+ __args__['pageSize'] = page_size
96
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
97
+ __ret__ = pulumi.runtime.invoke('databricks:index/getFeatureEngineeringMaterializedFeatures:getFeatureEngineeringMaterializedFeatures', __args__, opts=opts, typ=GetFeatureEngineeringMaterializedFeaturesResult).value
98
+
99
+ return AwaitableGetFeatureEngineeringMaterializedFeaturesResult(
100
+ feature_name=pulumi.get(__ret__, 'feature_name'),
101
+ id=pulumi.get(__ret__, 'id'),
102
+ materialized_features=pulumi.get(__ret__, 'materialized_features'),
103
+ page_size=pulumi.get(__ret__, 'page_size'))
104
+ def get_feature_engineering_materialized_features_output(feature_name: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
105
+ page_size: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
106
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFeatureEngineeringMaterializedFeaturesResult]:
107
+ """
108
+ [![Private Preview](https://img.shields.io/badge/Release_Stage-Private_Preview-blueviolet)](https://docs.databricks.com/aws/en/release-notes/release-types)
109
+
110
+
111
+ :param _builtins.str feature_name: Filter by feature name. If specified, only materialized features materialized from this feature will be returned
112
+ :param _builtins.int page_size: The maximum number of results to return. Defaults to 100 if not specified. Cannot be greater than 1000
113
+ """
114
+ __args__ = dict()
115
+ __args__['featureName'] = feature_name
116
+ __args__['pageSize'] = page_size
117
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
118
+ __ret__ = pulumi.runtime.invoke_output('databricks:index/getFeatureEngineeringMaterializedFeatures:getFeatureEngineeringMaterializedFeatures', __args__, opts=opts, typ=GetFeatureEngineeringMaterializedFeaturesResult)
119
+ return __ret__.apply(lambda __response__: GetFeatureEngineeringMaterializedFeaturesResult(
120
+ feature_name=pulumi.get(__response__, 'feature_name'),
121
+ id=pulumi.get(__response__, 'id'),
122
+ materialized_features=pulumi.get(__response__, 'materialized_features'),
123
+ page_size=pulumi.get(__response__, 'page_size')))
@@ -28,7 +28,7 @@ class GetFunctionsResult:
28
28
  """
29
29
  A collection of values returned by getFunctions.
30
30
  """
31
- def __init__(__self__, catalog_name=None, functions=None, id=None, include_browse=None, schema_name=None):
31
+ def __init__(__self__, catalog_name=None, functions=None, id=None, include_browse=None, provider_config=None, schema_name=None):
32
32
  if catalog_name and not isinstance(catalog_name, str):
33
33
  raise TypeError("Expected argument 'catalog_name' to be a str")
34
34
  pulumi.set(__self__, "catalog_name", catalog_name)
@@ -41,6 +41,9 @@ class GetFunctionsResult:
41
41
  if include_browse and not isinstance(include_browse, bool):
42
42
  raise TypeError("Expected argument 'include_browse' to be a bool")
43
43
  pulumi.set(__self__, "include_browse", include_browse)
44
+ if provider_config and not isinstance(provider_config, dict):
45
+ raise TypeError("Expected argument 'provider_config' to be a dict")
46
+ pulumi.set(__self__, "provider_config", provider_config)
44
47
  if schema_name and not isinstance(schema_name, str):
45
48
  raise TypeError("Expected argument 'schema_name' to be a str")
46
49
  pulumi.set(__self__, "schema_name", schema_name)
@@ -74,6 +77,11 @@ class GetFunctionsResult:
74
77
  def include_browse(self) -> Optional[_builtins.bool]:
75
78
  return pulumi.get(self, "include_browse")
76
79
 
80
+ @_builtins.property
81
+ @pulumi.getter(name="providerConfig")
82
+ def provider_config(self) -> Optional['outputs.GetFunctionsProviderConfigResult']:
83
+ return pulumi.get(self, "provider_config")
84
+
77
85
  @_builtins.property
78
86
  @pulumi.getter(name="schemaName")
79
87
  def schema_name(self) -> _builtins.str:
@@ -93,12 +101,14 @@ class AwaitableGetFunctionsResult(GetFunctionsResult):
93
101
  functions=self.functions,
94
102
  id=self.id,
95
103
  include_browse=self.include_browse,
104
+ provider_config=self.provider_config,
96
105
  schema_name=self.schema_name)
97
106
 
98
107
 
99
108
  def get_functions(catalog_name: Optional[_builtins.str] = None,
100
109
  functions: Optional[Sequence[Union['GetFunctionsFunctionArgs', 'GetFunctionsFunctionArgsDict']]] = None,
101
110
  include_browse: Optional[_builtins.bool] = None,
111
+ provider_config: Optional[Union['GetFunctionsProviderConfigArgs', 'GetFunctionsProviderConfigArgsDict']] = None,
102
112
  schema_name: Optional[_builtins.str] = None,
103
113
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFunctionsResult:
104
114
  """
@@ -135,6 +145,7 @@ def get_functions(catalog_name: Optional[_builtins.str] = None,
135
145
  __args__['catalogName'] = catalog_name
136
146
  __args__['functions'] = functions
137
147
  __args__['includeBrowse'] = include_browse
148
+ __args__['providerConfig'] = provider_config
138
149
  __args__['schemaName'] = schema_name
139
150
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
140
151
  __ret__ = pulumi.runtime.invoke('databricks:index/getFunctions:getFunctions', __args__, opts=opts, typ=GetFunctionsResult).value
@@ -144,10 +155,12 @@ def get_functions(catalog_name: Optional[_builtins.str] = None,
144
155
  functions=pulumi.get(__ret__, 'functions'),
145
156
  id=pulumi.get(__ret__, 'id'),
146
157
  include_browse=pulumi.get(__ret__, 'include_browse'),
158
+ provider_config=pulumi.get(__ret__, 'provider_config'),
147
159
  schema_name=pulumi.get(__ret__, 'schema_name'))
148
160
  def get_functions_output(catalog_name: Optional[pulumi.Input[_builtins.str]] = None,
149
161
  functions: Optional[pulumi.Input[Optional[Sequence[Union['GetFunctionsFunctionArgs', 'GetFunctionsFunctionArgsDict']]]]] = None,
150
162
  include_browse: Optional[pulumi.Input[Optional[_builtins.bool]]] = None,
163
+ provider_config: Optional[pulumi.Input[Optional[Union['GetFunctionsProviderConfigArgs', 'GetFunctionsProviderConfigArgsDict']]]] = None,
151
164
  schema_name: Optional[pulumi.Input[_builtins.str]] = None,
152
165
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFunctionsResult]:
153
166
  """
@@ -184,6 +197,7 @@ def get_functions_output(catalog_name: Optional[pulumi.Input[_builtins.str]] = N
184
197
  __args__['catalogName'] = catalog_name
185
198
  __args__['functions'] = functions
186
199
  __args__['includeBrowse'] = include_browse
200
+ __args__['providerConfig'] = provider_config
187
201
  __args__['schemaName'] = schema_name
188
202
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
189
203
  __ret__ = pulumi.runtime.invoke_output('databricks:index/getFunctions:getFunctions', __args__, opts=opts, typ=GetFunctionsResult)
@@ -192,4 +206,5 @@ def get_functions_output(catalog_name: Optional[pulumi.Input[_builtins.str]] = N
192
206
  functions=pulumi.get(__response__, 'functions'),
193
207
  id=pulumi.get(__response__, 'id'),
194
208
  include_browse=pulumi.get(__response__, 'include_browse'),
209
+ provider_config=pulumi.get(__response__, 'provider_config'),
195
210
  schema_name=pulumi.get(__response__, 'schema_name')))