@pulumi/databricks 1.76.0-alpha.1757721082 → 1.76.0-alpha.1758166792
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/sqlEndpoint.d.ts +12 -0
- package/sqlEndpoint.js +2 -0
- package/sqlEndpoint.js.map +1 -1
- package/types/input.d.ts +4 -4
- package/types/output.d.ts +4 -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.90.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.90.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.90.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.76.0-alpha.
|
|
3
|
+
"version": "1.76.0-alpha.1758166792",
|
|
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.76.0-alpha.
|
|
27
|
+
"version": "1.76.0-alpha.1758166792"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/sqlEndpoint.d.ts
CHANGED
|
@@ -130,6 +130,10 @@ export declare class SqlEndpoint extends pulumi.CustomResource {
|
|
|
130
130
|
* Name of the SQL warehouse. Must be unique.
|
|
131
131
|
*/
|
|
132
132
|
readonly name: pulumi.Output<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Whether to skip waiting for the SQL warehouse to start after creation. Default is `false`. When set to `true`, Pulumi will create the warehouse but won't wait for it to be in a running state before completing.
|
|
135
|
+
*/
|
|
136
|
+
readonly noWait: pulumi.Output<boolean | undefined>;
|
|
133
137
|
/**
|
|
134
138
|
* The current number of clusters used by the endpoint.
|
|
135
139
|
*/
|
|
@@ -222,6 +226,10 @@ export interface SqlEndpointState {
|
|
|
222
226
|
* Name of the SQL warehouse. Must be unique.
|
|
223
227
|
*/
|
|
224
228
|
name?: pulumi.Input<string>;
|
|
229
|
+
/**
|
|
230
|
+
* Whether to skip waiting for the SQL warehouse to start after creation. Default is `false`. When set to `true`, Pulumi will create the warehouse but won't wait for it to be in a running state before completing.
|
|
231
|
+
*/
|
|
232
|
+
noWait?: pulumi.Input<boolean>;
|
|
225
233
|
/**
|
|
226
234
|
* The current number of clusters used by the endpoint.
|
|
227
235
|
*/
|
|
@@ -294,6 +302,10 @@ export interface SqlEndpointArgs {
|
|
|
294
302
|
* Name of the SQL warehouse. Must be unique.
|
|
295
303
|
*/
|
|
296
304
|
name?: pulumi.Input<string>;
|
|
305
|
+
/**
|
|
306
|
+
* Whether to skip waiting for the SQL warehouse to start after creation. Default is `false`. When set to `true`, Pulumi will create the warehouse but won't wait for it to be in a running state before completing.
|
|
307
|
+
*/
|
|
308
|
+
noWait?: pulumi.Input<boolean>;
|
|
297
309
|
/**
|
|
298
310
|
* The spot policy to use for allocating instances to clusters: `COST_OPTIMIZED` or `RELIABILITY_OPTIMIZED`. This field is optional. Default is `COST_OPTIMIZED`.
|
|
299
311
|
*/
|
package/sqlEndpoint.js
CHANGED
|
@@ -108,6 +108,7 @@ class SqlEndpoint extends pulumi.CustomResource {
|
|
|
108
108
|
resourceInputs["maxNumClusters"] = state?.maxNumClusters;
|
|
109
109
|
resourceInputs["minNumClusters"] = state?.minNumClusters;
|
|
110
110
|
resourceInputs["name"] = state?.name;
|
|
111
|
+
resourceInputs["noWait"] = state?.noWait;
|
|
111
112
|
resourceInputs["numActiveSessions"] = state?.numActiveSessions;
|
|
112
113
|
resourceInputs["numClusters"] = state?.numClusters;
|
|
113
114
|
resourceInputs["odbcParams"] = state?.odbcParams;
|
|
@@ -131,6 +132,7 @@ class SqlEndpoint extends pulumi.CustomResource {
|
|
|
131
132
|
resourceInputs["maxNumClusters"] = args?.maxNumClusters;
|
|
132
133
|
resourceInputs["minNumClusters"] = args?.minNumClusters;
|
|
133
134
|
resourceInputs["name"] = args?.name;
|
|
135
|
+
resourceInputs["noWait"] = args?.noWait;
|
|
134
136
|
resourceInputs["spotInstancePolicy"] = args?.spotInstancePolicy;
|
|
135
137
|
resourceInputs["tags"] = args?.tags;
|
|
136
138
|
resourceInputs["warehouseType"] = args?.warehouseType;
|
package/sqlEndpoint.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sqlEndpoint.js","sourceRoot":"","sources":["../sqlEndpoint.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6DG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"sqlEndpoint.js","sourceRoot":"","sources":["../sqlEndpoint.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -16865,11 +16865,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
16865
16865
|
*/
|
|
16866
16866
|
networkProjectId: pulumi.Input<string>;
|
|
16867
16867
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
16869
16869
|
*/
|
|
16870
16870
|
podIpRangeName?: pulumi.Input<string>;
|
|
16871
16871
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
16873
16873
|
*/
|
|
16874
16874
|
serviceIpRangeName?: pulumi.Input<string>;
|
|
16875
16875
|
/**
|
|
@@ -16930,11 +16930,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
16930
16930
|
}
|
|
16931
16931
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
16932
16932
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
16934
16934
|
*/
|
|
16935
16935
|
gkeClusterPodIpRange?: pulumi.Input<string>;
|
|
16936
16936
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
16938
16938
|
*/
|
|
16939
16939
|
gkeClusterServiceIpRange?: pulumi.Input<string>;
|
|
16940
16940
|
subnetCidr: pulumi.Input<string>;
|
package/types/output.d.ts
CHANGED
|
@@ -14798,11 +14798,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
14798
14798
|
*/
|
|
14799
14799
|
networkProjectId: string;
|
|
14800
14800
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
14802
14802
|
*/
|
|
14803
14803
|
podIpRangeName?: string;
|
|
14804
14804
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
14806
14806
|
*/
|
|
14807
14807
|
serviceIpRangeName?: string;
|
|
14808
14808
|
/**
|
|
@@ -14863,11 +14863,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
14863
14863
|
}
|
|
14864
14864
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
14865
14865
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
14867
14867
|
*/
|
|
14868
14868
|
gkeClusterPodIpRange?: string;
|
|
14869
14869
|
/**
|
|
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.
|
|
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.90.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
14871
14871
|
*/
|
|
14872
14872
|
gkeClusterServiceIpRange?: string;
|
|
14873
14873
|
subnetCidr: string;
|