@pulumi/databricks 1.7.0 → 1.8.0-alpha.1678127428
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/instanceProfile.d.ts +3 -3
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/servicePrincipal.d.ts +24 -0
- package/servicePrincipal.js +4 -0
- package/servicePrincipal.js.map +1 -1
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +2 -2
- package/user.d.ts +24 -0
- package/user.js +4 -0
- package/user.js.map +1 -1
package/instanceProfile.d.ts
CHANGED
|
@@ -169,7 +169,7 @@ export declare class InstanceProfile extends pulumi.CustomResource {
|
|
|
169
169
|
*/
|
|
170
170
|
readonly isMetaInstanceProfile: pulumi.Output<boolean | undefined>;
|
|
171
171
|
/**
|
|
172
|
-
* **For advanced usage only.** If validation fails with an error message that does not indicate an IAM related permission issue, (e.g.
|
|
172
|
+
* **For advanced usage only.** If validation fails with an error message that does not indicate an IAM related permission issue, (e.g. "Your requested instance type is not supported in your requested availability zone"), you can pass this flag to skip the validation and forcibly add the instance profile.
|
|
173
173
|
*/
|
|
174
174
|
readonly skipValidation: pulumi.Output<boolean>;
|
|
175
175
|
/**
|
|
@@ -198,7 +198,7 @@ export interface InstanceProfileState {
|
|
|
198
198
|
*/
|
|
199
199
|
isMetaInstanceProfile?: pulumi.Input<boolean>;
|
|
200
200
|
/**
|
|
201
|
-
* **For advanced usage only.** If validation fails with an error message that does not indicate an IAM related permission issue, (e.g.
|
|
201
|
+
* **For advanced usage only.** If validation fails with an error message that does not indicate an IAM related permission issue, (e.g. "Your requested instance type is not supported in your requested availability zone"), you can pass this flag to skip the validation and forcibly add the instance profile.
|
|
202
202
|
*/
|
|
203
203
|
skipValidation?: pulumi.Input<boolean>;
|
|
204
204
|
}
|
|
@@ -219,7 +219,7 @@ export interface InstanceProfileArgs {
|
|
|
219
219
|
*/
|
|
220
220
|
isMetaInstanceProfile?: pulumi.Input<boolean>;
|
|
221
221
|
/**
|
|
222
|
-
* **For advanced usage only.** If validation fails with an error message that does not indicate an IAM related permission issue, (e.g.
|
|
222
|
+
* **For advanced usage only.** If validation fails with an error message that does not indicate an IAM related permission issue, (e.g. "Your requested instance type is not supported in your requested availability zone"), you can pass this flag to skip the validation and forcibly add the instance profile.
|
|
223
223
|
*/
|
|
224
224
|
skipValidation?: pulumi.Input<boolean>;
|
|
225
225
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.8.0-alpha.1678127428+5d921b2b",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.8.0-alpha.1678127428+5d921b2b"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "v1.
|
|
3
|
+
"version": "v1.8.0-alpha.1678127428+5d921b2b",
|
|
4
4
|
"description": "A Pulumi package for creating and managing databricks cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"license": "Apache-2.0",
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "tsc",
|
|
15
|
-
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.
|
|
15
|
+
"install": "node scripts/install-pulumi-plugin.js resource databricks v1.8.0-alpha.1678127428+5d921b2b"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@pulumi/pulumi": "^3.0.0"
|
package/servicePrincipal.d.ts
CHANGED
|
@@ -138,6 +138,14 @@ export declare class ServicePrincipal extends pulumi.CustomResource {
|
|
|
138
138
|
*/
|
|
139
139
|
readonly externalId: pulumi.Output<string | undefined>;
|
|
140
140
|
readonly force: pulumi.Output<boolean | undefined>;
|
|
141
|
+
/**
|
|
142
|
+
* This flag determines whether the service principal's home directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
143
|
+
*/
|
|
144
|
+
readonly forceDeleteHomeDir: pulumi.Output<boolean | undefined>;
|
|
145
|
+
/**
|
|
146
|
+
* This flag determines whether the service principal's repo directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
147
|
+
*/
|
|
148
|
+
readonly forceDeleteRepos: pulumi.Output<boolean | undefined>;
|
|
141
149
|
/**
|
|
142
150
|
* Home folder of the service principal, e.g. `/Users/00000000-0000-0000-0000-000000000000`.
|
|
143
151
|
*/
|
|
@@ -192,6 +200,14 @@ export interface ServicePrincipalState {
|
|
|
192
200
|
*/
|
|
193
201
|
externalId?: pulumi.Input<string>;
|
|
194
202
|
force?: pulumi.Input<boolean>;
|
|
203
|
+
/**
|
|
204
|
+
* This flag determines whether the service principal's home directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
205
|
+
*/
|
|
206
|
+
forceDeleteHomeDir?: pulumi.Input<boolean>;
|
|
207
|
+
/**
|
|
208
|
+
* This flag determines whether the service principal's repo directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
209
|
+
*/
|
|
210
|
+
forceDeleteRepos?: pulumi.Input<boolean>;
|
|
195
211
|
/**
|
|
196
212
|
* Home folder of the service principal, e.g. `/Users/00000000-0000-0000-0000-000000000000`.
|
|
197
213
|
*/
|
|
@@ -238,6 +254,14 @@ export interface ServicePrincipalArgs {
|
|
|
238
254
|
*/
|
|
239
255
|
externalId?: pulumi.Input<string>;
|
|
240
256
|
force?: pulumi.Input<boolean>;
|
|
257
|
+
/**
|
|
258
|
+
* This flag determines whether the service principal's home directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
259
|
+
*/
|
|
260
|
+
forceDeleteHomeDir?: pulumi.Input<boolean>;
|
|
261
|
+
/**
|
|
262
|
+
* This flag determines whether the service principal's repo directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
263
|
+
*/
|
|
264
|
+
forceDeleteRepos?: pulumi.Input<boolean>;
|
|
241
265
|
/**
|
|
242
266
|
* Home folder of the service principal, e.g. `/Users/00000000-0000-0000-0000-000000000000`.
|
|
243
267
|
*/
|
package/servicePrincipal.js
CHANGED
|
@@ -135,6 +135,8 @@ class ServicePrincipal extends pulumi.CustomResource {
|
|
|
135
135
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
136
136
|
resourceInputs["externalId"] = state ? state.externalId : undefined;
|
|
137
137
|
resourceInputs["force"] = state ? state.force : undefined;
|
|
138
|
+
resourceInputs["forceDeleteHomeDir"] = state ? state.forceDeleteHomeDir : undefined;
|
|
139
|
+
resourceInputs["forceDeleteRepos"] = state ? state.forceDeleteRepos : undefined;
|
|
138
140
|
resourceInputs["home"] = state ? state.home : undefined;
|
|
139
141
|
resourceInputs["repos"] = state ? state.repos : undefined;
|
|
140
142
|
resourceInputs["workspaceAccess"] = state ? state.workspaceAccess : undefined;
|
|
@@ -149,6 +151,8 @@ class ServicePrincipal extends pulumi.CustomResource {
|
|
|
149
151
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
150
152
|
resourceInputs["externalId"] = args ? args.externalId : undefined;
|
|
151
153
|
resourceInputs["force"] = args ? args.force : undefined;
|
|
154
|
+
resourceInputs["forceDeleteHomeDir"] = args ? args.forceDeleteHomeDir : undefined;
|
|
155
|
+
resourceInputs["forceDeleteRepos"] = args ? args.forceDeleteRepos : undefined;
|
|
152
156
|
resourceInputs["home"] = args ? args.home : undefined;
|
|
153
157
|
resourceInputs["repos"] = args ? args.repos : undefined;
|
|
154
158
|
resourceInputs["workspaceAccess"] = args ? args.workspaceAccess : undefined;
|
package/servicePrincipal.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"servicePrincipal.js","sourceRoot":"","sources":["../servicePrincipal.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6FG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACvE,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,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;
|
|
1
|
+
{"version":3,"file":"servicePrincipal.js","sourceRoot":"","sources":["../servicePrincipal.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -2166,7 +2166,7 @@ export interface InstancePoolPreloadedDockerImageBasicAuth {
|
|
|
2166
2166
|
}
|
|
2167
2167
|
export interface JobContinuous {
|
|
2168
2168
|
/**
|
|
2169
|
-
* Indicate whether this
|
|
2169
|
+
* 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`.
|
|
2170
2170
|
*/
|
|
2171
2171
|
pauseStatus?: pulumi.Input<string>;
|
|
2172
2172
|
}
|
|
@@ -2582,7 +2582,7 @@ export interface JobPythonWheelTask {
|
|
|
2582
2582
|
}
|
|
2583
2583
|
export interface JobSchedule {
|
|
2584
2584
|
/**
|
|
2585
|
-
* Indicate whether this schedule is paused or not. Either
|
|
2585
|
+
* Indicate whether this schedule is paused or not. Either `PAUSED` or `UNPAUSED`. When the `pauseStatus` field is omitted and a schedule is provided, the server will default to using `UNPAUSED` as a value for `pauseStatus`.
|
|
2586
2586
|
*/
|
|
2587
2587
|
pauseStatus?: pulumi.Input<string>;
|
|
2588
2588
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -1190,7 +1190,7 @@ export interface InstancePoolPreloadedDockerImageBasicAuth {
|
|
|
1190
1190
|
}
|
|
1191
1191
|
export interface JobContinuous {
|
|
1192
1192
|
/**
|
|
1193
|
-
* Indicate whether this
|
|
1193
|
+
* 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`.
|
|
1194
1194
|
*/
|
|
1195
1195
|
pauseStatus: string;
|
|
1196
1196
|
}
|
|
@@ -1606,7 +1606,7 @@ export interface JobPythonWheelTask {
|
|
|
1606
1606
|
}
|
|
1607
1607
|
export interface JobSchedule {
|
|
1608
1608
|
/**
|
|
1609
|
-
* Indicate whether this schedule is paused or not. Either
|
|
1609
|
+
* Indicate whether this schedule is paused or not. Either `PAUSED` or `UNPAUSED`. When the `pauseStatus` field is omitted and a schedule is provided, the server will default to using `UNPAUSED` as a value for `pauseStatus`.
|
|
1610
1610
|
*/
|
|
1611
1611
|
pauseStatus: string;
|
|
1612
1612
|
/**
|
package/user.d.ts
CHANGED
|
@@ -139,6 +139,14 @@ export declare class User extends pulumi.CustomResource {
|
|
|
139
139
|
*/
|
|
140
140
|
readonly externalId: pulumi.Output<string | undefined>;
|
|
141
141
|
readonly force: pulumi.Output<boolean | undefined>;
|
|
142
|
+
/**
|
|
143
|
+
* This flag determines whether the user's home directory is deleted when the user is deleted. It will have not impact when in the accounts SCIM API. False by default.
|
|
144
|
+
*/
|
|
145
|
+
readonly forceDeleteHomeDir: pulumi.Output<boolean | undefined>;
|
|
146
|
+
/**
|
|
147
|
+
* This flag determines whether the user's repo directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
148
|
+
*/
|
|
149
|
+
readonly forceDeleteRepos: pulumi.Output<boolean | undefined>;
|
|
142
150
|
/**
|
|
143
151
|
* Home folder of the user, e.g. `/Users/mr.foo@example.com`.
|
|
144
152
|
*/
|
|
@@ -190,6 +198,14 @@ export interface UserState {
|
|
|
190
198
|
*/
|
|
191
199
|
externalId?: pulumi.Input<string>;
|
|
192
200
|
force?: pulumi.Input<boolean>;
|
|
201
|
+
/**
|
|
202
|
+
* This flag determines whether the user's home directory is deleted when the user is deleted. It will have not impact when in the accounts SCIM API. False by default.
|
|
203
|
+
*/
|
|
204
|
+
forceDeleteHomeDir?: pulumi.Input<boolean>;
|
|
205
|
+
/**
|
|
206
|
+
* This flag determines whether the user's repo directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
207
|
+
*/
|
|
208
|
+
forceDeleteRepos?: pulumi.Input<boolean>;
|
|
193
209
|
/**
|
|
194
210
|
* Home folder of the user, e.g. `/Users/mr.foo@example.com`.
|
|
195
211
|
*/
|
|
@@ -233,6 +249,14 @@ export interface UserArgs {
|
|
|
233
249
|
*/
|
|
234
250
|
externalId?: pulumi.Input<string>;
|
|
235
251
|
force?: pulumi.Input<boolean>;
|
|
252
|
+
/**
|
|
253
|
+
* This flag determines whether the user's home directory is deleted when the user is deleted. It will have not impact when in the accounts SCIM API. False by default.
|
|
254
|
+
*/
|
|
255
|
+
forceDeleteHomeDir?: pulumi.Input<boolean>;
|
|
256
|
+
/**
|
|
257
|
+
* This flag determines whether the user's repo directory is deleted when the user is deleted. It will have no impact when in the accounts SCIM API. False by default.
|
|
258
|
+
*/
|
|
259
|
+
forceDeleteRepos?: pulumi.Input<boolean>;
|
|
236
260
|
/**
|
|
237
261
|
* Home folder of the user, e.g. `/Users/mr.foo@example.com`.
|
|
238
262
|
*/
|
package/user.js
CHANGED
|
@@ -139,6 +139,8 @@ class User extends pulumi.CustomResource {
|
|
|
139
139
|
resourceInputs["displayName"] = state ? state.displayName : undefined;
|
|
140
140
|
resourceInputs["externalId"] = state ? state.externalId : undefined;
|
|
141
141
|
resourceInputs["force"] = state ? state.force : undefined;
|
|
142
|
+
resourceInputs["forceDeleteHomeDir"] = state ? state.forceDeleteHomeDir : undefined;
|
|
143
|
+
resourceInputs["forceDeleteRepos"] = state ? state.forceDeleteRepos : undefined;
|
|
142
144
|
resourceInputs["home"] = state ? state.home : undefined;
|
|
143
145
|
resourceInputs["repos"] = state ? state.repos : undefined;
|
|
144
146
|
resourceInputs["userName"] = state ? state.userName : undefined;
|
|
@@ -156,6 +158,8 @@ class User extends pulumi.CustomResource {
|
|
|
156
158
|
resourceInputs["displayName"] = args ? args.displayName : undefined;
|
|
157
159
|
resourceInputs["externalId"] = args ? args.externalId : undefined;
|
|
158
160
|
resourceInputs["force"] = args ? args.force : undefined;
|
|
161
|
+
resourceInputs["forceDeleteHomeDir"] = args ? args.forceDeleteHomeDir : undefined;
|
|
162
|
+
resourceInputs["forceDeleteRepos"] = args ? args.forceDeleteRepos : undefined;
|
|
159
163
|
resourceInputs["home"] = args ? args.home : undefined;
|
|
160
164
|
resourceInputs["repos"] = args ? args.repos : undefined;
|
|
161
165
|
resourceInputs["userName"] = args ? args.userName : undefined;
|
package/user.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkGG;AACH,MAAa,IAAK,SAAQ,MAAM,CAAC,cAAc;IAC3C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAiB,EAAE,IAAmC;QAC/G,OAAO,IAAI,IAAI,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC3D,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,IAAI,CAAC,YAAY,CAAC;IACrD,CAAC;
|
|
1
|
+
{"version":3,"file":"user.js","sourceRoot":"","sources":["../user.ts"],"names":[],"mappings":"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"}
|