@pulumi/databricks 1.31.0-alpha.1705988812 → 1.31.0
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/connection.d.ts +1 -1
- package/getViews.d.ts +0 -56
- package/getViews.js +0 -56
- package/getViews.js.map +1 -1
- package/grants.d.ts +0 -6
- package/grants.js +0 -4
- package/grants.js.map +1 -1
- package/mwsPrivateAccessSettings.d.ts +9 -15
- package/mwsPrivateAccessSettings.js +0 -2
- package/mwsPrivateAccessSettings.js.map +1 -1
- package/mwsWorkspaces.d.ts +18 -0
- package/mwsWorkspaces.js +2 -0
- package/mwsWorkspaces.js.map +1 -1
- package/package.json +1 -1
- package/sqlEndpoint.d.ts +1 -1
package/connection.d.ts
CHANGED
|
@@ -111,7 +111,7 @@ export declare class Connection extends pulumi.CustomResource {
|
|
|
111
111
|
/**
|
|
112
112
|
* Name of the connection owner.
|
|
113
113
|
*/
|
|
114
|
-
readonly owner: pulumi.Output<string
|
|
114
|
+
readonly owner: pulumi.Output<string>;
|
|
115
115
|
/**
|
|
116
116
|
* Free-form connection properties.
|
|
117
117
|
*/
|
package/getViews.d.ts
CHANGED
|
@@ -1,33 +1,5 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* ## Example Usage
|
|
4
|
-
*
|
|
5
|
-
* Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
|
|
6
|
-
*
|
|
7
|
-
* ```typescript
|
|
8
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
-
* import * as databricks from "@pulumi/databricks";
|
|
10
|
-
*
|
|
11
|
-
* export = async () => {
|
|
12
|
-
* const thingsViews = await databricks.getViews({
|
|
13
|
-
* catalogName: "sandbox",
|
|
14
|
-
* schemaName: "things",
|
|
15
|
-
* });
|
|
16
|
-
* const thingsGrants: databricks.Grants[] = [];
|
|
17
|
-
* for (const range of thingsViews.ids.map((v, k) => ({key: k, value: v}))) {
|
|
18
|
-
* thingsGrants.push(new databricks.Grants(`thingsGrants-${range.key}`, {
|
|
19
|
-
* view: range.value,
|
|
20
|
-
* grants: [{
|
|
21
|
-
* principal: "sensitive",
|
|
22
|
-
* privileges: [
|
|
23
|
-
* "SELECT",
|
|
24
|
-
* "MODIFY",
|
|
25
|
-
* ],
|
|
26
|
-
* }],
|
|
27
|
-
* }));
|
|
28
|
-
* }
|
|
29
|
-
* }
|
|
30
|
-
* ```
|
|
31
3
|
* ## Related Resources
|
|
32
4
|
*
|
|
33
5
|
* The following resources are used in the same context:
|
|
@@ -69,34 +41,6 @@ export interface GetViewsResult {
|
|
|
69
41
|
readonly schemaName: string;
|
|
70
42
|
}
|
|
71
43
|
/**
|
|
72
|
-
* ## Example Usage
|
|
73
|
-
*
|
|
74
|
-
* Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
|
|
75
|
-
*
|
|
76
|
-
* ```typescript
|
|
77
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
78
|
-
* import * as databricks from "@pulumi/databricks";
|
|
79
|
-
*
|
|
80
|
-
* export = async () => {
|
|
81
|
-
* const thingsViews = await databricks.getViews({
|
|
82
|
-
* catalogName: "sandbox",
|
|
83
|
-
* schemaName: "things",
|
|
84
|
-
* });
|
|
85
|
-
* const thingsGrants: databricks.Grants[] = [];
|
|
86
|
-
* for (const range of thingsViews.ids.map((v, k) => ({key: k, value: v}))) {
|
|
87
|
-
* thingsGrants.push(new databricks.Grants(`thingsGrants-${range.key}`, {
|
|
88
|
-
* view: range.value,
|
|
89
|
-
* grants: [{
|
|
90
|
-
* principal: "sensitive",
|
|
91
|
-
* privileges: [
|
|
92
|
-
* "SELECT",
|
|
93
|
-
* "MODIFY",
|
|
94
|
-
* ],
|
|
95
|
-
* }],
|
|
96
|
-
* }));
|
|
97
|
-
* }
|
|
98
|
-
* }
|
|
99
|
-
* ```
|
|
100
44
|
* ## Related Resources
|
|
101
45
|
*
|
|
102
46
|
* The following resources are used in the same context:
|
package/getViews.js
CHANGED
|
@@ -6,34 +6,6 @@ exports.getViewsOutput = exports.getViews = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* ## Example Usage
|
|
10
|
-
*
|
|
11
|
-
* Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
|
|
12
|
-
*
|
|
13
|
-
* ```typescript
|
|
14
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
-
* import * as databricks from "@pulumi/databricks";
|
|
16
|
-
*
|
|
17
|
-
* export = async () => {
|
|
18
|
-
* const thingsViews = await databricks.getViews({
|
|
19
|
-
* catalogName: "sandbox",
|
|
20
|
-
* schemaName: "things",
|
|
21
|
-
* });
|
|
22
|
-
* const thingsGrants: databricks.Grants[] = [];
|
|
23
|
-
* for (const range of thingsViews.ids.map((v, k) => ({key: k, value: v}))) {
|
|
24
|
-
* thingsGrants.push(new databricks.Grants(`thingsGrants-${range.key}`, {
|
|
25
|
-
* view: range.value,
|
|
26
|
-
* grants: [{
|
|
27
|
-
* principal: "sensitive",
|
|
28
|
-
* privileges: [
|
|
29
|
-
* "SELECT",
|
|
30
|
-
* "MODIFY",
|
|
31
|
-
* ],
|
|
32
|
-
* }],
|
|
33
|
-
* }));
|
|
34
|
-
* }
|
|
35
|
-
* }
|
|
36
|
-
* ```
|
|
37
9
|
* ## Related Resources
|
|
38
10
|
*
|
|
39
11
|
* The following resources are used in the same context:
|
|
@@ -51,34 +23,6 @@ function getViews(args, opts) {
|
|
|
51
23
|
}
|
|
52
24
|
exports.getViews = getViews;
|
|
53
25
|
/**
|
|
54
|
-
* ## Example Usage
|
|
55
|
-
*
|
|
56
|
-
* Granting `SELECT` and `MODIFY` to `sensitive` group on all views in a _things_ databricks.Schema from _sandbox_ databricks_catalog.
|
|
57
|
-
*
|
|
58
|
-
* ```typescript
|
|
59
|
-
* import * as pulumi from "@pulumi/pulumi";
|
|
60
|
-
* import * as databricks from "@pulumi/databricks";
|
|
61
|
-
*
|
|
62
|
-
* export = async () => {
|
|
63
|
-
* const thingsViews = await databricks.getViews({
|
|
64
|
-
* catalogName: "sandbox",
|
|
65
|
-
* schemaName: "things",
|
|
66
|
-
* });
|
|
67
|
-
* const thingsGrants: databricks.Grants[] = [];
|
|
68
|
-
* for (const range of thingsViews.ids.map((v, k) => ({key: k, value: v}))) {
|
|
69
|
-
* thingsGrants.push(new databricks.Grants(`thingsGrants-${range.key}`, {
|
|
70
|
-
* view: range.value,
|
|
71
|
-
* grants: [{
|
|
72
|
-
* principal: "sensitive",
|
|
73
|
-
* privileges: [
|
|
74
|
-
* "SELECT",
|
|
75
|
-
* "MODIFY",
|
|
76
|
-
* ],
|
|
77
|
-
* }],
|
|
78
|
-
* }));
|
|
79
|
-
* }
|
|
80
|
-
* }
|
|
81
|
-
* ```
|
|
82
26
|
* ## Related Resources
|
|
83
27
|
*
|
|
84
28
|
* The following resources are used in the same context:
|
package/getViews.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getViews.js","sourceRoot":"","sources":["../getViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getViews.js","sourceRoot":"","sources":["../getViews.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;GAOG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4BAQC;AAmCD;;;;;;;GAOG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/grants.d.ts
CHANGED
|
@@ -22,14 +22,12 @@ export declare class Grants extends pulumi.CustomResource {
|
|
|
22
22
|
readonly foreignConnection: pulumi.Output<string | undefined>;
|
|
23
23
|
readonly function: pulumi.Output<string | undefined>;
|
|
24
24
|
readonly grants: pulumi.Output<outputs.GrantsGrant[]>;
|
|
25
|
-
readonly materializedView: pulumi.Output<string | undefined>;
|
|
26
25
|
readonly metastore: pulumi.Output<string | undefined>;
|
|
27
26
|
readonly model: pulumi.Output<string | undefined>;
|
|
28
27
|
readonly schema: pulumi.Output<string | undefined>;
|
|
29
28
|
readonly share: pulumi.Output<string | undefined>;
|
|
30
29
|
readonly storageCredential: pulumi.Output<string | undefined>;
|
|
31
30
|
readonly table: pulumi.Output<string | undefined>;
|
|
32
|
-
readonly view: pulumi.Output<string | undefined>;
|
|
33
31
|
readonly volume: pulumi.Output<string | undefined>;
|
|
34
32
|
/**
|
|
35
33
|
* Create a Grants resource with the given unique name, arguments, and options.
|
|
@@ -49,14 +47,12 @@ export interface GrantsState {
|
|
|
49
47
|
foreignConnection?: pulumi.Input<string>;
|
|
50
48
|
function?: pulumi.Input<string>;
|
|
51
49
|
grants?: pulumi.Input<pulumi.Input<inputs.GrantsGrant>[]>;
|
|
52
|
-
materializedView?: pulumi.Input<string>;
|
|
53
50
|
metastore?: pulumi.Input<string>;
|
|
54
51
|
model?: pulumi.Input<string>;
|
|
55
52
|
schema?: pulumi.Input<string>;
|
|
56
53
|
share?: pulumi.Input<string>;
|
|
57
54
|
storageCredential?: pulumi.Input<string>;
|
|
58
55
|
table?: pulumi.Input<string>;
|
|
59
|
-
view?: pulumi.Input<string>;
|
|
60
56
|
volume?: pulumi.Input<string>;
|
|
61
57
|
}
|
|
62
58
|
/**
|
|
@@ -68,13 +64,11 @@ export interface GrantsArgs {
|
|
|
68
64
|
foreignConnection?: pulumi.Input<string>;
|
|
69
65
|
function?: pulumi.Input<string>;
|
|
70
66
|
grants: pulumi.Input<pulumi.Input<inputs.GrantsGrant>[]>;
|
|
71
|
-
materializedView?: pulumi.Input<string>;
|
|
72
67
|
metastore?: pulumi.Input<string>;
|
|
73
68
|
model?: pulumi.Input<string>;
|
|
74
69
|
schema?: pulumi.Input<string>;
|
|
75
70
|
share?: pulumi.Input<string>;
|
|
76
71
|
storageCredential?: pulumi.Input<string>;
|
|
77
72
|
table?: pulumi.Input<string>;
|
|
78
|
-
view?: pulumi.Input<string>;
|
|
79
73
|
volume?: pulumi.Input<string>;
|
|
80
74
|
}
|
package/grants.js
CHANGED
|
@@ -38,14 +38,12 @@ class Grants extends pulumi.CustomResource {
|
|
|
38
38
|
resourceInputs["foreignConnection"] = state ? state.foreignConnection : undefined;
|
|
39
39
|
resourceInputs["function"] = state ? state.function : undefined;
|
|
40
40
|
resourceInputs["grants"] = state ? state.grants : undefined;
|
|
41
|
-
resourceInputs["materializedView"] = state ? state.materializedView : undefined;
|
|
42
41
|
resourceInputs["metastore"] = state ? state.metastore : undefined;
|
|
43
42
|
resourceInputs["model"] = state ? state.model : undefined;
|
|
44
43
|
resourceInputs["schema"] = state ? state.schema : undefined;
|
|
45
44
|
resourceInputs["share"] = state ? state.share : undefined;
|
|
46
45
|
resourceInputs["storageCredential"] = state ? state.storageCredential : undefined;
|
|
47
46
|
resourceInputs["table"] = state ? state.table : undefined;
|
|
48
|
-
resourceInputs["view"] = state ? state.view : undefined;
|
|
49
47
|
resourceInputs["volume"] = state ? state.volume : undefined;
|
|
50
48
|
}
|
|
51
49
|
else {
|
|
@@ -58,14 +56,12 @@ class Grants extends pulumi.CustomResource {
|
|
|
58
56
|
resourceInputs["foreignConnection"] = args ? args.foreignConnection : undefined;
|
|
59
57
|
resourceInputs["function"] = args ? args.function : undefined;
|
|
60
58
|
resourceInputs["grants"] = args ? args.grants : undefined;
|
|
61
|
-
resourceInputs["materializedView"] = args ? args.materializedView : undefined;
|
|
62
59
|
resourceInputs["metastore"] = args ? args.metastore : undefined;
|
|
63
60
|
resourceInputs["model"] = args ? args.model : undefined;
|
|
64
61
|
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
65
62
|
resourceInputs["share"] = args ? args.share : undefined;
|
|
66
63
|
resourceInputs["storageCredential"] = args ? args.storageCredential : undefined;
|
|
67
64
|
resourceInputs["table"] = args ? args.table : undefined;
|
|
68
|
-
resourceInputs["view"] = args ? args.view : undefined;
|
|
69
65
|
resourceInputs["volume"] = args ? args.volume : undefined;
|
|
70
66
|
}
|
|
71
67
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
package/grants.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"grants.js","sourceRoot":"","sources":["../grants.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"grants.js","sourceRoot":"","sources":["../grants.ts"],"names":[],"mappings":"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"}
|
|
@@ -107,6 +107,8 @@ export declare class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
107
107
|
static isInstance(obj: any): obj is MwsPrivateAccessSettings;
|
|
108
108
|
/**
|
|
109
109
|
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
110
|
+
*
|
|
111
|
+
* @deprecated Configuring `account_id` at the resource-level is deprecated; please specify it in the `provider {}` configuration block instead
|
|
110
112
|
*/
|
|
111
113
|
readonly accountId: pulumi.Output<string | undefined>;
|
|
112
114
|
/**
|
|
@@ -126,17 +128,13 @@ export declare class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
126
128
|
*/
|
|
127
129
|
readonly privateAccessSettingsName: pulumi.Output<string>;
|
|
128
130
|
/**
|
|
129
|
-
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network.
|
|
131
|
+
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network. Once explicitly set, this field becomes mandatory.
|
|
130
132
|
*/
|
|
131
133
|
readonly publicAccessEnabled: pulumi.Output<boolean | undefined>;
|
|
132
134
|
/**
|
|
133
135
|
* Region of AWS VPC or the Google Cloud VPC network
|
|
134
136
|
*/
|
|
135
137
|
readonly region: pulumi.Output<string>;
|
|
136
|
-
/**
|
|
137
|
-
* (AWS only) Status of Private Access Settings
|
|
138
|
-
*/
|
|
139
|
-
readonly status: pulumi.Output<string>;
|
|
140
138
|
/**
|
|
141
139
|
* Create a MwsPrivateAccessSettings resource with the given unique name, arguments, and options.
|
|
142
140
|
*
|
|
@@ -152,6 +150,8 @@ export declare class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
152
150
|
export interface MwsPrivateAccessSettingsState {
|
|
153
151
|
/**
|
|
154
152
|
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
153
|
+
*
|
|
154
|
+
* @deprecated Configuring `account_id` at the resource-level is deprecated; please specify it in the `provider {}` configuration block instead
|
|
155
155
|
*/
|
|
156
156
|
accountId?: pulumi.Input<string>;
|
|
157
157
|
/**
|
|
@@ -171,17 +171,13 @@ export interface MwsPrivateAccessSettingsState {
|
|
|
171
171
|
*/
|
|
172
172
|
privateAccessSettingsName?: pulumi.Input<string>;
|
|
173
173
|
/**
|
|
174
|
-
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network.
|
|
174
|
+
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network. Once explicitly set, this field becomes mandatory.
|
|
175
175
|
*/
|
|
176
176
|
publicAccessEnabled?: pulumi.Input<boolean>;
|
|
177
177
|
/**
|
|
178
178
|
* Region of AWS VPC or the Google Cloud VPC network
|
|
179
179
|
*/
|
|
180
180
|
region?: pulumi.Input<string>;
|
|
181
|
-
/**
|
|
182
|
-
* (AWS only) Status of Private Access Settings
|
|
183
|
-
*/
|
|
184
|
-
status?: pulumi.Input<string>;
|
|
185
181
|
}
|
|
186
182
|
/**
|
|
187
183
|
* The set of arguments for constructing a MwsPrivateAccessSettings resource.
|
|
@@ -189,6 +185,8 @@ export interface MwsPrivateAccessSettingsState {
|
|
|
189
185
|
export interface MwsPrivateAccessSettingsArgs {
|
|
190
186
|
/**
|
|
191
187
|
* Account Id that could be found in the Accounts Console for [AWS](https://accounts.cloud.databricks.com/) or [GCP](https://accounts.gcp.databricks.com/)
|
|
188
|
+
*
|
|
189
|
+
* @deprecated Configuring `account_id` at the resource-level is deprecated; please specify it in the `provider {}` configuration block instead
|
|
192
190
|
*/
|
|
193
191
|
accountId?: pulumi.Input<string>;
|
|
194
192
|
/**
|
|
@@ -208,15 +206,11 @@ export interface MwsPrivateAccessSettingsArgs {
|
|
|
208
206
|
*/
|
|
209
207
|
privateAccessSettingsName: pulumi.Input<string>;
|
|
210
208
|
/**
|
|
211
|
-
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network.
|
|
209
|
+
* If `true`, the databricks.MwsWorkspaces can be accessed over the databricks.MwsVpcEndpoint as well as over the public network. In such a case, you could also configure an databricks.IpAccessList for the workspace, to restrict the source networks that could be used to access it over the public network. If `false`, the workspace can be accessed only over VPC endpoints, and not over the public network. Once explicitly set, this field becomes mandatory.
|
|
212
210
|
*/
|
|
213
211
|
publicAccessEnabled?: pulumi.Input<boolean>;
|
|
214
212
|
/**
|
|
215
213
|
* Region of AWS VPC or the Google Cloud VPC network
|
|
216
214
|
*/
|
|
217
215
|
region: pulumi.Input<string>;
|
|
218
|
-
/**
|
|
219
|
-
* (AWS only) Status of Private Access Settings
|
|
220
|
-
*/
|
|
221
|
-
status?: pulumi.Input<string>;
|
|
222
216
|
}
|
|
@@ -130,7 +130,6 @@ class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
130
130
|
resourceInputs["privateAccessSettingsName"] = state ? state.privateAccessSettingsName : undefined;
|
|
131
131
|
resourceInputs["publicAccessEnabled"] = state ? state.publicAccessEnabled : undefined;
|
|
132
132
|
resourceInputs["region"] = state ? state.region : undefined;
|
|
133
|
-
resourceInputs["status"] = state ? state.status : undefined;
|
|
134
133
|
}
|
|
135
134
|
else {
|
|
136
135
|
const args = argsOrState;
|
|
@@ -147,7 +146,6 @@ class MwsPrivateAccessSettings extends pulumi.CustomResource {
|
|
|
147
146
|
resourceInputs["privateAccessSettingsName"] = args ? args.privateAccessSettingsName : undefined;
|
|
148
147
|
resourceInputs["publicAccessEnabled"] = args ? args.publicAccessEnabled : undefined;
|
|
149
148
|
resourceInputs["region"] = args ? args.region : undefined;
|
|
150
|
-
resourceInputs["status"] = args ? args.status : undefined;
|
|
151
149
|
}
|
|
152
150
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
153
151
|
super(MwsPrivateAccessSettings.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsPrivateAccessSettings.js","sourceRoot":"","sources":["../mwsPrivateAccessSettings.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAyFG;AACH,MAAa,wBAAyB,SAAQ,MAAM,CAAC,cAAc;IAC/D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAqC,EAAE,IAAmC;QACnI,OAAO,IAAI,wBAAwB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC/E,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,wBAAwB,CAAC,YAAY,CAAC;IACzE,CAAC;
|
|
1
|
+
{"version":3,"file":"mwsPrivateAccessSettings.js","sourceRoot":"","sources":["../mwsPrivateAccessSettings.ts"],"names":[],"mappings":"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"}
|
package/mwsWorkspaces.d.ts
CHANGED
|
@@ -40,6 +40,12 @@ export declare class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
40
40
|
*/
|
|
41
41
|
readonly creationTime: pulumi.Output<number>;
|
|
42
42
|
readonly credentialsId: pulumi.Output<string | undefined>;
|
|
43
|
+
/**
|
|
44
|
+
* The custom tags key-value pairing that is attached to this workspace. These tags will be applied to clusters automatically in addition to any `defaultTags` or `customTags` on a cluster level. Please note it can take up to an hour for customTags to be set due to scheduling on Control Plane. After custom tags are applied, they can be modified however they can never be completely removed.
|
|
45
|
+
*/
|
|
46
|
+
readonly customTags: pulumi.Output<{
|
|
47
|
+
[key: string]: any;
|
|
48
|
+
} | undefined>;
|
|
43
49
|
/**
|
|
44
50
|
* @deprecated Use managed_services_customer_managed_key_id instead
|
|
45
51
|
*/
|
|
@@ -132,6 +138,12 @@ export interface MwsWorkspacesState {
|
|
|
132
138
|
*/
|
|
133
139
|
creationTime?: pulumi.Input<number>;
|
|
134
140
|
credentialsId?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* The custom tags key-value pairing that is attached to this workspace. These tags will be applied to clusters automatically in addition to any `defaultTags` or `customTags` on a cluster level. Please note it can take up to an hour for customTags to be set due to scheduling on Control Plane. After custom tags are applied, they can be modified however they can never be completely removed.
|
|
143
|
+
*/
|
|
144
|
+
customTags?: pulumi.Input<{
|
|
145
|
+
[key: string]: any;
|
|
146
|
+
}>;
|
|
135
147
|
/**
|
|
136
148
|
* @deprecated Use managed_services_customer_managed_key_id instead
|
|
137
149
|
*/
|
|
@@ -216,6 +228,12 @@ export interface MwsWorkspacesArgs {
|
|
|
216
228
|
*/
|
|
217
229
|
creationTime?: pulumi.Input<number>;
|
|
218
230
|
credentialsId?: pulumi.Input<string>;
|
|
231
|
+
/**
|
|
232
|
+
* The custom tags key-value pairing that is attached to this workspace. These tags will be applied to clusters automatically in addition to any `defaultTags` or `customTags` on a cluster level. Please note it can take up to an hour for customTags to be set due to scheduling on Control Plane. After custom tags are applied, they can be modified however they can never be completely removed.
|
|
233
|
+
*/
|
|
234
|
+
customTags?: pulumi.Input<{
|
|
235
|
+
[key: string]: any;
|
|
236
|
+
}>;
|
|
219
237
|
/**
|
|
220
238
|
* @deprecated Use managed_services_customer_managed_key_id instead
|
|
221
239
|
*/
|
package/mwsWorkspaces.js
CHANGED
|
@@ -44,6 +44,7 @@ class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
44
44
|
resourceInputs["cloudResourceContainer"] = state ? state.cloudResourceContainer : undefined;
|
|
45
45
|
resourceInputs["creationTime"] = state ? state.creationTime : undefined;
|
|
46
46
|
resourceInputs["credentialsId"] = state ? state.credentialsId : undefined;
|
|
47
|
+
resourceInputs["customTags"] = state ? state.customTags : undefined;
|
|
47
48
|
resourceInputs["customerManagedKeyId"] = state ? state.customerManagedKeyId : undefined;
|
|
48
49
|
resourceInputs["deploymentName"] = state ? state.deploymentName : undefined;
|
|
49
50
|
resourceInputs["externalCustomerInfo"] = state ? state.externalCustomerInfo : undefined;
|
|
@@ -78,6 +79,7 @@ class MwsWorkspaces extends pulumi.CustomResource {
|
|
|
78
79
|
resourceInputs["cloudResourceContainer"] = args ? args.cloudResourceContainer : undefined;
|
|
79
80
|
resourceInputs["creationTime"] = args ? args.creationTime : undefined;
|
|
80
81
|
resourceInputs["credentialsId"] = args ? args.credentialsId : undefined;
|
|
82
|
+
resourceInputs["customTags"] = args ? args.customTags : undefined;
|
|
81
83
|
resourceInputs["customerManagedKeyId"] = args ? args.customerManagedKeyId : undefined;
|
|
82
84
|
resourceInputs["deploymentName"] = args ? args.deploymentName : undefined;
|
|
83
85
|
resourceInputs["externalCustomerInfo"] = args ? args.externalCustomerInfo : undefined;
|
package/mwsWorkspaces.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,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,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;
|
|
1
|
+
{"version":3,"file":"mwsWorkspaces.js","sourceRoot":"","sources":["../mwsWorkspaces.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
package/sqlEndpoint.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export declare class SqlEndpoint extends pulumi.CustomResource {
|
|
|
92
92
|
*
|
|
93
93
|
* - **For Azure**, If omitted, the default is `false` for most workspaces. However, if this workspace used the SQL Warehouses API to create a warehouse between November 1, 2022 and May 19, 2023, the default remains the previous behavior which is default to `true` if the workspace is enabled for serverless and fits the requirements for serverless SQL warehouses. A workspace must meet the [requirements](https://learn.microsoft.com/azure/databricks/sql/admin/serverless) and might require an update to its [Azure storage firewall](https://learn.microsoft.com/azure/databricks/sql/admin/serverless-firewall).
|
|
94
94
|
*/
|
|
95
|
-
readonly enableServerlessCompute: pulumi.Output<boolean
|
|
95
|
+
readonly enableServerlessCompute: pulumi.Output<boolean>;
|
|
96
96
|
/**
|
|
97
97
|
* Health status of the endpoint.
|
|
98
98
|
*/
|