@pulumi/databricks 1.75.0-alpha.1757354185 → 1.75.0-alpha.1757561963
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.
- package/mwsWorkspaces.d.ts +3 -3
- package/package.json +2 -2
- package/types/input.d.ts +21 -4
- package/types/output.d.ts +21 -4
package/mwsWorkspaces.d.ts
CHANGED
|
@@ -322,7 +322,7 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
322
322
|
*/
|
|
323
323
|
readonly gcpWorkspaceSa: pulumi.Output<string>;
|
|
324
324
|
/**
|
|
325
|
-
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
325
|
+
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
326
326
|
*/
|
|
327
327
|
readonly gkeConfig: pulumi.Output<outputs.MwsWorkspacesGkeConfig | undefined>;
|
|
328
328
|
readonly isNoPublicIpEnabled: pulumi.Output<boolean | undefined>;
|
|
@@ -440,7 +440,7 @@ export interface MwsWorkspacesState {
|
|
|
440
440
|
*/
|
|
441
441
|
gcpWorkspaceSa?: pulumi.Input<string>;
|
|
442
442
|
/**
|
|
443
|
-
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
443
|
+
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
444
444
|
*/
|
|
445
445
|
gkeConfig?: pulumi.Input<inputs.MwsWorkspacesGkeConfig>;
|
|
446
446
|
isNoPublicIpEnabled?: pulumi.Input<boolean>;
|
|
@@ -542,7 +542,7 @@ export interface MwsWorkspacesArgs {
|
|
|
542
542
|
externalCustomerInfo?: pulumi.Input<inputs.MwsWorkspacesExternalCustomerInfo>;
|
|
543
543
|
gcpManagedNetworkConfig?: pulumi.Input<inputs.MwsWorkspacesGcpManagedNetworkConfig>;
|
|
544
544
|
/**
|
|
545
|
-
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
545
|
+
* @deprecated gke_config is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
546
546
|
*/
|
|
547
547
|
gkeConfig?: pulumi.Input<inputs.MwsWorkspacesGkeConfig>;
|
|
548
548
|
isNoPublicIpEnabled?: pulumi.Input<boolean>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "1.75.0-alpha.
|
|
3
|
+
"version": "1.75.0-alpha.1757561963",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,6 +24,6 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "databricks",
|
|
27
|
-
"version": "1.75.0-alpha.
|
|
27
|
+
"version": "1.75.0-alpha.1757561963"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -13111,6 +13111,11 @@ export interface JobContinuous {
|
|
|
13111
13111
|
* Indicate whether this continuous job is paused or not. Either `PAUSED` or `UNPAUSED`. When the `pauseStatus` field is omitted in the block, the server will default to using `UNPAUSED` as a value for `pauseStatus`.
|
|
13112
13112
|
*/
|
|
13113
13113
|
pauseStatus?: pulumi.Input<string>;
|
|
13114
|
+
/**
|
|
13115
|
+
* Controls task level retry behaviour. Allowed values are:
|
|
13116
|
+
* * `NEVER` (default): The failed task will not be retried.
|
|
13117
|
+
* * `ON_FAILURE`: Retry a failed task if at least one other task in the job is still running its first attempt. When this condition is no longer met or the retry limit is reached, the job run is cancelled and a new run is started.
|
|
13118
|
+
*/
|
|
13114
13119
|
taskRetryMode?: pulumi.Input<string>;
|
|
13115
13120
|
}
|
|
13116
13121
|
export interface JobDbtTask {
|
|
@@ -16860,11 +16865,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
16860
16865
|
*/
|
|
16861
16866
|
networkProjectId: pulumi.Input<string>;
|
|
16862
16867
|
/**
|
|
16863
|
-
* @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
16868
|
+
* @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
16864
16869
|
*/
|
|
16865
16870
|
podIpRangeName?: pulumi.Input<string>;
|
|
16866
16871
|
/**
|
|
16867
|
-
* @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
16872
|
+
* @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
16868
16873
|
*/
|
|
16869
16874
|
serviceIpRangeName?: pulumi.Input<string>;
|
|
16870
16875
|
/**
|
|
@@ -16925,11 +16930,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
16925
16930
|
}
|
|
16926
16931
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
16927
16932
|
/**
|
|
16928
|
-
* @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
16933
|
+
* @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
16929
16934
|
*/
|
|
16930
16935
|
gkeClusterPodIpRange?: pulumi.Input<string>;
|
|
16931
16936
|
/**
|
|
16932
|
-
* @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
16937
|
+
* @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
16933
16938
|
*/
|
|
16934
16939
|
gkeClusterServiceIpRange?: pulumi.Input<string>;
|
|
16935
16940
|
subnetCidr: pulumi.Input<string>;
|
|
@@ -16998,12 +17003,24 @@ export interface NotificationDestinationConfigGenericWebhook {
|
|
|
16998
17003
|
usernameSet?: pulumi.Input<boolean>;
|
|
16999
17004
|
}
|
|
17000
17005
|
export interface NotificationDestinationConfigMicrosoftTeams {
|
|
17006
|
+
/**
|
|
17007
|
+
* App ID for Microsoft Teams App.
|
|
17008
|
+
*/
|
|
17001
17009
|
appId?: pulumi.Input<string>;
|
|
17002
17010
|
appIdSet?: pulumi.Input<boolean>;
|
|
17011
|
+
/**
|
|
17012
|
+
* Secret for Microsoft Teams App authentication.
|
|
17013
|
+
*/
|
|
17003
17014
|
authSecret?: pulumi.Input<string>;
|
|
17004
17015
|
authSecretSet?: pulumi.Input<boolean>;
|
|
17016
|
+
/**
|
|
17017
|
+
* Channel URL for Microsoft Teams App.
|
|
17018
|
+
*/
|
|
17005
17019
|
channelUrl?: pulumi.Input<string>;
|
|
17006
17020
|
channelUrlSet?: pulumi.Input<boolean>;
|
|
17021
|
+
/**
|
|
17022
|
+
* Tenant ID for Microsoft Teams App.
|
|
17023
|
+
*/
|
|
17007
17024
|
tenantId?: pulumi.Input<string>;
|
|
17008
17025
|
tenantIdSet?: pulumi.Input<boolean>;
|
|
17009
17026
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -11044,6 +11044,11 @@ export interface JobContinuous {
|
|
|
11044
11044
|
* Indicate whether this continuous job is paused or not. Either `PAUSED` or `UNPAUSED`. When the `pauseStatus` field is omitted in the block, the server will default to using `UNPAUSED` as a value for `pauseStatus`.
|
|
11045
11045
|
*/
|
|
11046
11046
|
pauseStatus?: string;
|
|
11047
|
+
/**
|
|
11048
|
+
* Controls task level retry behaviour. Allowed values are:
|
|
11049
|
+
* * `NEVER` (default): The failed task will not be retried.
|
|
11050
|
+
* * `ON_FAILURE`: Retry a failed task if at least one other task in the job is still running its first attempt. When this condition is no longer met or the retry limit is reached, the job run is cancelled and a new run is started.
|
|
11051
|
+
*/
|
|
11047
11052
|
taskRetryMode?: string;
|
|
11048
11053
|
}
|
|
11049
11054
|
export interface JobDbtTask {
|
|
@@ -14793,11 +14798,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
14793
14798
|
*/
|
|
14794
14799
|
networkProjectId: string;
|
|
14795
14800
|
/**
|
|
14796
|
-
* @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
14801
|
+
* @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
14797
14802
|
*/
|
|
14798
14803
|
podIpRangeName?: string;
|
|
14799
14804
|
/**
|
|
14800
|
-
* @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
14805
|
+
* @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
14801
14806
|
*/
|
|
14802
14807
|
serviceIpRangeName?: string;
|
|
14803
14808
|
/**
|
|
@@ -14858,11 +14863,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
14858
14863
|
}
|
|
14859
14864
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
14860
14865
|
/**
|
|
14861
|
-
* @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
14866
|
+
* @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
14862
14867
|
*/
|
|
14863
14868
|
gkeClusterPodIpRange?: string;
|
|
14864
14869
|
/**
|
|
14865
|
-
* @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
14870
|
+
* @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.89.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
14866
14871
|
*/
|
|
14867
14872
|
gkeClusterServiceIpRange?: string;
|
|
14868
14873
|
subnetCidr: string;
|
|
@@ -14931,12 +14936,24 @@ export interface NotificationDestinationConfigGenericWebhook {
|
|
|
14931
14936
|
usernameSet: boolean;
|
|
14932
14937
|
}
|
|
14933
14938
|
export interface NotificationDestinationConfigMicrosoftTeams {
|
|
14939
|
+
/**
|
|
14940
|
+
* App ID for Microsoft Teams App.
|
|
14941
|
+
*/
|
|
14934
14942
|
appId?: string;
|
|
14935
14943
|
appIdSet?: boolean;
|
|
14944
|
+
/**
|
|
14945
|
+
* Secret for Microsoft Teams App authentication.
|
|
14946
|
+
*/
|
|
14936
14947
|
authSecret?: string;
|
|
14937
14948
|
authSecretSet?: boolean;
|
|
14949
|
+
/**
|
|
14950
|
+
* Channel URL for Microsoft Teams App.
|
|
14951
|
+
*/
|
|
14938
14952
|
channelUrl?: string;
|
|
14939
14953
|
channelUrlSet?: boolean;
|
|
14954
|
+
/**
|
|
14955
|
+
* Tenant ID for Microsoft Teams App.
|
|
14956
|
+
*/
|
|
14940
14957
|
tenantId?: string;
|
|
14941
14958
|
tenantIdSet?: boolean;
|
|
14942
14959
|
/**
|