@pulumi/databricks 1.1.0 → 1.3.0-alpha.1661884586
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/catalog.d.ts +3 -3
- package/cluster.d.ts +12 -0
- package/cluster.js +2 -0
- package/cluster.js.map +1 -1
- package/externalLocation.d.ts +4 -3
- package/externalLocation.js +1 -0
- package/externalLocation.js.map +1 -1
- package/getCurrentUser.d.ts +1 -2
- package/getCurrentUser.js +1 -2
- package/getCurrentUser.js.map +1 -1
- package/getMwsWorkspaces.d.ts +40 -0
- package/getMwsWorkspaces.js +23 -0
- package/getMwsWorkspaces.js.map +1 -0
- package/grants.d.ts +3 -0
- package/grants.js +2 -0
- package/grants.js.map +1 -1
- package/group.d.ts +2 -2
- package/group.js +0 -3
- package/group.js.map +1 -1
- package/groupInstanceProfile.d.ts +1 -1
- package/groupInstanceProfile.js +1 -1
- package/index.d.ts +3 -0
- package/index.js +11 -0
- package/index.js.map +1 -1
- package/metastore.d.ts +3 -3
- package/mwsPermissionAssignment.d.ts +92 -0
- package/mwsPermissionAssignment.js +109 -0
- package/mwsPermissionAssignment.js.map +1 -0
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/permissionAssignment.d.ts +42 -0
- package/permissionAssignment.js +57 -0
- package/permissionAssignment.js.map +1 -0
- package/schema.d.ts +3 -3
- package/secretAcl.d.ts +1 -1
- package/secretAcl.js +1 -1
- package/storageCredential.d.ts +9 -0
- package/storageCredential.js.map +1 -1
- package/table.d.ts +3 -3
- package/types/input.d.ts +39 -34
- package/types/output.d.ts +5 -0
package/types/output.d.ts
CHANGED
|
@@ -463,6 +463,7 @@ export interface JobJobCluster {
|
|
|
463
463
|
newCluster?: outputs.JobJobClusterNewCluster;
|
|
464
464
|
}
|
|
465
465
|
export interface JobJobClusterNewCluster {
|
|
466
|
+
applyPolicyDefaultValues?: boolean;
|
|
466
467
|
autoscale?: outputs.JobJobClusterNewClusterAutoscale;
|
|
467
468
|
autoterminationMinutes?: number;
|
|
468
469
|
awsAttributes?: outputs.JobJobClusterNewClusterAwsAttributes;
|
|
@@ -603,6 +604,7 @@ export interface JobLibraryPypi {
|
|
|
603
604
|
repo?: string;
|
|
604
605
|
}
|
|
605
606
|
export interface JobNewCluster {
|
|
607
|
+
applyPolicyDefaultValues?: boolean;
|
|
606
608
|
autoscale?: outputs.JobNewClusterAutoscale;
|
|
607
609
|
autoterminationMinutes?: number;
|
|
608
610
|
awsAttributes?: outputs.JobNewClusterAwsAttributes;
|
|
@@ -898,6 +900,7 @@ export interface JobTaskLibraryPypi {
|
|
|
898
900
|
repo?: string;
|
|
899
901
|
}
|
|
900
902
|
export interface JobTaskNewCluster {
|
|
903
|
+
applyPolicyDefaultValues?: boolean;
|
|
901
904
|
autoscale?: outputs.JobTaskNewClusterAutoscale;
|
|
902
905
|
autoterminationMinutes?: number;
|
|
903
906
|
awsAttributes?: outputs.JobTaskNewClusterAwsAttributes;
|
|
@@ -1281,6 +1284,7 @@ export interface PermissionsAccessControl {
|
|
|
1281
1284
|
userName?: string;
|
|
1282
1285
|
}
|
|
1283
1286
|
export interface PipelineCluster {
|
|
1287
|
+
applyPolicyDefaultValues?: boolean;
|
|
1284
1288
|
autoscale?: outputs.PipelineClusterAutoscale;
|
|
1285
1289
|
awsAttributes?: outputs.PipelineClusterAwsAttributes;
|
|
1286
1290
|
clusterLogConf?: outputs.PipelineClusterClusterLogConf;
|
|
@@ -1295,6 +1299,7 @@ export interface PipelineCluster {
|
|
|
1295
1299
|
label?: string;
|
|
1296
1300
|
nodeTypeId: string;
|
|
1297
1301
|
numWorkers?: number;
|
|
1302
|
+
policyId?: string;
|
|
1298
1303
|
sparkConf?: {
|
|
1299
1304
|
[key: string]: any;
|
|
1300
1305
|
};
|