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
|
@@ -28,7 +28,7 @@ class GetExternalLocationResult:
|
|
|
28
28
|
"""
|
|
29
29
|
A collection of values returned by getExternalLocation.
|
|
30
30
|
"""
|
|
31
|
-
def __init__(__self__, external_location_info=None, id=None, name=None):
|
|
31
|
+
def __init__(__self__, external_location_info=None, id=None, name=None, provider_config=None):
|
|
32
32
|
if external_location_info and not isinstance(external_location_info, dict):
|
|
33
33
|
raise TypeError("Expected argument 'external_location_info' to be a dict")
|
|
34
34
|
pulumi.set(__self__, "external_location_info", external_location_info)
|
|
@@ -38,6 +38,9 @@ class GetExternalLocationResult:
|
|
|
38
38
|
if name and not isinstance(name, str):
|
|
39
39
|
raise TypeError("Expected argument 'name' to be a str")
|
|
40
40
|
pulumi.set(__self__, "name", name)
|
|
41
|
+
if provider_config and not isinstance(provider_config, dict):
|
|
42
|
+
raise TypeError("Expected argument 'provider_config' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "provider_config", provider_config)
|
|
41
44
|
|
|
42
45
|
@_builtins.property
|
|
43
46
|
@pulumi.getter(name="externalLocationInfo")
|
|
@@ -60,6 +63,11 @@ class GetExternalLocationResult:
|
|
|
60
63
|
def name(self) -> _builtins.str:
|
|
61
64
|
return pulumi.get(self, "name")
|
|
62
65
|
|
|
66
|
+
@_builtins.property
|
|
67
|
+
@pulumi.getter(name="providerConfig")
|
|
68
|
+
def provider_config(self) -> Optional['outputs.GetExternalLocationProviderConfigResult']:
|
|
69
|
+
return pulumi.get(self, "provider_config")
|
|
70
|
+
|
|
63
71
|
|
|
64
72
|
class AwaitableGetExternalLocationResult(GetExternalLocationResult):
|
|
65
73
|
# pylint: disable=using-constant-test
|
|
@@ -69,12 +77,14 @@ class AwaitableGetExternalLocationResult(GetExternalLocationResult):
|
|
|
69
77
|
return GetExternalLocationResult(
|
|
70
78
|
external_location_info=self.external_location_info,
|
|
71
79
|
id=self.id,
|
|
72
|
-
name=self.name
|
|
80
|
+
name=self.name,
|
|
81
|
+
provider_config=self.provider_config)
|
|
73
82
|
|
|
74
83
|
|
|
75
84
|
def get_external_location(external_location_info: Optional[Union['GetExternalLocationExternalLocationInfoArgs', 'GetExternalLocationExternalLocationInfoArgsDict']] = None,
|
|
76
85
|
id: Optional[_builtins.str] = None,
|
|
77
86
|
name: Optional[_builtins.str] = None,
|
|
87
|
+
provider_config: Optional[Union['GetExternalLocationProviderConfigArgs', 'GetExternalLocationProviderConfigArgsDict']] = None,
|
|
78
88
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalLocationResult:
|
|
79
89
|
"""
|
|
80
90
|
Retrieves details about a ExternalLocation that were created by Pulumi or manually.
|
|
@@ -104,21 +114,25 @@ def get_external_location(external_location_info: Optional[Union['GetExternalLoc
|
|
|
104
114
|
:param Union['GetExternalLocationExternalLocationInfoArgs', 'GetExternalLocationExternalLocationInfoArgsDict'] external_location_info: array of objects with information about external location:
|
|
105
115
|
:param _builtins.str id: external location ID - same as name.
|
|
106
116
|
:param _builtins.str name: The name of the external location
|
|
117
|
+
:param Union['GetExternalLocationProviderConfigArgs', 'GetExternalLocationProviderConfigArgsDict'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
107
118
|
"""
|
|
108
119
|
__args__ = dict()
|
|
109
120
|
__args__['externalLocationInfo'] = external_location_info
|
|
110
121
|
__args__['id'] = id
|
|
111
122
|
__args__['name'] = name
|
|
123
|
+
__args__['providerConfig'] = provider_config
|
|
112
124
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
113
125
|
__ret__ = pulumi.runtime.invoke('databricks:index/getExternalLocation:getExternalLocation', __args__, opts=opts, typ=GetExternalLocationResult).value
|
|
114
126
|
|
|
115
127
|
return AwaitableGetExternalLocationResult(
|
|
116
128
|
external_location_info=pulumi.get(__ret__, 'external_location_info'),
|
|
117
129
|
id=pulumi.get(__ret__, 'id'),
|
|
118
|
-
name=pulumi.get(__ret__, 'name')
|
|
130
|
+
name=pulumi.get(__ret__, 'name'),
|
|
131
|
+
provider_config=pulumi.get(__ret__, 'provider_config'))
|
|
119
132
|
def get_external_location_output(external_location_info: Optional[pulumi.Input[Optional[Union['GetExternalLocationExternalLocationInfoArgs', 'GetExternalLocationExternalLocationInfoArgsDict']]]] = None,
|
|
120
133
|
id: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
121
134
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
135
|
+
provider_config: Optional[pulumi.Input[Optional[Union['GetExternalLocationProviderConfigArgs', 'GetExternalLocationProviderConfigArgsDict']]]] = None,
|
|
122
136
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalLocationResult]:
|
|
123
137
|
"""
|
|
124
138
|
Retrieves details about a ExternalLocation that were created by Pulumi or manually.
|
|
@@ -148,14 +162,17 @@ def get_external_location_output(external_location_info: Optional[pulumi.Input[O
|
|
|
148
162
|
:param Union['GetExternalLocationExternalLocationInfoArgs', 'GetExternalLocationExternalLocationInfoArgsDict'] external_location_info: array of objects with information about external location:
|
|
149
163
|
:param _builtins.str id: external location ID - same as name.
|
|
150
164
|
:param _builtins.str name: The name of the external location
|
|
165
|
+
:param Union['GetExternalLocationProviderConfigArgs', 'GetExternalLocationProviderConfigArgsDict'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
151
166
|
"""
|
|
152
167
|
__args__ = dict()
|
|
153
168
|
__args__['externalLocationInfo'] = external_location_info
|
|
154
169
|
__args__['id'] = id
|
|
155
170
|
__args__['name'] = name
|
|
171
|
+
__args__['providerConfig'] = provider_config
|
|
156
172
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
157
173
|
__ret__ = pulumi.runtime.invoke_output('databricks:index/getExternalLocation:getExternalLocation', __args__, opts=opts, typ=GetExternalLocationResult)
|
|
158
174
|
return __ret__.apply(lambda __response__: GetExternalLocationResult(
|
|
159
175
|
external_location_info=pulumi.get(__response__, 'external_location_info'),
|
|
160
176
|
id=pulumi.get(__response__, 'id'),
|
|
161
|
-
name=pulumi.get(__response__, 'name')
|
|
177
|
+
name=pulumi.get(__response__, 'name'),
|
|
178
|
+
provider_config=pulumi.get(__response__, 'provider_config')))
|
|
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
|
13
13
|
else:
|
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
15
15
|
from . import _utilities
|
|
16
|
+
from . import outputs
|
|
17
|
+
from ._inputs import *
|
|
16
18
|
|
|
17
19
|
__all__ = [
|
|
18
20
|
'GetExternalLocationsResult',
|
|
@@ -26,13 +28,16 @@ class GetExternalLocationsResult:
|
|
|
26
28
|
"""
|
|
27
29
|
A collection of values returned by getExternalLocations.
|
|
28
30
|
"""
|
|
29
|
-
def __init__(__self__, id=None, names=None):
|
|
31
|
+
def __init__(__self__, id=None, names=None, provider_config=None):
|
|
30
32
|
if id and not isinstance(id, str):
|
|
31
33
|
raise TypeError("Expected argument 'id' to be a str")
|
|
32
34
|
pulumi.set(__self__, "id", id)
|
|
33
35
|
if names and not isinstance(names, list):
|
|
34
36
|
raise TypeError("Expected argument 'names' to be a list")
|
|
35
37
|
pulumi.set(__self__, "names", names)
|
|
38
|
+
if provider_config and not isinstance(provider_config, dict):
|
|
39
|
+
raise TypeError("Expected argument 'provider_config' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "provider_config", provider_config)
|
|
36
41
|
|
|
37
42
|
@_builtins.property
|
|
38
43
|
@pulumi.getter
|
|
@@ -50,6 +55,11 @@ class GetExternalLocationsResult:
|
|
|
50
55
|
"""
|
|
51
56
|
return pulumi.get(self, "names")
|
|
52
57
|
|
|
58
|
+
@_builtins.property
|
|
59
|
+
@pulumi.getter(name="providerConfig")
|
|
60
|
+
def provider_config(self) -> Optional['outputs.GetExternalLocationsProviderConfigResult']:
|
|
61
|
+
return pulumi.get(self, "provider_config")
|
|
62
|
+
|
|
53
63
|
|
|
54
64
|
class AwaitableGetExternalLocationsResult(GetExternalLocationsResult):
|
|
55
65
|
# pylint: disable=using-constant-test
|
|
@@ -58,10 +68,12 @@ class AwaitableGetExternalLocationsResult(GetExternalLocationsResult):
|
|
|
58
68
|
yield self
|
|
59
69
|
return GetExternalLocationsResult(
|
|
60
70
|
id=self.id,
|
|
61
|
-
names=self.names
|
|
71
|
+
names=self.names,
|
|
72
|
+
provider_config=self.provider_config)
|
|
62
73
|
|
|
63
74
|
|
|
64
75
|
def get_external_locations(names: Optional[Sequence[_builtins.str]] = None,
|
|
76
|
+
provider_config: Optional[Union['GetExternalLocationsProviderConfigArgs', 'GetExternalLocationsProviderConfigArgsDict']] = None,
|
|
65
77
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalLocationsResult:
|
|
66
78
|
"""
|
|
67
79
|
Retrieves a list of ExternalLocation objects, that were created by Pulumi or manually, so that special handling could be applied.
|
|
@@ -89,16 +101,20 @@ def get_external_locations(names: Optional[Sequence[_builtins.str]] = None,
|
|
|
89
101
|
|
|
90
102
|
|
|
91
103
|
:param Sequence[_builtins.str] names: List of names of ExternalLocation in the metastore
|
|
104
|
+
:param Union['GetExternalLocationsProviderConfigArgs', 'GetExternalLocationsProviderConfigArgsDict'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
92
105
|
"""
|
|
93
106
|
__args__ = dict()
|
|
94
107
|
__args__['names'] = names
|
|
108
|
+
__args__['providerConfig'] = provider_config
|
|
95
109
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
96
110
|
__ret__ = pulumi.runtime.invoke('databricks:index/getExternalLocations:getExternalLocations', __args__, opts=opts, typ=GetExternalLocationsResult).value
|
|
97
111
|
|
|
98
112
|
return AwaitableGetExternalLocationsResult(
|
|
99
113
|
id=pulumi.get(__ret__, 'id'),
|
|
100
|
-
names=pulumi.get(__ret__, 'names')
|
|
114
|
+
names=pulumi.get(__ret__, 'names'),
|
|
115
|
+
provider_config=pulumi.get(__ret__, 'provider_config'))
|
|
101
116
|
def get_external_locations_output(names: Optional[pulumi.Input[Optional[Sequence[_builtins.str]]]] = None,
|
|
117
|
+
provider_config: Optional[pulumi.Input[Optional[Union['GetExternalLocationsProviderConfigArgs', 'GetExternalLocationsProviderConfigArgsDict']]]] = None,
|
|
102
118
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalLocationsResult]:
|
|
103
119
|
"""
|
|
104
120
|
Retrieves a list of ExternalLocation objects, that were created by Pulumi or manually, so that special handling could be applied.
|
|
@@ -126,11 +142,14 @@ def get_external_locations_output(names: Optional[pulumi.Input[Optional[Sequence
|
|
|
126
142
|
|
|
127
143
|
|
|
128
144
|
:param Sequence[_builtins.str] names: List of names of ExternalLocation in the metastore
|
|
145
|
+
:param Union['GetExternalLocationsProviderConfigArgs', 'GetExternalLocationsProviderConfigArgsDict'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
129
146
|
"""
|
|
130
147
|
__args__ = dict()
|
|
131
148
|
__args__['names'] = names
|
|
149
|
+
__args__['providerConfig'] = provider_config
|
|
132
150
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
133
151
|
__ret__ = pulumi.runtime.invoke_output('databricks:index/getExternalLocations:getExternalLocations', __args__, opts=opts, typ=GetExternalLocationsResult)
|
|
134
152
|
return __ret__.apply(lambda __response__: GetExternalLocationsResult(
|
|
135
153
|
id=pulumi.get(__response__, 'id'),
|
|
136
|
-
names=pulumi.get(__response__, 'names')
|
|
154
|
+
names=pulumi.get(__response__, 'names'),
|
|
155
|
+
provider_config=pulumi.get(__response__, 'provider_config')))
|
|
@@ -72,7 +72,7 @@ class GetExternalMetadataResult:
|
|
|
72
72
|
|
|
73
73
|
@_builtins.property
|
|
74
74
|
@pulumi.getter
|
|
75
|
-
def columns(self) ->
|
|
75
|
+
def columns(self) -> Sequence[_builtins.str]:
|
|
76
76
|
"""
|
|
77
77
|
(list of string) - List of columns associated with the external metadata object
|
|
78
78
|
"""
|
|
@@ -96,7 +96,7 @@ class GetExternalMetadataResult:
|
|
|
96
96
|
|
|
97
97
|
@_builtins.property
|
|
98
98
|
@pulumi.getter
|
|
99
|
-
def description(self) ->
|
|
99
|
+
def description(self) -> _builtins.str:
|
|
100
100
|
"""
|
|
101
101
|
(string) - User-provided free-form text description
|
|
102
102
|
"""
|
|
@@ -136,7 +136,7 @@ class GetExternalMetadataResult:
|
|
|
136
136
|
|
|
137
137
|
@_builtins.property
|
|
138
138
|
@pulumi.getter
|
|
139
|
-
def owner(self) ->
|
|
139
|
+
def owner(self) -> _builtins.str:
|
|
140
140
|
"""
|
|
141
141
|
(string) - Owner of the external metadata object
|
|
142
142
|
"""
|
|
@@ -144,7 +144,7 @@ class GetExternalMetadataResult:
|
|
|
144
144
|
|
|
145
145
|
@_builtins.property
|
|
146
146
|
@pulumi.getter
|
|
147
|
-
def properties(self) ->
|
|
147
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
|
148
148
|
"""
|
|
149
149
|
(object) - A map of key-value properties attached to the external metadata object
|
|
150
150
|
"""
|
|
@@ -154,7 +154,7 @@ class GetExternalMetadataResult:
|
|
|
154
154
|
@pulumi.getter(name="systemType")
|
|
155
155
|
def system_type(self) -> _builtins.str:
|
|
156
156
|
"""
|
|
157
|
-
(string) - Type of external system. Possible values are: `AMAZON_REDSHIFT`, `AZURE_SYNAPSE`, `CONFLUENT`, `DATABRICKS`, `GOOGLE_BIGQUERY`, `KAFKA`, `LOOKER`, `MICROSOFT_FABRIC`, `MICROSOFT_SQL_SERVER`, `MONGODB`, `MYSQL`, `ORACLE`, `OTHER`, `POSTGRESQL`, `POWER_BI`, `SALESFORCE`, `SAP`, `SERVICENOW`, `SNOWFLAKE`, `TABLEAU`, `TERADATA`, `WORKDAY`
|
|
157
|
+
(string) - Type of external system. Possible values are: `AMAZON_REDSHIFT`, `AZURE_SYNAPSE`, `CONFLUENT`, `DATABRICKS`, `GOOGLE_BIGQUERY`, `KAFKA`, `LOOKER`, `MICROSOFT_FABRIC`, `MICROSOFT_SQL_SERVER`, `MONGODB`, `MYSQL`, `ORACLE`, `OTHER`, `POSTGRESQL`, `POWER_BI`, `SALESFORCE`, `SAP`, `SERVICENOW`, `SNOWFLAKE`, `STREAM_NATIVE`, `TABLEAU`, `TERADATA`, `WORKDAY`
|
|
158
158
|
"""
|
|
159
159
|
return pulumi.get(self, "system_type")
|
|
160
160
|
|
|
@@ -176,7 +176,7 @@ class GetExternalMetadataResult:
|
|
|
176
176
|
|
|
177
177
|
@_builtins.property
|
|
178
178
|
@pulumi.getter
|
|
179
|
-
def url(self) ->
|
|
179
|
+
def url(self) -> _builtins.str:
|
|
180
180
|
"""
|
|
181
181
|
(string) - URL associated with the external metadata object
|
|
182
182
|
"""
|
|
@@ -205,16 +205,11 @@ class AwaitableGetExternalMetadataResult(GetExternalMetadataResult):
|
|
|
205
205
|
url=self.url)
|
|
206
206
|
|
|
207
207
|
|
|
208
|
-
def get_external_metadata(
|
|
209
|
-
description: Optional[_builtins.str] = None,
|
|
210
|
-
entity_type: Optional[_builtins.str] = None,
|
|
211
|
-
name: Optional[_builtins.str] = None,
|
|
212
|
-
owner: Optional[_builtins.str] = None,
|
|
213
|
-
properties: Optional[Mapping[str, _builtins.str]] = None,
|
|
214
|
-
system_type: Optional[_builtins.str] = None,
|
|
215
|
-
url: Optional[_builtins.str] = None,
|
|
208
|
+
def get_external_metadata(name: Optional[_builtins.str] = None,
|
|
216
209
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalMetadataResult:
|
|
217
210
|
"""
|
|
211
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
212
|
+
|
|
218
213
|
This data source can be used to get a single external metadata object.
|
|
219
214
|
|
|
220
215
|
> **Note** This resource can only be used with an workspace-level provider!
|
|
@@ -231,24 +226,10 @@ def get_external_metadata(columns: Optional[Sequence[_builtins.str]] = None,
|
|
|
231
226
|
```
|
|
232
227
|
|
|
233
228
|
|
|
234
|
-
:param Sequence[_builtins.str] columns: (list of string) - List of columns associated with the external metadata object
|
|
235
|
-
:param _builtins.str description: (string) - User-provided free-form text description
|
|
236
|
-
:param _builtins.str entity_type: (string) - Type of entity within the external system
|
|
237
229
|
:param _builtins.str name: Name of the external metadata object
|
|
238
|
-
:param _builtins.str owner: (string) - Owner of the external metadata object
|
|
239
|
-
:param Mapping[str, _builtins.str] properties: (object) - A map of key-value properties attached to the external metadata object
|
|
240
|
-
:param _builtins.str system_type: (string) - Type of external system. Possible values are: `AMAZON_REDSHIFT`, `AZURE_SYNAPSE`, `CONFLUENT`, `DATABRICKS`, `GOOGLE_BIGQUERY`, `KAFKA`, `LOOKER`, `MICROSOFT_FABRIC`, `MICROSOFT_SQL_SERVER`, `MONGODB`, `MYSQL`, `ORACLE`, `OTHER`, `POSTGRESQL`, `POWER_BI`, `SALESFORCE`, `SAP`, `SERVICENOW`, `SNOWFLAKE`, `TABLEAU`, `TERADATA`, `WORKDAY`
|
|
241
|
-
:param _builtins.str url: (string) - URL associated with the external metadata object
|
|
242
230
|
"""
|
|
243
231
|
__args__ = dict()
|
|
244
|
-
__args__['columns'] = columns
|
|
245
|
-
__args__['description'] = description
|
|
246
|
-
__args__['entityType'] = entity_type
|
|
247
232
|
__args__['name'] = name
|
|
248
|
-
__args__['owner'] = owner
|
|
249
|
-
__args__['properties'] = properties
|
|
250
|
-
__args__['systemType'] = system_type
|
|
251
|
-
__args__['url'] = url
|
|
252
233
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
253
234
|
__ret__ = pulumi.runtime.invoke('databricks:index/getExternalMetadata:getExternalMetadata', __args__, opts=opts, typ=GetExternalMetadataResult).value
|
|
254
235
|
|
|
@@ -267,16 +248,11 @@ def get_external_metadata(columns: Optional[Sequence[_builtins.str]] = None,
|
|
|
267
248
|
update_time=pulumi.get(__ret__, 'update_time'),
|
|
268
249
|
updated_by=pulumi.get(__ret__, 'updated_by'),
|
|
269
250
|
url=pulumi.get(__ret__, 'url'))
|
|
270
|
-
def get_external_metadata_output(
|
|
271
|
-
description: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
272
|
-
entity_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
273
|
-
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
274
|
-
owner: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
275
|
-
properties: Optional[pulumi.Input[Optional[Mapping[str, _builtins.str]]]] = None,
|
|
276
|
-
system_type: Optional[pulumi.Input[_builtins.str]] = None,
|
|
277
|
-
url: Optional[pulumi.Input[Optional[_builtins.str]]] = None,
|
|
251
|
+
def get_external_metadata_output(name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
278
252
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalMetadataResult]:
|
|
279
253
|
"""
|
|
254
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
255
|
+
|
|
280
256
|
This data source can be used to get a single external metadata object.
|
|
281
257
|
|
|
282
258
|
> **Note** This resource can only be used with an workspace-level provider!
|
|
@@ -293,24 +269,10 @@ def get_external_metadata_output(columns: Optional[pulumi.Input[Optional[Sequenc
|
|
|
293
269
|
```
|
|
294
270
|
|
|
295
271
|
|
|
296
|
-
:param Sequence[_builtins.str] columns: (list of string) - List of columns associated with the external metadata object
|
|
297
|
-
:param _builtins.str description: (string) - User-provided free-form text description
|
|
298
|
-
:param _builtins.str entity_type: (string) - Type of entity within the external system
|
|
299
272
|
:param _builtins.str name: Name of the external metadata object
|
|
300
|
-
:param _builtins.str owner: (string) - Owner of the external metadata object
|
|
301
|
-
:param Mapping[str, _builtins.str] properties: (object) - A map of key-value properties attached to the external metadata object
|
|
302
|
-
:param _builtins.str system_type: (string) - Type of external system. Possible values are: `AMAZON_REDSHIFT`, `AZURE_SYNAPSE`, `CONFLUENT`, `DATABRICKS`, `GOOGLE_BIGQUERY`, `KAFKA`, `LOOKER`, `MICROSOFT_FABRIC`, `MICROSOFT_SQL_SERVER`, `MONGODB`, `MYSQL`, `ORACLE`, `OTHER`, `POSTGRESQL`, `POWER_BI`, `SALESFORCE`, `SAP`, `SERVICENOW`, `SNOWFLAKE`, `TABLEAU`, `TERADATA`, `WORKDAY`
|
|
303
|
-
:param _builtins.str url: (string) - URL associated with the external metadata object
|
|
304
273
|
"""
|
|
305
274
|
__args__ = dict()
|
|
306
|
-
__args__['columns'] = columns
|
|
307
|
-
__args__['description'] = description
|
|
308
|
-
__args__['entityType'] = entity_type
|
|
309
275
|
__args__['name'] = name
|
|
310
|
-
__args__['owner'] = owner
|
|
311
|
-
__args__['properties'] = properties
|
|
312
|
-
__args__['systemType'] = system_type
|
|
313
|
-
__args__['url'] = url
|
|
314
276
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
315
277
|
__ret__ = pulumi.runtime.invoke_output('databricks:index/getExternalMetadata:getExternalMetadata', __args__, opts=opts, typ=GetExternalMetadataResult)
|
|
316
278
|
return __ret__.apply(lambda __response__: GetExternalMetadataResult(
|
|
@@ -27,13 +27,16 @@ class GetExternalMetadatasResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getExternalMetadatas.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, external_metadatas=None, id=None):
|
|
30
|
+
def __init__(__self__, external_metadatas=None, id=None, page_size=None):
|
|
31
31
|
if external_metadatas and not isinstance(external_metadatas, list):
|
|
32
32
|
raise TypeError("Expected argument 'external_metadatas' to be a list")
|
|
33
33
|
pulumi.set(__self__, "external_metadatas", external_metadatas)
|
|
34
34
|
if id and not isinstance(id, str):
|
|
35
35
|
raise TypeError("Expected argument 'id' to be a str")
|
|
36
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)
|
|
37
40
|
|
|
38
41
|
@_builtins.property
|
|
39
42
|
@pulumi.getter(name="externalMetadatas")
|
|
@@ -48,6 +51,11 @@ class GetExternalMetadatasResult:
|
|
|
48
51
|
"""
|
|
49
52
|
return pulumi.get(self, "id")
|
|
50
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
|
+
|
|
51
59
|
|
|
52
60
|
class AwaitableGetExternalMetadatasResult(GetExternalMetadatasResult):
|
|
53
61
|
# pylint: disable=using-constant-test
|
|
@@ -56,31 +64,72 @@ class AwaitableGetExternalMetadatasResult(GetExternalMetadatasResult):
|
|
|
56
64
|
yield self
|
|
57
65
|
return GetExternalMetadatasResult(
|
|
58
66
|
external_metadatas=self.external_metadatas,
|
|
59
|
-
id=self.id
|
|
67
|
+
id=self.id,
|
|
68
|
+
page_size=self.page_size)
|
|
60
69
|
|
|
61
70
|
|
|
62
|
-
def get_external_metadatas(
|
|
71
|
+
def get_external_metadatas(page_size: Optional[_builtins.int] = None,
|
|
72
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalMetadatasResult:
|
|
63
73
|
"""
|
|
74
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
75
|
+
|
|
64
76
|
This data source can be used to fetch the list of external metadata objects.
|
|
65
77
|
|
|
66
78
|
> **Note** This resource can only be used with an workspace-level provider!
|
|
79
|
+
|
|
80
|
+
## Example Usage
|
|
81
|
+
|
|
82
|
+
Getting a list of all external metadata objects:
|
|
83
|
+
|
|
84
|
+
```python
|
|
85
|
+
import pulumi
|
|
86
|
+
import pulumi_databricks as databricks
|
|
87
|
+
|
|
88
|
+
all = databricks.get_external_metadatas()
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
:param _builtins.int page_size: Specifies the maximum number of external metadata objects to return in a single response.
|
|
93
|
+
The value must be less than or equal to 1000
|
|
67
94
|
"""
|
|
68
95
|
__args__ = dict()
|
|
96
|
+
__args__['pageSize'] = page_size
|
|
69
97
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
70
98
|
__ret__ = pulumi.runtime.invoke('databricks:index/getExternalMetadatas:getExternalMetadatas', __args__, opts=opts, typ=GetExternalMetadatasResult).value
|
|
71
99
|
|
|
72
100
|
return AwaitableGetExternalMetadatasResult(
|
|
73
101
|
external_metadatas=pulumi.get(__ret__, 'external_metadatas'),
|
|
74
|
-
id=pulumi.get(__ret__, 'id')
|
|
75
|
-
|
|
102
|
+
id=pulumi.get(__ret__, 'id'),
|
|
103
|
+
page_size=pulumi.get(__ret__, 'page_size'))
|
|
104
|
+
def get_external_metadatas_output(page_size: Optional[pulumi.Input[Optional[_builtins.int]]] = None,
|
|
105
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetExternalMetadatasResult]:
|
|
76
106
|
"""
|
|
107
|
+
[](https://docs.databricks.com/aws/en/release-notes/release-types)
|
|
108
|
+
|
|
77
109
|
This data source can be used to fetch the list of external metadata objects.
|
|
78
110
|
|
|
79
111
|
> **Note** This resource can only be used with an workspace-level provider!
|
|
112
|
+
|
|
113
|
+
## Example Usage
|
|
114
|
+
|
|
115
|
+
Getting a list of all external metadata objects:
|
|
116
|
+
|
|
117
|
+
```python
|
|
118
|
+
import pulumi
|
|
119
|
+
import pulumi_databricks as databricks
|
|
120
|
+
|
|
121
|
+
all = databricks.get_external_metadatas()
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
:param _builtins.int page_size: Specifies the maximum number of external metadata objects to return in a single response.
|
|
126
|
+
The value must be less than or equal to 1000
|
|
80
127
|
"""
|
|
81
128
|
__args__ = dict()
|
|
129
|
+
__args__['pageSize'] = page_size
|
|
82
130
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
83
131
|
__ret__ = pulumi.runtime.invoke_output('databricks:index/getExternalMetadatas:getExternalMetadatas', __args__, opts=opts, typ=GetExternalMetadatasResult)
|
|
84
132
|
return __ret__.apply(lambda __response__: GetExternalMetadatasResult(
|
|
85
133
|
external_metadatas=pulumi.get(__response__, 'external_metadatas'),
|
|
86
|
-
id=pulumi.get(__response__, 'id')
|
|
134
|
+
id=pulumi.get(__response__, 'id'),
|
|
135
|
+
page_size=pulumi.get(__response__, 'page_size')))
|
|
@@ -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
|
+
[](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
|
+
[](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')))
|