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
|
@@ -21,6 +21,7 @@ class GitCredentialArgs:
|
|
|
21
21
|
def __init__(__self__, *,
|
|
22
22
|
git_provider: pulumi.Input[_builtins.str],
|
|
23
23
|
force: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
24
|
+
git_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
24
25
|
git_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
25
26
|
is_default_for_provider: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
26
27
|
name: Optional[pulumi.Input[_builtins.str]] = None,
|
|
@@ -29,7 +30,8 @@ class GitCredentialArgs:
|
|
|
29
30
|
The set of arguments for constructing a GitCredential resource.
|
|
30
31
|
:param pulumi.Input[_builtins.str] git_provider: case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Git Credentials API documentation](https://docs.databricks.com/dev-tools/api/latest/gitcredentials.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`, `azureDevOpsServicesAad`.
|
|
31
32
|
:param pulumi.Input[_builtins.bool] force: specify if settings need to be enforced (i.e., to overwrite previously set credential for service principals).
|
|
32
|
-
:param pulumi.Input[_builtins.str]
|
|
33
|
+
:param pulumi.Input[_builtins.str] git_email: The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
34
|
+
:param pulumi.Input[_builtins.str] git_username: user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
33
35
|
:param pulumi.Input[_builtins.bool] is_default_for_provider: boolean flag specifying if the credential is the default for the given provider type.
|
|
34
36
|
:param pulumi.Input[_builtins.str] name: the name of the git credential, used for identification and ease of lookup.
|
|
35
37
|
:param pulumi.Input[_builtins.str] personal_access_token: The personal access token used to authenticate to the corresponding Git provider. If value is not provided, it's sourced from the first environment variable of `GITHUB_TOKEN`, `GITLAB_TOKEN`, or `AZDO_PERSONAL_ACCESS_TOKEN`, that has a non-empty value.
|
|
@@ -37,6 +39,8 @@ class GitCredentialArgs:
|
|
|
37
39
|
pulumi.set(__self__, "git_provider", git_provider)
|
|
38
40
|
if force is not None:
|
|
39
41
|
pulumi.set(__self__, "force", force)
|
|
42
|
+
if git_email is not None:
|
|
43
|
+
pulumi.set(__self__, "git_email", git_email)
|
|
40
44
|
if git_username is not None:
|
|
41
45
|
pulumi.set(__self__, "git_username", git_username)
|
|
42
46
|
if is_default_for_provider is not None:
|
|
@@ -70,11 +74,23 @@ class GitCredentialArgs:
|
|
|
70
74
|
def force(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
71
75
|
pulumi.set(self, "force", value)
|
|
72
76
|
|
|
77
|
+
@_builtins.property
|
|
78
|
+
@pulumi.getter(name="gitEmail")
|
|
79
|
+
def git_email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
80
|
+
"""
|
|
81
|
+
The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "git_email")
|
|
84
|
+
|
|
85
|
+
@git_email.setter
|
|
86
|
+
def git_email(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
87
|
+
pulumi.set(self, "git_email", value)
|
|
88
|
+
|
|
73
89
|
@_builtins.property
|
|
74
90
|
@pulumi.getter(name="gitUsername")
|
|
75
91
|
def git_username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
76
92
|
"""
|
|
77
|
-
user name at Git provider.
|
|
93
|
+
user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
78
94
|
"""
|
|
79
95
|
return pulumi.get(self, "git_username")
|
|
80
96
|
|
|
@@ -123,6 +139,7 @@ class GitCredentialArgs:
|
|
|
123
139
|
class _GitCredentialState:
|
|
124
140
|
def __init__(__self__, *,
|
|
125
141
|
force: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
142
|
+
git_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
126
143
|
git_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
127
144
|
git_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
128
145
|
is_default_for_provider: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -131,14 +148,17 @@ class _GitCredentialState:
|
|
|
131
148
|
"""
|
|
132
149
|
Input properties used for looking up and filtering GitCredential resources.
|
|
133
150
|
:param pulumi.Input[_builtins.bool] force: specify if settings need to be enforced (i.e., to overwrite previously set credential for service principals).
|
|
151
|
+
:param pulumi.Input[_builtins.str] git_email: The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
134
152
|
:param pulumi.Input[_builtins.str] git_provider: case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Git Credentials API documentation](https://docs.databricks.com/dev-tools/api/latest/gitcredentials.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`, `azureDevOpsServicesAad`.
|
|
135
|
-
:param pulumi.Input[_builtins.str] git_username: user name at Git provider.
|
|
153
|
+
:param pulumi.Input[_builtins.str] git_username: user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
136
154
|
:param pulumi.Input[_builtins.bool] is_default_for_provider: boolean flag specifying if the credential is the default for the given provider type.
|
|
137
155
|
:param pulumi.Input[_builtins.str] name: the name of the git credential, used for identification and ease of lookup.
|
|
138
156
|
:param pulumi.Input[_builtins.str] personal_access_token: The personal access token used to authenticate to the corresponding Git provider. If value is not provided, it's sourced from the first environment variable of `GITHUB_TOKEN`, `GITLAB_TOKEN`, or `AZDO_PERSONAL_ACCESS_TOKEN`, that has a non-empty value.
|
|
139
157
|
"""
|
|
140
158
|
if force is not None:
|
|
141
159
|
pulumi.set(__self__, "force", force)
|
|
160
|
+
if git_email is not None:
|
|
161
|
+
pulumi.set(__self__, "git_email", git_email)
|
|
142
162
|
if git_provider is not None:
|
|
143
163
|
pulumi.set(__self__, "git_provider", git_provider)
|
|
144
164
|
if git_username is not None:
|
|
@@ -162,6 +182,18 @@ class _GitCredentialState:
|
|
|
162
182
|
def force(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
|
163
183
|
pulumi.set(self, "force", value)
|
|
164
184
|
|
|
185
|
+
@_builtins.property
|
|
186
|
+
@pulumi.getter(name="gitEmail")
|
|
187
|
+
def git_email(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
188
|
+
"""
|
|
189
|
+
The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
190
|
+
"""
|
|
191
|
+
return pulumi.get(self, "git_email")
|
|
192
|
+
|
|
193
|
+
@git_email.setter
|
|
194
|
+
def git_email(self, value: Optional[pulumi.Input[_builtins.str]]):
|
|
195
|
+
pulumi.set(self, "git_email", value)
|
|
196
|
+
|
|
165
197
|
@_builtins.property
|
|
166
198
|
@pulumi.getter(name="gitProvider")
|
|
167
199
|
def git_provider(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
@@ -178,7 +210,7 @@ class _GitCredentialState:
|
|
|
178
210
|
@pulumi.getter(name="gitUsername")
|
|
179
211
|
def git_username(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
180
212
|
"""
|
|
181
|
-
user name at Git provider.
|
|
213
|
+
user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
182
214
|
"""
|
|
183
215
|
return pulumi.get(self, "git_username")
|
|
184
216
|
|
|
@@ -230,6 +262,7 @@ class GitCredential(pulumi.CustomResource):
|
|
|
230
262
|
resource_name: str,
|
|
231
263
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
232
264
|
force: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
265
|
+
git_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
233
266
|
git_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
234
267
|
git_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
235
268
|
is_default_for_provider: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -299,8 +332,9 @@ class GitCredential(pulumi.CustomResource):
|
|
|
299
332
|
:param str resource_name: The name of the resource.
|
|
300
333
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
301
334
|
:param pulumi.Input[_builtins.bool] force: specify if settings need to be enforced (i.e., to overwrite previously set credential for service principals).
|
|
335
|
+
:param pulumi.Input[_builtins.str] git_email: The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
302
336
|
:param pulumi.Input[_builtins.str] git_provider: case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Git Credentials API documentation](https://docs.databricks.com/dev-tools/api/latest/gitcredentials.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`, `azureDevOpsServicesAad`.
|
|
303
|
-
:param pulumi.Input[_builtins.str] git_username: user name at Git provider.
|
|
337
|
+
:param pulumi.Input[_builtins.str] git_username: user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
304
338
|
:param pulumi.Input[_builtins.bool] is_default_for_provider: boolean flag specifying if the credential is the default for the given provider type.
|
|
305
339
|
:param pulumi.Input[_builtins.str] name: the name of the git credential, used for identification and ease of lookup.
|
|
306
340
|
:param pulumi.Input[_builtins.str] personal_access_token: The personal access token used to authenticate to the corresponding Git provider. If value is not provided, it's sourced from the first environment variable of `GITHUB_TOKEN`, `GITLAB_TOKEN`, or `AZDO_PERSONAL_ACCESS_TOKEN`, that has a non-empty value.
|
|
@@ -387,6 +421,7 @@ class GitCredential(pulumi.CustomResource):
|
|
|
387
421
|
resource_name: str,
|
|
388
422
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
389
423
|
force: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
424
|
+
git_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
390
425
|
git_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
391
426
|
git_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
392
427
|
is_default_for_provider: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -402,6 +437,7 @@ class GitCredential(pulumi.CustomResource):
|
|
|
402
437
|
__props__ = GitCredentialArgs.__new__(GitCredentialArgs)
|
|
403
438
|
|
|
404
439
|
__props__.__dict__["force"] = force
|
|
440
|
+
__props__.__dict__["git_email"] = git_email
|
|
405
441
|
if git_provider is None and not opts.urn:
|
|
406
442
|
raise TypeError("Missing required property 'git_provider'")
|
|
407
443
|
__props__.__dict__["git_provider"] = git_provider
|
|
@@ -420,6 +456,7 @@ class GitCredential(pulumi.CustomResource):
|
|
|
420
456
|
id: pulumi.Input[str],
|
|
421
457
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
422
458
|
force: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
459
|
+
git_email: Optional[pulumi.Input[_builtins.str]] = None,
|
|
423
460
|
git_provider: Optional[pulumi.Input[_builtins.str]] = None,
|
|
424
461
|
git_username: Optional[pulumi.Input[_builtins.str]] = None,
|
|
425
462
|
is_default_for_provider: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -433,8 +470,9 @@ class GitCredential(pulumi.CustomResource):
|
|
|
433
470
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
434
471
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
435
472
|
:param pulumi.Input[_builtins.bool] force: specify if settings need to be enforced (i.e., to overwrite previously set credential for service principals).
|
|
473
|
+
:param pulumi.Input[_builtins.str] git_email: The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
436
474
|
:param pulumi.Input[_builtins.str] git_provider: case insensitive name of the Git provider. Following values are supported right now (could be a subject for a change, consult [Git Credentials API documentation](https://docs.databricks.com/dev-tools/api/latest/gitcredentials.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`, `awsCodeCommit`, `azureDevOpsServicesAad`.
|
|
437
|
-
:param pulumi.Input[_builtins.str] git_username: user name at Git provider.
|
|
475
|
+
:param pulumi.Input[_builtins.str] git_username: user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
438
476
|
:param pulumi.Input[_builtins.bool] is_default_for_provider: boolean flag specifying if the credential is the default for the given provider type.
|
|
439
477
|
:param pulumi.Input[_builtins.str] name: the name of the git credential, used for identification and ease of lookup.
|
|
440
478
|
:param pulumi.Input[_builtins.str] personal_access_token: The personal access token used to authenticate to the corresponding Git provider. If value is not provided, it's sourced from the first environment variable of `GITHUB_TOKEN`, `GITLAB_TOKEN`, or `AZDO_PERSONAL_ACCESS_TOKEN`, that has a non-empty value.
|
|
@@ -444,6 +482,7 @@ class GitCredential(pulumi.CustomResource):
|
|
|
444
482
|
__props__ = _GitCredentialState.__new__(_GitCredentialState)
|
|
445
483
|
|
|
446
484
|
__props__.__dict__["force"] = force
|
|
485
|
+
__props__.__dict__["git_email"] = git_email
|
|
447
486
|
__props__.__dict__["git_provider"] = git_provider
|
|
448
487
|
__props__.__dict__["git_username"] = git_username
|
|
449
488
|
__props__.__dict__["is_default_for_provider"] = is_default_for_provider
|
|
@@ -459,6 +498,14 @@ class GitCredential(pulumi.CustomResource):
|
|
|
459
498
|
"""
|
|
460
499
|
return pulumi.get(self, "force")
|
|
461
500
|
|
|
501
|
+
@_builtins.property
|
|
502
|
+
@pulumi.getter(name="gitEmail")
|
|
503
|
+
def git_email(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
504
|
+
"""
|
|
505
|
+
The email associated with your Git provider user account. Used for authentication with the remote repository and also sets the author & committer identity for commits.
|
|
506
|
+
"""
|
|
507
|
+
return pulumi.get(self, "git_email")
|
|
508
|
+
|
|
462
509
|
@_builtins.property
|
|
463
510
|
@pulumi.getter(name="gitProvider")
|
|
464
511
|
def git_provider(self) -> pulumi.Output[_builtins.str]:
|
|
@@ -471,7 +518,7 @@ class GitCredential(pulumi.CustomResource):
|
|
|
471
518
|
@pulumi.getter(name="gitUsername")
|
|
472
519
|
def git_username(self) -> pulumi.Output[Optional[_builtins.str]]:
|
|
473
520
|
"""
|
|
474
|
-
user name at Git provider.
|
|
521
|
+
user name at Git provider. For most Git providers it is only used to set the Git committer & author names for commits, however it may be required for authentication depending on your Git provider / token requirements.
|
|
475
522
|
"""
|
|
476
523
|
return pulumi.get(self, "git_username")
|
|
477
524
|
|
pulumi_databricks/grant.py
CHANGED
|
@@ -442,7 +442,7 @@ class Grant(pulumi.CustomResource):
|
|
|
442
442
|
|
|
443
443
|
> Most of Unity Catalog APIs are only accessible via **workspace-level APIs**. This design may change in the future. Account-level principal grants can be assigned with any valid workspace as the Unity Catalog is decoupled from specific workspaces. More information in [the official documentation](https://docs.databricks.com/data-governance/unity-catalog/index.html).
|
|
444
444
|
|
|
445
|
-
> This resource is _authoritative_ for grants on securables for a given principal. Configuring this resource for a securable will **OVERWRITE** any existing grants for the principal and changes made outside of Pulumi will be reset.
|
|
445
|
+
> This resource is _authoritative_ for grants on securables for a given _singular_ principal. Configuring this resource for a securable will **OVERWRITE** any existing grants for the principal and changes made outside of Pulumi will be reset. Use Grants for authoritative control of all grants on a securable.
|
|
446
446
|
|
|
447
447
|
In Unity Catalog all users initially have no access to data. Only Metastore Admins can create objects and can grant/revoke access on individual objects to users and groups. Every securable object in Unity Catalog has an owner. The owner can be any account-level user or group, called principals in general. The principal that creates an object becomes its owner. Owners receive `ALL_PRIVILEGES` on the securable object (e.g., `SELECT` and `MODIFY` on a table), as well as the permission to grant privileges to other principals.
|
|
448
448
|
|
|
@@ -853,7 +853,7 @@ class Grant(pulumi.CustomResource):
|
|
|
853
853
|
|
|
854
854
|
> Most of Unity Catalog APIs are only accessible via **workspace-level APIs**. This design may change in the future. Account-level principal grants can be assigned with any valid workspace as the Unity Catalog is decoupled from specific workspaces. More information in [the official documentation](https://docs.databricks.com/data-governance/unity-catalog/index.html).
|
|
855
855
|
|
|
856
|
-
> This resource is _authoritative_ for grants on securables for a given principal. Configuring this resource for a securable will **OVERWRITE** any existing grants for the principal and changes made outside of Pulumi will be reset.
|
|
856
|
+
> This resource is _authoritative_ for grants on securables for a given _singular_ principal. Configuring this resource for a securable will **OVERWRITE** any existing grants for the principal and changes made outside of Pulumi will be reset. Use Grants for authoritative control of all grants on a securable.
|
|
857
857
|
|
|
858
858
|
In Unity Catalog all users initially have no access to data. Only Metastore Admins can create objects and can grant/revoke access on individual objects to users and groups. Every securable object in Unity Catalog has an owner. The owner can be any account-level user or group, called principals in general. The principal that creates an object becomes its owner. Owners receive `ALL_PRIVILEGES` on the securable object (e.g., `SELECT` and `MODIFY` on a table), as well as the permission to grant privileges to other principals.
|
|
859
859
|
|
pulumi_databricks/group.py
CHANGED
|
@@ -34,12 +34,12 @@ class GroupArgs:
|
|
|
34
34
|
:param pulumi.Input[_builtins.str] acl_principal_id: identifier for use in databricks_access_control_rule_set, e.g. `groups/Some Group`.
|
|
35
35
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: This is a field to allow the group to have cluster create privileges. More fine grained permissions could be assigned with Permissions and cluster_id argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
36
36
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: This is a field to allow the group to have instance pool create privileges. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
37
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
37
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
38
38
|
:param pulumi.Input[_builtins.str] display_name: This is the display name for the given group.
|
|
39
39
|
:param pulumi.Input[_builtins.str] external_id: ID of the group in an external identity provider.
|
|
40
40
|
:param pulumi.Input[_builtins.bool] force: Ignore `cannot create group: Group with name X already exists.` errors and implicitly import the specific group into Pulumi state, enforcing entitlements defined in the instance of resource. _This functionality is experimental_ and is designed to simplify corner cases, like Azure Active Directory synchronisation.
|
|
41
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace.
|
|
42
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access to
|
|
41
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
42
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
43
43
|
"""
|
|
44
44
|
if acl_principal_id is not None:
|
|
45
45
|
pulumi.set(__self__, "acl_principal_id", acl_principal_id)
|
|
@@ -102,7 +102,7 @@ class GroupArgs:
|
|
|
102
102
|
@pulumi.getter(name="databricksSqlAccess")
|
|
103
103
|
def databricks_sql_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
104
104
|
"""
|
|
105
|
-
This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
105
|
+
This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
106
106
|
"""
|
|
107
107
|
return pulumi.get(self, "databricks_sql_access")
|
|
108
108
|
|
|
@@ -159,7 +159,7 @@ class GroupArgs:
|
|
|
159
159
|
@pulumi.getter(name="workspaceAccess")
|
|
160
160
|
def workspace_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
161
161
|
"""
|
|
162
|
-
This is a field to allow the group to have access to a Databricks Workspace.
|
|
162
|
+
This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
163
163
|
"""
|
|
164
164
|
return pulumi.get(self, "workspace_access")
|
|
165
165
|
|
|
@@ -171,7 +171,7 @@ class GroupArgs:
|
|
|
171
171
|
@pulumi.getter(name="workspaceConsume")
|
|
172
172
|
def workspace_consume(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
173
173
|
"""
|
|
174
|
-
This is a field to allow the group to have access to
|
|
174
|
+
This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
175
175
|
"""
|
|
176
176
|
return pulumi.get(self, "workspace_consume")
|
|
177
177
|
|
|
@@ -198,12 +198,12 @@ class _GroupState:
|
|
|
198
198
|
:param pulumi.Input[_builtins.str] acl_principal_id: identifier for use in databricks_access_control_rule_set, e.g. `groups/Some Group`.
|
|
199
199
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: This is a field to allow the group to have cluster create privileges. More fine grained permissions could be assigned with Permissions and cluster_id argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
200
200
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: This is a field to allow the group to have instance pool create privileges. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
201
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
201
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
202
202
|
:param pulumi.Input[_builtins.str] display_name: This is the display name for the given group.
|
|
203
203
|
:param pulumi.Input[_builtins.str] external_id: ID of the group in an external identity provider.
|
|
204
204
|
:param pulumi.Input[_builtins.bool] force: Ignore `cannot create group: Group with name X already exists.` errors and implicitly import the specific group into Pulumi state, enforcing entitlements defined in the instance of resource. _This functionality is experimental_ and is designed to simplify corner cases, like Azure Active Directory synchronisation.
|
|
205
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace.
|
|
206
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access to
|
|
205
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
206
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
207
207
|
"""
|
|
208
208
|
if acl_principal_id is not None:
|
|
209
209
|
pulumi.set(__self__, "acl_principal_id", acl_principal_id)
|
|
@@ -266,7 +266,7 @@ class _GroupState:
|
|
|
266
266
|
@pulumi.getter(name="databricksSqlAccess")
|
|
267
267
|
def databricks_sql_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
268
268
|
"""
|
|
269
|
-
This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
269
|
+
This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
270
270
|
"""
|
|
271
271
|
return pulumi.get(self, "databricks_sql_access")
|
|
272
272
|
|
|
@@ -323,7 +323,7 @@ class _GroupState:
|
|
|
323
323
|
@pulumi.getter(name="workspaceAccess")
|
|
324
324
|
def workspace_access(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
325
325
|
"""
|
|
326
|
-
This is a field to allow the group to have access to a Databricks Workspace.
|
|
326
|
+
This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
327
327
|
"""
|
|
328
328
|
return pulumi.get(self, "workspace_access")
|
|
329
329
|
|
|
@@ -335,7 +335,7 @@ class _GroupState:
|
|
|
335
335
|
@pulumi.getter(name="workspaceConsume")
|
|
336
336
|
def workspace_consume(self) -> Optional[pulumi.Input[_builtins.bool]]:
|
|
337
337
|
"""
|
|
338
|
-
This is a field to allow the group to have access to
|
|
338
|
+
This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
339
339
|
"""
|
|
340
340
|
return pulumi.get(self, "workspace_consume")
|
|
341
341
|
|
|
@@ -453,12 +453,12 @@ class Group(pulumi.CustomResource):
|
|
|
453
453
|
:param pulumi.Input[_builtins.str] acl_principal_id: identifier for use in databricks_access_control_rule_set, e.g. `groups/Some Group`.
|
|
454
454
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: This is a field to allow the group to have cluster create privileges. More fine grained permissions could be assigned with Permissions and cluster_id argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
455
455
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: This is a field to allow the group to have instance pool create privileges. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
456
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
456
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
457
457
|
:param pulumi.Input[_builtins.str] display_name: This is the display name for the given group.
|
|
458
458
|
:param pulumi.Input[_builtins.str] external_id: ID of the group in an external identity provider.
|
|
459
459
|
:param pulumi.Input[_builtins.bool] force: Ignore `cannot create group: Group with name X already exists.` errors and implicitly import the specific group into Pulumi state, enforcing entitlements defined in the instance of resource. _This functionality is experimental_ and is designed to simplify corner cases, like Azure Active Directory synchronisation.
|
|
460
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace.
|
|
461
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access to
|
|
460
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
461
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
462
462
|
"""
|
|
463
463
|
...
|
|
464
464
|
@overload
|
|
@@ -627,12 +627,12 @@ class Group(pulumi.CustomResource):
|
|
|
627
627
|
:param pulumi.Input[_builtins.str] acl_principal_id: identifier for use in databricks_access_control_rule_set, e.g. `groups/Some Group`.
|
|
628
628
|
:param pulumi.Input[_builtins.bool] allow_cluster_create: This is a field to allow the group to have cluster create privileges. More fine grained permissions could be assigned with Permissions and cluster_id argument. Everyone without `allow_cluster_create` argument set, but with permission to use Cluster Policy would be able to create clusters, but within boundaries of that specific policy.
|
|
629
629
|
:param pulumi.Input[_builtins.bool] allow_instance_pool_create: This is a field to allow the group to have instance pool create privileges. More fine grained permissions could be assigned with Permissions and instance_pool_id argument.
|
|
630
|
-
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
630
|
+
:param pulumi.Input[_builtins.bool] databricks_sql_access: This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
631
631
|
:param pulumi.Input[_builtins.str] display_name: This is the display name for the given group.
|
|
632
632
|
:param pulumi.Input[_builtins.str] external_id: ID of the group in an external identity provider.
|
|
633
633
|
:param pulumi.Input[_builtins.bool] force: Ignore `cannot create group: Group with name X already exists.` errors and implicitly import the specific group into Pulumi state, enforcing entitlements defined in the instance of resource. _This functionality is experimental_ and is designed to simplify corner cases, like Azure Active Directory synchronisation.
|
|
634
|
-
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace.
|
|
635
|
-
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access to
|
|
634
|
+
:param pulumi.Input[_builtins.bool] workspace_access: This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
635
|
+
:param pulumi.Input[_builtins.bool] workspace_consume: This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
636
636
|
"""
|
|
637
637
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
638
638
|
|
|
@@ -678,7 +678,7 @@ class Group(pulumi.CustomResource):
|
|
|
678
678
|
@pulumi.getter(name="databricksSqlAccess")
|
|
679
679
|
def databricks_sql_access(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
680
680
|
"""
|
|
681
|
-
This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql)
|
|
681
|
+
This is a field to allow the group to have access to [Databricks SQL](https://databricks.com/product/databricks-sql) UI, [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one) and through databricks_sql_endpoint.
|
|
682
682
|
"""
|
|
683
683
|
return pulumi.get(self, "databricks_sql_access")
|
|
684
684
|
|
|
@@ -715,7 +715,7 @@ class Group(pulumi.CustomResource):
|
|
|
715
715
|
@pulumi.getter(name="workspaceAccess")
|
|
716
716
|
def workspace_access(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
717
717
|
"""
|
|
718
|
-
This is a field to allow the group to have access to a Databricks Workspace.
|
|
718
|
+
This is a field to allow the group to have access to a Databricks Workspace UI and [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one).
|
|
719
719
|
"""
|
|
720
720
|
return pulumi.get(self, "workspace_access")
|
|
721
721
|
|
|
@@ -723,7 +723,7 @@ class Group(pulumi.CustomResource):
|
|
|
723
723
|
@pulumi.getter(name="workspaceConsume")
|
|
724
724
|
def workspace_consume(self) -> pulumi.Output[Optional[_builtins.bool]]:
|
|
725
725
|
"""
|
|
726
|
-
This is a field to allow the group to have access to
|
|
726
|
+
This is a field to allow the group to have access only to [Databricks One](https://docs.databricks.com/aws/en/workspace/databricks-one#who-can-access-databricks-one). Couldn't be used with `workspace_access` or `databricks_sql_access`.
|
|
727
727
|
"""
|
|
728
728
|
return pulumi.get(self, "workspace_consume")
|
|
729
729
|
|
pulumi_databricks/job.py
CHANGED
|
@@ -47,6 +47,7 @@ class JobArgs:
|
|
|
47
47
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input['JobParameterArgs']]]] = None,
|
|
48
48
|
performance_target: Optional[pulumi.Input[_builtins.str]] = None,
|
|
49
49
|
pipeline_task: Optional[pulumi.Input['JobPipelineTaskArgs']] = None,
|
|
50
|
+
provider_config: Optional[pulumi.Input['JobProviderConfigArgs']] = None,
|
|
50
51
|
python_wheel_task: Optional[pulumi.Input['JobPythonWheelTaskArgs']] = None,
|
|
51
52
|
queue: Optional[pulumi.Input['JobQueueArgs']] = None,
|
|
52
53
|
retry_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -85,6 +86,7 @@ class JobArgs:
|
|
|
85
86
|
:param pulumi.Input[_builtins.str] performance_target: The performance mode on a serverless job. The performance target determines the level of compute performance or cost-efficiency for the run. Supported values are:
|
|
86
87
|
* `PERFORMANCE_OPTIMIZED`: (default value) Prioritizes fast startup and execution times through rapid scaling and optimized cluster performance.
|
|
87
88
|
* `STANDARD`: Enables cost-efficient execution of serverless workloads.
|
|
89
|
+
:param pulumi.Input['JobProviderConfigArgs'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
88
90
|
:param pulumi.Input['JobQueueArgs'] queue: The queue status for the job. See queue Configuration Block below.
|
|
89
91
|
:param pulumi.Input['JobRunAsArgs'] run_as: The user or the service principal the job runs as. See run_as Configuration Block below.
|
|
90
92
|
:param pulumi.Input['JobScheduleArgs'] schedule: An optional periodic schedule for this job. The default behavior is that the job runs when triggered by clicking Run Now in the Jobs UI or sending an API request to runNow. See schedule Configuration Block below.
|
|
@@ -164,6 +166,8 @@ class JobArgs:
|
|
|
164
166
|
pulumi.log.warn("""pipeline_task is deprecated: should be used inside a task block and not inside a job block""")
|
|
165
167
|
if pipeline_task is not None:
|
|
166
168
|
pulumi.set(__self__, "pipeline_task", pipeline_task)
|
|
169
|
+
if provider_config is not None:
|
|
170
|
+
pulumi.set(__self__, "provider_config", provider_config)
|
|
167
171
|
if python_wheel_task is not None:
|
|
168
172
|
warnings.warn("""should be used inside a task block and not inside a job block""", DeprecationWarning)
|
|
169
173
|
pulumi.log.warn("""python_wheel_task is deprecated: should be used inside a task block and not inside a job block""")
|
|
@@ -508,6 +512,18 @@ class JobArgs:
|
|
|
508
512
|
def pipeline_task(self, value: Optional[pulumi.Input['JobPipelineTaskArgs']]):
|
|
509
513
|
pulumi.set(self, "pipeline_task", value)
|
|
510
514
|
|
|
515
|
+
@_builtins.property
|
|
516
|
+
@pulumi.getter(name="providerConfig")
|
|
517
|
+
def provider_config(self) -> Optional[pulumi.Input['JobProviderConfigArgs']]:
|
|
518
|
+
"""
|
|
519
|
+
Configure the provider for management through account provider. This block consists of the following fields:
|
|
520
|
+
"""
|
|
521
|
+
return pulumi.get(self, "provider_config")
|
|
522
|
+
|
|
523
|
+
@provider_config.setter
|
|
524
|
+
def provider_config(self, value: Optional[pulumi.Input['JobProviderConfigArgs']]):
|
|
525
|
+
pulumi.set(self, "provider_config", value)
|
|
526
|
+
|
|
511
527
|
@_builtins.property
|
|
512
528
|
@pulumi.getter(name="pythonWheelTask")
|
|
513
529
|
@_utilities.deprecated("""should be used inside a task block and not inside a job block""")
|
|
@@ -703,6 +719,7 @@ class _JobState:
|
|
|
703
719
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input['JobParameterArgs']]]] = None,
|
|
704
720
|
performance_target: Optional[pulumi.Input[_builtins.str]] = None,
|
|
705
721
|
pipeline_task: Optional[pulumi.Input['JobPipelineTaskArgs']] = None,
|
|
722
|
+
provider_config: Optional[pulumi.Input['JobProviderConfigArgs']] = None,
|
|
706
723
|
python_wheel_task: Optional[pulumi.Input['JobPythonWheelTaskArgs']] = None,
|
|
707
724
|
queue: Optional[pulumi.Input['JobQueueArgs']] = None,
|
|
708
725
|
retry_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -742,6 +759,7 @@ class _JobState:
|
|
|
742
759
|
:param pulumi.Input[_builtins.str] performance_target: The performance mode on a serverless job. The performance target determines the level of compute performance or cost-efficiency for the run. Supported values are:
|
|
743
760
|
* `PERFORMANCE_OPTIMIZED`: (default value) Prioritizes fast startup and execution times through rapid scaling and optimized cluster performance.
|
|
744
761
|
* `STANDARD`: Enables cost-efficient execution of serverless workloads.
|
|
762
|
+
:param pulumi.Input['JobProviderConfigArgs'] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
745
763
|
:param pulumi.Input['JobQueueArgs'] queue: The queue status for the job. See queue Configuration Block below.
|
|
746
764
|
:param pulumi.Input['JobRunAsArgs'] run_as: The user or the service principal the job runs as. See run_as Configuration Block below.
|
|
747
765
|
:param pulumi.Input['JobScheduleArgs'] schedule: An optional periodic schedule for this job. The default behavior is that the job runs when triggered by clicking Run Now in the Jobs UI or sending an API request to runNow. See schedule Configuration Block below.
|
|
@@ -822,6 +840,8 @@ class _JobState:
|
|
|
822
840
|
pulumi.log.warn("""pipeline_task is deprecated: should be used inside a task block and not inside a job block""")
|
|
823
841
|
if pipeline_task is not None:
|
|
824
842
|
pulumi.set(__self__, "pipeline_task", pipeline_task)
|
|
843
|
+
if provider_config is not None:
|
|
844
|
+
pulumi.set(__self__, "provider_config", provider_config)
|
|
825
845
|
if python_wheel_task is not None:
|
|
826
846
|
warnings.warn("""should be used inside a task block and not inside a job block""", DeprecationWarning)
|
|
827
847
|
pulumi.log.warn("""python_wheel_task is deprecated: should be used inside a task block and not inside a job block""")
|
|
@@ -1168,6 +1188,18 @@ class _JobState:
|
|
|
1168
1188
|
def pipeline_task(self, value: Optional[pulumi.Input['JobPipelineTaskArgs']]):
|
|
1169
1189
|
pulumi.set(self, "pipeline_task", value)
|
|
1170
1190
|
|
|
1191
|
+
@_builtins.property
|
|
1192
|
+
@pulumi.getter(name="providerConfig")
|
|
1193
|
+
def provider_config(self) -> Optional[pulumi.Input['JobProviderConfigArgs']]:
|
|
1194
|
+
"""
|
|
1195
|
+
Configure the provider for management through account provider. This block consists of the following fields:
|
|
1196
|
+
"""
|
|
1197
|
+
return pulumi.get(self, "provider_config")
|
|
1198
|
+
|
|
1199
|
+
@provider_config.setter
|
|
1200
|
+
def provider_config(self, value: Optional[pulumi.Input['JobProviderConfigArgs']]):
|
|
1201
|
+
pulumi.set(self, "provider_config", value)
|
|
1202
|
+
|
|
1171
1203
|
@_builtins.property
|
|
1172
1204
|
@pulumi.getter(name="pythonWheelTask")
|
|
1173
1205
|
@_utilities.deprecated("""should be used inside a task block and not inside a job block""")
|
|
@@ -1378,6 +1410,7 @@ class Job(pulumi.CustomResource):
|
|
|
1378
1410
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['JobParameterArgs', 'JobParameterArgsDict']]]]] = None,
|
|
1379
1411
|
performance_target: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1380
1412
|
pipeline_task: Optional[pulumi.Input[Union['JobPipelineTaskArgs', 'JobPipelineTaskArgsDict']]] = None,
|
|
1413
|
+
provider_config: Optional[pulumi.Input[Union['JobProviderConfigArgs', 'JobProviderConfigArgsDict']]] = None,
|
|
1381
1414
|
python_wheel_task: Optional[pulumi.Input[Union['JobPythonWheelTaskArgs', 'JobPythonWheelTaskArgsDict']]] = None,
|
|
1382
1415
|
queue: Optional[pulumi.Input[Union['JobQueueArgs', 'JobQueueArgsDict']]] = None,
|
|
1383
1416
|
retry_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -1510,6 +1543,7 @@ class Job(pulumi.CustomResource):
|
|
|
1510
1543
|
:param pulumi.Input[_builtins.str] performance_target: The performance mode on a serverless job. The performance target determines the level of compute performance or cost-efficiency for the run. Supported values are:
|
|
1511
1544
|
* `PERFORMANCE_OPTIMIZED`: (default value) Prioritizes fast startup and execution times through rapid scaling and optimized cluster performance.
|
|
1512
1545
|
* `STANDARD`: Enables cost-efficient execution of serverless workloads.
|
|
1546
|
+
:param pulumi.Input[Union['JobProviderConfigArgs', 'JobProviderConfigArgsDict']] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
1513
1547
|
:param pulumi.Input[Union['JobQueueArgs', 'JobQueueArgsDict']] queue: The queue status for the job. See queue Configuration Block below.
|
|
1514
1548
|
:param pulumi.Input[Union['JobRunAsArgs', 'JobRunAsArgsDict']] run_as: The user or the service principal the job runs as. See run_as Configuration Block below.
|
|
1515
1549
|
:param pulumi.Input[Union['JobScheduleArgs', 'JobScheduleArgsDict']] schedule: An optional periodic schedule for this job. The default behavior is that the job runs when triggered by clicking Run Now in the Jobs UI or sending an API request to runNow. See schedule Configuration Block below.
|
|
@@ -1659,6 +1693,7 @@ class Job(pulumi.CustomResource):
|
|
|
1659
1693
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['JobParameterArgs', 'JobParameterArgsDict']]]]] = None,
|
|
1660
1694
|
performance_target: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1661
1695
|
pipeline_task: Optional[pulumi.Input[Union['JobPipelineTaskArgs', 'JobPipelineTaskArgsDict']]] = None,
|
|
1696
|
+
provider_config: Optional[pulumi.Input[Union['JobProviderConfigArgs', 'JobProviderConfigArgsDict']]] = None,
|
|
1662
1697
|
python_wheel_task: Optional[pulumi.Input[Union['JobPythonWheelTaskArgs', 'JobPythonWheelTaskArgsDict']]] = None,
|
|
1663
1698
|
queue: Optional[pulumi.Input[Union['JobQueueArgs', 'JobQueueArgsDict']]] = None,
|
|
1664
1699
|
retry_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -1709,6 +1744,7 @@ class Job(pulumi.CustomResource):
|
|
|
1709
1744
|
__props__.__dict__["parameters"] = parameters
|
|
1710
1745
|
__props__.__dict__["performance_target"] = performance_target
|
|
1711
1746
|
__props__.__dict__["pipeline_task"] = pipeline_task
|
|
1747
|
+
__props__.__dict__["provider_config"] = provider_config
|
|
1712
1748
|
__props__.__dict__["python_wheel_task"] = python_wheel_task
|
|
1713
1749
|
__props__.__dict__["queue"] = queue
|
|
1714
1750
|
__props__.__dict__["retry_on_timeout"] = retry_on_timeout
|
|
@@ -1761,6 +1797,7 @@ class Job(pulumi.CustomResource):
|
|
|
1761
1797
|
parameters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['JobParameterArgs', 'JobParameterArgsDict']]]]] = None,
|
|
1762
1798
|
performance_target: Optional[pulumi.Input[_builtins.str]] = None,
|
|
1763
1799
|
pipeline_task: Optional[pulumi.Input[Union['JobPipelineTaskArgs', 'JobPipelineTaskArgsDict']]] = None,
|
|
1800
|
+
provider_config: Optional[pulumi.Input[Union['JobProviderConfigArgs', 'JobProviderConfigArgsDict']]] = None,
|
|
1764
1801
|
python_wheel_task: Optional[pulumi.Input[Union['JobPythonWheelTaskArgs', 'JobPythonWheelTaskArgsDict']]] = None,
|
|
1765
1802
|
queue: Optional[pulumi.Input[Union['JobQueueArgs', 'JobQueueArgsDict']]] = None,
|
|
1766
1803
|
retry_on_timeout: Optional[pulumi.Input[_builtins.bool]] = None,
|
|
@@ -1805,6 +1842,7 @@ class Job(pulumi.CustomResource):
|
|
|
1805
1842
|
:param pulumi.Input[_builtins.str] performance_target: The performance mode on a serverless job. The performance target determines the level of compute performance or cost-efficiency for the run. Supported values are:
|
|
1806
1843
|
* `PERFORMANCE_OPTIMIZED`: (default value) Prioritizes fast startup and execution times through rapid scaling and optimized cluster performance.
|
|
1807
1844
|
* `STANDARD`: Enables cost-efficient execution of serverless workloads.
|
|
1845
|
+
:param pulumi.Input[Union['JobProviderConfigArgs', 'JobProviderConfigArgsDict']] provider_config: Configure the provider for management through account provider. This block consists of the following fields:
|
|
1808
1846
|
:param pulumi.Input[Union['JobQueueArgs', 'JobQueueArgsDict']] queue: The queue status for the job. See queue Configuration Block below.
|
|
1809
1847
|
:param pulumi.Input[Union['JobRunAsArgs', 'JobRunAsArgsDict']] run_as: The user or the service principal the job runs as. See run_as Configuration Block below.
|
|
1810
1848
|
:param pulumi.Input[Union['JobScheduleArgs', 'JobScheduleArgsDict']] schedule: An optional periodic schedule for this job. The default behavior is that the job runs when triggered by clicking Run Now in the Jobs UI or sending an API request to runNow. See schedule Configuration Block below.
|
|
@@ -1845,6 +1883,7 @@ class Job(pulumi.CustomResource):
|
|
|
1845
1883
|
__props__.__dict__["parameters"] = parameters
|
|
1846
1884
|
__props__.__dict__["performance_target"] = performance_target
|
|
1847
1885
|
__props__.__dict__["pipeline_task"] = pipeline_task
|
|
1886
|
+
__props__.__dict__["provider_config"] = provider_config
|
|
1848
1887
|
__props__.__dict__["python_wheel_task"] = python_wheel_task
|
|
1849
1888
|
__props__.__dict__["queue"] = queue
|
|
1850
1889
|
__props__.__dict__["retry_on_timeout"] = retry_on_timeout
|
|
@@ -2054,6 +2093,14 @@ class Job(pulumi.CustomResource):
|
|
|
2054
2093
|
def pipeline_task(self) -> pulumi.Output[Optional['outputs.JobPipelineTask']]:
|
|
2055
2094
|
return pulumi.get(self, "pipeline_task")
|
|
2056
2095
|
|
|
2096
|
+
@_builtins.property
|
|
2097
|
+
@pulumi.getter(name="providerConfig")
|
|
2098
|
+
def provider_config(self) -> pulumi.Output[Optional['outputs.JobProviderConfig']]:
|
|
2099
|
+
"""
|
|
2100
|
+
Configure the provider for management through account provider. This block consists of the following fields:
|
|
2101
|
+
"""
|
|
2102
|
+
return pulumi.get(self, "provider_config")
|
|
2103
|
+
|
|
2057
2104
|
@_builtins.property
|
|
2058
2105
|
@pulumi.getter(name="pythonWheelTask")
|
|
2059
2106
|
@_utilities.deprecated("""should be used inside a task block and not inside a job block""")
|