@pulumi/databricks 0.4.1 → 0.4.2-alpha.1657287601

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.
Files changed (90) hide show
  1. package/catalog.d.ts +3 -3
  2. package/cluster.d.ts +12 -12
  3. package/externalLocation.d.ts +3 -3
  4. package/getAwsCrossAccountPolicy.d.ts +1 -1
  5. package/getAwsCrossAccountPolicy.js +1 -1
  6. package/getCurrentUser.d.ts +1 -0
  7. package/getCurrentUser.js +1 -0
  8. package/getCurrentUser.js.map +1 -1
  9. package/getNodeType.d.ts +3 -0
  10. package/getNodeType.js +1 -0
  11. package/getNodeType.js.map +1 -1
  12. package/getServicePrincipal.d.ts +117 -0
  13. package/getServicePrincipal.js +43 -0
  14. package/getServicePrincipal.js.map +1 -0
  15. package/getServicePrincipals.d.ts +57 -0
  16. package/getServicePrincipals.js +38 -0
  17. package/getServicePrincipals.js.map +1 -0
  18. package/getUser.d.ts +1 -0
  19. package/getUser.js.map +1 -1
  20. package/gitCredential.d.ts +0 -9
  21. package/gitCredential.js.map +1 -1
  22. package/index.d.ts +2 -4
  23. package/index.js +2 -20
  24. package/index.js.map +1 -1
  25. package/instanceProfile.d.ts +2 -2
  26. package/instanceProfile.js +2 -2
  27. package/ipAccessList.d.ts +3 -3
  28. package/library.d.ts +3 -3
  29. package/library.js +3 -3
  30. package/metastore.d.ts +60 -3
  31. package/metastore.js +20 -0
  32. package/metastore.js.map +1 -1
  33. package/metastoreDataAccess.d.ts +3 -0
  34. package/metastoreDataAccess.js +2 -0
  35. package/metastoreDataAccess.js.map +1 -1
  36. package/mlflowWebhook.d.ts +3 -3
  37. package/mwsNetworks.d.ts +3 -3
  38. package/oboToken.d.ts +3 -3
  39. package/package.json +2 -2
  40. package/package.json.dev +2 -2
  41. package/permissions.d.ts +3 -0
  42. package/permissions.js +2 -0
  43. package/permissions.js.map +1 -1
  44. package/pipeline.d.ts +60 -16
  45. package/pipeline.js +8 -7
  46. package/pipeline.js.map +1 -1
  47. package/repo.d.ts +6 -6
  48. package/schema.d.ts +3 -3
  49. package/sqlDashboard.d.ts +5 -1
  50. package/sqlDashboard.js +5 -1
  51. package/sqlDashboard.js.map +1 -1
  52. package/sqlEndpoint.d.ts +3 -3
  53. package/sqlGlobalConfig.d.ts +1 -1
  54. package/sqlGlobalConfig.js +1 -1
  55. package/sqlQuery.d.ts +5 -1
  56. package/sqlQuery.js +5 -1
  57. package/sqlQuery.js.map +1 -1
  58. package/sqlVisualization.d.ts +5 -1
  59. package/sqlVisualization.js +5 -1
  60. package/sqlVisualization.js.map +1 -1
  61. package/sqlWidget.d.ts +5 -1
  62. package/sqlWidget.js +5 -1
  63. package/sqlWidget.js.map +1 -1
  64. package/storageCredential.d.ts +15 -3
  65. package/storageCredential.js +13 -3
  66. package/storageCredential.js.map +1 -1
  67. package/table.d.ts +3 -3
  68. package/token.d.ts +1 -1
  69. package/token.js +1 -1
  70. package/types/input.d.ts +55 -5
  71. package/types/output.d.ts +55 -5
  72. package/user.d.ts +1 -1
  73. package/user.js +1 -1
  74. package/userInstanceProfile.d.ts +1 -1
  75. package/userInstanceProfile.js +1 -1
  76. package/userRole.d.ts +1 -1
  77. package/userRole.js +1 -1
  78. package/workspaceConf.d.ts +3 -3
  79. package/awsS3Mount.d.ts +0 -50
  80. package/awsS3Mount.js +0 -63
  81. package/awsS3Mount.js.map +0 -1
  82. package/azureAdlsGen1Mount.d.ts +0 -65
  83. package/azureAdlsGen1Mount.js +0 -85
  84. package/azureAdlsGen1Mount.js.map +0 -1
  85. package/azureAdlsGen2Mount.d.ts +0 -68
  86. package/azureAdlsGen2Mount.js +0 -93
  87. package/azureAdlsGen2Mount.js.map +0 -1
  88. package/azureBlobMount.d.ts +0 -62
  89. package/azureBlobMount.js +0 -83
  90. package/azureBlobMount.js.map +0 -1
@@ -41,16 +41,22 @@ const utilities = require("./utilities");
41
41
  * import * as pulumi from "@pulumi/pulumi";
42
42
  * import * as databricks from "@pulumi/databricks";
43
43
  *
44
- * const external = new databricks.StorageCredential("external", {
44
+ * const externalSp = new databricks.StorageCredential("externalSp", {
45
45
  * azureServicePrincipal: {
46
46
  * directoryId: _var.tenant_id,
47
47
  * applicationId: azuread_application.ext_cred.application_id,
48
48
  * clientSecret: azuread_application_password.ext_cred.value,
49
49
  * },
50
- * comment: "Managed by TF",
50
+ * comment: "SP credential managed by TF",
51
+ * });
52
+ * const externalMi = new databricks.StorageCredential("externalMi", {
53
+ * azureManagedIdentity: {
54
+ * accessConnectorId: _var.access_connector_id,
55
+ * },
56
+ * comment: "Managed identity credential managed by TF",
51
57
  * });
52
58
  * const externalCreds = new databricks.Grants("externalCreds", {
53
- * storageCredential: external.id,
59
+ * storageCredential: databricks_storage_credential.external.id,
54
60
  * grants: [{
55
61
  * principal: "Data Engineers",
56
62
  * privileges: ["CREATE_TABLE"],
@@ -73,18 +79,22 @@ class StorageCredential extends pulumi.CustomResource {
73
79
  if (opts.id) {
74
80
  const state = argsOrState;
75
81
  resourceInputs["awsIamRole"] = state ? state.awsIamRole : undefined;
82
+ resourceInputs["azureManagedIdentity"] = state ? state.azureManagedIdentity : undefined;
76
83
  resourceInputs["azureServicePrincipal"] = state ? state.azureServicePrincipal : undefined;
77
84
  resourceInputs["comment"] = state ? state.comment : undefined;
78
85
  resourceInputs["metastoreId"] = state ? state.metastoreId : undefined;
79
86
  resourceInputs["name"] = state ? state.name : undefined;
87
+ resourceInputs["owner"] = state ? state.owner : undefined;
80
88
  }
81
89
  else {
82
90
  const args = argsOrState;
83
91
  resourceInputs["awsIamRole"] = args ? args.awsIamRole : undefined;
92
+ resourceInputs["azureManagedIdentity"] = args ? args.azureManagedIdentity : undefined;
84
93
  resourceInputs["azureServicePrincipal"] = args ? args.azureServicePrincipal : undefined;
85
94
  resourceInputs["comment"] = args ? args.comment : undefined;
86
95
  resourceInputs["metastoreId"] = args ? args.metastoreId : undefined;
87
96
  resourceInputs["name"] = args ? args.name : undefined;
97
+ resourceInputs["owner"] = args ? args.owner : undefined;
88
98
  }
89
99
  opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
90
100
  super(StorageCredential.__pulumiType, name, resourceInputs, opts);
@@ -1 +1 @@
1
- {"version":3,"file":"storageCredential.js","sourceRoot":"","sources":["../storageCredential.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4DG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IA6CxD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;;AA1BL,8CAkEC;AApDG,gBAAgB;AACO,8BAAY,GAAG,sDAAsD,CAAC"}
1
+ {"version":3,"file":"storageCredential.js","sourceRoot":"","sources":["../storageCredential.ts"],"names":[],"mappings":"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"}
package/table.d.ts CHANGED
@@ -105,7 +105,7 @@ export declare class Table extends pulumi.CustomResource {
105
105
  */
106
106
  readonly name: pulumi.Output<string>;
107
107
  /**
108
- * Username/groupname of Table owner. Currently this field can only be changed after the resource is created.
108
+ * Username/groupname/sp applicationId Table owner.
109
109
  */
110
110
  readonly owner: pulumi.Output<string>;
111
111
  /**
@@ -165,7 +165,7 @@ export interface TableState {
165
165
  */
166
166
  name?: pulumi.Input<string>;
167
167
  /**
168
- * Username/groupname of Table owner. Currently this field can only be changed after the resource is created.
168
+ * Username/groupname/sp applicationId Table owner.
169
169
  */
170
170
  owner?: pulumi.Input<string>;
171
171
  /**
@@ -217,7 +217,7 @@ export interface TableArgs {
217
217
  */
218
218
  name?: pulumi.Input<string>;
219
219
  /**
220
- * Username/groupname of Table owner. Currently this field can only be changed after the resource is created.
220
+ * Username/groupname/sp applicationId Table owner.
221
221
  */
222
222
  owner?: pulumi.Input<string>;
223
223
  /**
package/token.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * This resource creates [Personal Access Tokens](https://docs.databricks.com/sql/user/security/personal-access-tokens.html) for the same user, that is authenticated with the provider. Most likely you should use databricks.OboToken to create [On-Behalf-Of tokens](https://docs.databricks.com/administration-guide/users-groups/service-principals.html#manage-personal-access-tokens-for-a-service-principal) for a databricks.ServicePrincipal in Databricks workspaces on AWS. Databricks workspaces on other clouds use their own native OAuth token flows.
3
+ * This resource creates [Personal Access Tokens](https://docs.databricks.com/sql/user/security/personal-access-tokens.html) for the same user that is authenticated with the provider. Most likely you should use databricks.OboToken to create [On-Behalf-Of tokens](https://docs.databricks.com/administration-guide/users-groups/service-principals.html#manage-personal-access-tokens-for-a-service-principal) for a databricks.ServicePrincipal in Databricks workspaces on AWS. Databricks workspaces on other clouds use their own native OAuth token flows.
4
4
  *
5
5
  * ## Example Usage
6
6
  *
package/token.js CHANGED
@@ -6,7 +6,7 @@ exports.Token = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * This resource creates [Personal Access Tokens](https://docs.databricks.com/sql/user/security/personal-access-tokens.html) for the same user, that is authenticated with the provider. Most likely you should use databricks.OboToken to create [On-Behalf-Of tokens](https://docs.databricks.com/administration-guide/users-groups/service-principals.html#manage-personal-access-tokens-for-a-service-principal) for a databricks.ServicePrincipal in Databricks workspaces on AWS. Databricks workspaces on other clouds use their own native OAuth token flows.
9
+ * This resource creates [Personal Access Tokens](https://docs.databricks.com/sql/user/security/personal-access-tokens.html) for the same user that is authenticated with the provider. Most likely you should use databricks.OboToken to create [On-Behalf-Of tokens](https://docs.databricks.com/administration-guide/users-groups/service-principals.html#manage-personal-access-tokens-for-a-service-principal) for a databricks.ServicePrincipal in Databricks workspaces on AWS. Databricks workspaces on other clouds use their own native OAuth token flows.
10
10
  *
11
11
  * ## Example Usage
12
12
  *
package/types/input.d.ts CHANGED
@@ -109,7 +109,7 @@ export interface InstancePoolAwsAttributes {
109
109
  */
110
110
  spotBidPricePercent?: pulumi.Input<number>;
111
111
  /**
112
- * (String) Identifier for the availability zone/datacenter in which the instance pool resides. This string is of a form like `"us-west-2a"`. The provided availability zone must be in the same region as the Databricks deployment. For example, `"us-west-2a"` is not a valid zone ID if the Databricks deployment resides in the `"us-east-1"` region. This is an optional field. If not specified, a default zone is used. You can find the list of available zones as well as the default value by using the [List Zones API](https://docs.databricks.com/dev-tools/api/latest/clusters.html#clusterclusterservicelistavailablezones).
112
+ * (String) Identifier for the availability zone/datacenter in which the instance pool resides. This string is of the form like `"us-west-2a"`. The provided availability zone must be in the same region as the Databricks deployment. For example, `"us-west-2a"` is not a valid zone ID if the Databricks deployment resides in the `"us-east-1"` region. This is an optional field. If not specified, a default zone is used. You can find the list of available zones as well as the default value by using the [List Zones API](https://docs.databricks.com/dev-tools/api/latest/clusters.html#clusterclusterservicelistavailablezones).
113
113
  */
114
114
  zoneId?: pulumi.Input<string>;
115
115
  }
@@ -119,7 +119,7 @@ export interface InstancePoolAzureAttributes {
119
119
  */
120
120
  availability?: pulumi.Input<string>;
121
121
  /**
122
- * The max price for Azure spot instances. Use `-1` to specify lowest price.
122
+ * The max price for Azure spot instances. Use `-1` to specify the lowest price.
123
123
  */
124
124
  spotBidMaxPrice?: pulumi.Input<number>;
125
125
  }
@@ -526,6 +526,7 @@ export interface JobSparkSubmitTask {
526
526
  parameters?: pulumi.Input<pulumi.Input<string>[]>;
527
527
  }
528
528
  export interface JobTask {
529
+ dbtTask?: pulumi.Input<inputs.JobTaskDbtTask>;
529
530
  dependsOns?: pulumi.Input<pulumi.Input<inputs.JobTaskDependsOn>[]>;
530
531
  description?: pulumi.Input<string>;
531
532
  /**
@@ -566,12 +567,18 @@ export interface JobTask {
566
567
  sparkJarTask?: pulumi.Input<inputs.JobTaskSparkJarTask>;
567
568
  sparkPythonTask?: pulumi.Input<inputs.JobTaskSparkPythonTask>;
568
569
  sparkSubmitTask?: pulumi.Input<inputs.JobTaskSparkSubmitTask>;
570
+ sqlTask?: pulumi.Input<inputs.JobTaskSqlTask>;
569
571
  taskKey?: pulumi.Input<string>;
570
572
  /**
571
573
  * (Integer) An optional timeout applied to each run of this job. The default behavior is to have no timeout.
572
574
  */
573
575
  timeoutSeconds?: pulumi.Input<number>;
574
576
  }
577
+ export interface JobTaskDbtTask {
578
+ commands: pulumi.Input<pulumi.Input<string>[]>;
579
+ projectDirectory?: pulumi.Input<string>;
580
+ schema?: pulumi.Input<string>;
581
+ }
575
582
  export interface JobTaskDependsOn {
576
583
  taskKey?: pulumi.Input<string>;
577
584
  }
@@ -791,6 +798,27 @@ export interface JobTaskSparkSubmitTask {
791
798
  */
792
799
  parameters?: pulumi.Input<pulumi.Input<string>[]>;
793
800
  }
801
+ export interface JobTaskSqlTask {
802
+ alert?: pulumi.Input<inputs.JobTaskSqlTaskAlert>;
803
+ dashboard?: pulumi.Input<inputs.JobTaskSqlTaskDashboard>;
804
+ /**
805
+ * Parameters for the task
806
+ */
807
+ parameters?: pulumi.Input<{
808
+ [key: string]: any;
809
+ }>;
810
+ query?: pulumi.Input<inputs.JobTaskSqlTaskQuery>;
811
+ warehouseId?: pulumi.Input<string>;
812
+ }
813
+ export interface JobTaskSqlTaskAlert {
814
+ alertId: pulumi.Input<string>;
815
+ }
816
+ export interface JobTaskSqlTaskDashboard {
817
+ dashboardId: pulumi.Input<string>;
818
+ }
819
+ export interface JobTaskSqlTaskQuery {
820
+ queryId: pulumi.Input<string>;
821
+ }
794
822
  export interface LibraryCran {
795
823
  package: pulumi.Input<string>;
796
824
  repo?: pulumi.Input<string>;
@@ -810,6 +838,12 @@ export interface MetastoreDataAccessAwsIamRole {
810
838
  */
811
839
  roleArn: pulumi.Input<string>;
812
840
  }
841
+ export interface MetastoreDataAccessAzureManagedIdentity {
842
+ /**
843
+ * The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
844
+ */
845
+ accessConnectorId: pulumi.Input<string>;
846
+ }
813
847
  export interface MetastoreDataAccessAzureServicePrincipal {
814
848
  /**
815
849
  * The application ID of the application registration within the referenced AAD tenant
@@ -927,7 +961,8 @@ export interface MwsWorkspacesExternalCustomerInfo {
927
961
  }
928
962
  export interface MwsWorkspacesNetwork {
929
963
  gcpCommonNetworkConfig: pulumi.Input<inputs.MwsWorkspacesNetworkGcpCommonNetworkConfig>;
930
- gcpManagedNetworkConfig: pulumi.Input<inputs.MwsWorkspacesNetworkGcpManagedNetworkConfig>;
964
+ gcpManagedNetworkConfig?: pulumi.Input<inputs.MwsWorkspacesNetworkGcpManagedNetworkConfig>;
965
+ networkId?: pulumi.Input<string>;
931
966
  }
932
967
  export interface MwsWorkspacesNetworkGcpCommonNetworkConfig {
933
968
  gkeClusterMasterIpRange: pulumi.Input<string>;
@@ -946,16 +981,19 @@ export interface MwsWorkspacesToken {
946
981
  }
947
982
  export interface PermissionsAccessControl {
948
983
  /**
949
- * name of the group, which should be used if the user name is not used. We recommend setting permissions on groups.
984
+ * name of the group. We recommend setting permissions on groups.
950
985
  */
951
986
  groupName?: pulumi.Input<string>;
952
987
  /**
953
988
  * permission level according to specific resource. See examples above for the reference.
954
989
  */
955
990
  permissionLevel: pulumi.Input<string>;
991
+ /**
992
+ * Application ID of the service_principal.
993
+ */
956
994
  servicePrincipalName?: pulumi.Input<string>;
957
995
  /**
958
- * name of the user, which should be used if group name is not used
996
+ * name of the user.
959
997
  */
960
998
  userName?: pulumi.Input<string>;
961
999
  }
@@ -966,7 +1004,9 @@ export interface PipelineCluster {
966
1004
  customTags?: pulumi.Input<{
967
1005
  [key: string]: any;
968
1006
  }>;
1007
+ driverInstancePoolId?: pulumi.Input<string>;
969
1008
  driverNodeTypeId?: pulumi.Input<string>;
1009
+ gcpAttributes?: pulumi.Input<inputs.PipelineClusterGcpAttributes>;
970
1010
  initScripts?: pulumi.Input<pulumi.Input<inputs.PipelineClusterInitScript>[]>;
971
1011
  instancePoolId?: pulumi.Input<string>;
972
1012
  label?: pulumi.Input<string>;
@@ -985,6 +1025,7 @@ export interface PipelineClusterAutoscale {
985
1025
  minWorkers?: pulumi.Input<number>;
986
1026
  }
987
1027
  export interface PipelineClusterAwsAttributes {
1028
+ firstOnDemand?: pulumi.Input<number>;
988
1029
  instanceProfileArn?: pulumi.Input<string>;
989
1030
  zoneId?: pulumi.Input<string>;
990
1031
  }
@@ -1004,6 +1045,9 @@ export interface PipelineClusterClusterLogConfS3 {
1004
1045
  kmsKey?: pulumi.Input<string>;
1005
1046
  region?: pulumi.Input<string>;
1006
1047
  }
1048
+ export interface PipelineClusterGcpAttributes {
1049
+ googleServiceAccount?: pulumi.Input<string>;
1050
+ }
1007
1051
  export interface PipelineClusterInitScript {
1008
1052
  dbfs?: pulumi.Input<inputs.PipelineClusterInitScriptDbfs>;
1009
1053
  file?: pulumi.Input<inputs.PipelineClusterInitScriptFile>;
@@ -1181,6 +1225,12 @@ export interface StorageCredentialAwsIamRole {
1181
1225
  */
1182
1226
  roleArn: pulumi.Input<string>;
1183
1227
  }
1228
+ export interface StorageCredentialAzureManagedIdentity {
1229
+ /**
1230
+ * The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
1231
+ */
1232
+ accessConnectorId: pulumi.Input<string>;
1233
+ }
1184
1234
  export interface StorageCredentialAzureServicePrincipal {
1185
1235
  /**
1186
1236
  * The application ID of the application registration within the referenced AAD tenant
package/types/output.d.ts CHANGED
@@ -122,7 +122,7 @@ export interface InstancePoolAwsAttributes {
122
122
  */
123
123
  spotBidPricePercent?: number;
124
124
  /**
125
- * (String) Identifier for the availability zone/datacenter in which the instance pool resides. This string is of a form like `"us-west-2a"`. The provided availability zone must be in the same region as the Databricks deployment. For example, `"us-west-2a"` is not a valid zone ID if the Databricks deployment resides in the `"us-east-1"` region. This is an optional field. If not specified, a default zone is used. You can find the list of available zones as well as the default value by using the [List Zones API](https://docs.databricks.com/dev-tools/api/latest/clusters.html#clusterclusterservicelistavailablezones).
125
+ * (String) Identifier for the availability zone/datacenter in which the instance pool resides. This string is of the form like `"us-west-2a"`. The provided availability zone must be in the same region as the Databricks deployment. For example, `"us-west-2a"` is not a valid zone ID if the Databricks deployment resides in the `"us-east-1"` region. This is an optional field. If not specified, a default zone is used. You can find the list of available zones as well as the default value by using the [List Zones API](https://docs.databricks.com/dev-tools/api/latest/clusters.html#clusterclusterservicelistavailablezones).
126
126
  */
127
127
  zoneId: string;
128
128
  }
@@ -132,7 +132,7 @@ export interface InstancePoolAzureAttributes {
132
132
  */
133
133
  availability?: string;
134
134
  /**
135
- * The max price for Azure spot instances. Use `-1` to specify lowest price.
135
+ * The max price for Azure spot instances. Use `-1` to specify the lowest price.
136
136
  */
137
137
  spotBidMaxPrice?: number;
138
138
  }
@@ -539,6 +539,7 @@ export interface JobSparkSubmitTask {
539
539
  parameters?: string[];
540
540
  }
541
541
  export interface JobTask {
542
+ dbtTask?: outputs.JobTaskDbtTask;
542
543
  dependsOns?: outputs.JobTaskDependsOn[];
543
544
  description?: string;
544
545
  /**
@@ -579,12 +580,18 @@ export interface JobTask {
579
580
  sparkJarTask?: outputs.JobTaskSparkJarTask;
580
581
  sparkPythonTask?: outputs.JobTaskSparkPythonTask;
581
582
  sparkSubmitTask?: outputs.JobTaskSparkSubmitTask;
583
+ sqlTask?: outputs.JobTaskSqlTask;
582
584
  taskKey?: string;
583
585
  /**
584
586
  * (Integer) An optional timeout applied to each run of this job. The default behavior is to have no timeout.
585
587
  */
586
588
  timeoutSeconds?: number;
587
589
  }
590
+ export interface JobTaskDbtTask {
591
+ commands: string[];
592
+ projectDirectory?: string;
593
+ schema?: string;
594
+ }
588
595
  export interface JobTaskDependsOn {
589
596
  taskKey?: string;
590
597
  }
@@ -804,6 +811,27 @@ export interface JobTaskSparkSubmitTask {
804
811
  */
805
812
  parameters?: string[];
806
813
  }
814
+ export interface JobTaskSqlTask {
815
+ alert?: outputs.JobTaskSqlTaskAlert;
816
+ dashboard?: outputs.JobTaskSqlTaskDashboard;
817
+ /**
818
+ * Parameters for the task
819
+ */
820
+ parameters?: {
821
+ [key: string]: any;
822
+ };
823
+ query?: outputs.JobTaskSqlTaskQuery;
824
+ warehouseId?: string;
825
+ }
826
+ export interface JobTaskSqlTaskAlert {
827
+ alertId: string;
828
+ }
829
+ export interface JobTaskSqlTaskDashboard {
830
+ dashboardId: string;
831
+ }
832
+ export interface JobTaskSqlTaskQuery {
833
+ queryId: string;
834
+ }
807
835
  export interface LibraryCran {
808
836
  package: string;
809
837
  repo?: string;
@@ -823,6 +851,12 @@ export interface MetastoreDataAccessAwsIamRole {
823
851
  */
824
852
  roleArn: string;
825
853
  }
854
+ export interface MetastoreDataAccessAzureManagedIdentity {
855
+ /**
856
+ * The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
857
+ */
858
+ accessConnectorId: string;
859
+ }
826
860
  export interface MetastoreDataAccessAzureServicePrincipal {
827
861
  /**
828
862
  * The application ID of the application registration within the referenced AAD tenant
@@ -940,7 +974,8 @@ export interface MwsWorkspacesExternalCustomerInfo {
940
974
  }
941
975
  export interface MwsWorkspacesNetwork {
942
976
  gcpCommonNetworkConfig: outputs.MwsWorkspacesNetworkGcpCommonNetworkConfig;
943
- gcpManagedNetworkConfig: outputs.MwsWorkspacesNetworkGcpManagedNetworkConfig;
977
+ gcpManagedNetworkConfig?: outputs.MwsWorkspacesNetworkGcpManagedNetworkConfig;
978
+ networkId?: string;
944
979
  }
945
980
  export interface MwsWorkspacesNetworkGcpCommonNetworkConfig {
946
981
  gkeClusterMasterIpRange: string;
@@ -959,16 +994,19 @@ export interface MwsWorkspacesToken {
959
994
  }
960
995
  export interface PermissionsAccessControl {
961
996
  /**
962
- * name of the group, which should be used if the user name is not used. We recommend setting permissions on groups.
997
+ * name of the group. We recommend setting permissions on groups.
963
998
  */
964
999
  groupName?: string;
965
1000
  /**
966
1001
  * permission level according to specific resource. See examples above for the reference.
967
1002
  */
968
1003
  permissionLevel: string;
1004
+ /**
1005
+ * Application ID of the service_principal.
1006
+ */
969
1007
  servicePrincipalName?: string;
970
1008
  /**
971
- * name of the user, which should be used if group name is not used
1009
+ * name of the user.
972
1010
  */
973
1011
  userName?: string;
974
1012
  }
@@ -979,7 +1017,9 @@ export interface PipelineCluster {
979
1017
  customTags?: {
980
1018
  [key: string]: any;
981
1019
  };
1020
+ driverInstancePoolId?: string;
982
1021
  driverNodeTypeId: string;
1022
+ gcpAttributes?: outputs.PipelineClusterGcpAttributes;
983
1023
  initScripts?: outputs.PipelineClusterInitScript[];
984
1024
  instancePoolId?: string;
985
1025
  label?: string;
@@ -998,6 +1038,7 @@ export interface PipelineClusterAutoscale {
998
1038
  minWorkers?: number;
999
1039
  }
1000
1040
  export interface PipelineClusterAwsAttributes {
1041
+ firstOnDemand?: number;
1001
1042
  instanceProfileArn?: string;
1002
1043
  zoneId?: string;
1003
1044
  }
@@ -1017,6 +1058,9 @@ export interface PipelineClusterClusterLogConfS3 {
1017
1058
  kmsKey?: string;
1018
1059
  region?: string;
1019
1060
  }
1061
+ export interface PipelineClusterGcpAttributes {
1062
+ googleServiceAccount?: string;
1063
+ }
1020
1064
  export interface PipelineClusterInitScript {
1021
1065
  dbfs?: outputs.PipelineClusterInitScriptDbfs;
1022
1066
  file?: outputs.PipelineClusterInitScriptFile;
@@ -1194,6 +1238,12 @@ export interface StorageCredentialAwsIamRole {
1194
1238
  */
1195
1239
  roleArn: string;
1196
1240
  }
1241
+ export interface StorageCredentialAzureManagedIdentity {
1242
+ /**
1243
+ * The Resource ID of the Azure Databricks Access Connector resource, of the form `/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg-name/providers/Microsoft.Databricks/accessConnectors/connector-name`
1244
+ */
1245
+ accessConnectorId: string;
1246
+ }
1197
1247
  export interface StorageCredentialAzureServicePrincipal {
1198
1248
  /**
1199
1249
  * The application ID of the application registration within the referenced AAD tenant
package/user.d.ts CHANGED
@@ -14,7 +14,7 @@ import * as pulumi from "@pulumi/pulumi";
14
14
  * * databricks.GroupInstanceProfile to attach databricks.InstanceProfile (AWS) to databricks_group.
15
15
  * * databricksGroupMember to attach users and groups as group members.
16
16
  * * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
17
- * * databricks.User data to retrieves information about databricks_user.
17
+ * * databricks.User data to retrieve information about databricks_user.
18
18
  *
19
19
  * ## Import
20
20
  *
package/user.js CHANGED
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
20
20
  * * databricks.GroupInstanceProfile to attach databricks.InstanceProfile (AWS) to databricks_group.
21
21
  * * databricksGroupMember to attach users and groups as group members.
22
22
  * * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
23
- * * databricks.User data to retrieves information about databricks_user.
23
+ * * databricks.User data to retrieve information about databricks_user.
24
24
  *
25
25
  * ## Import
26
26
  *
@@ -26,7 +26,7 @@ import * as pulumi from "@pulumi/pulumi";
26
26
  * * databricksGroupMember to attach users and groups as group members.
27
27
  * * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
28
28
  * * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
29
- * * databricks.User data to retrieves information about databricks_user.
29
+ * * databricks.User data to retrieve information about databricks_user.
30
30
  *
31
31
  * ## Import
32
32
  *
@@ -32,7 +32,7 @@ const utilities = require("./utilities");
32
32
  * * databricksGroupMember to attach users and groups as group members.
33
33
  * * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
34
34
  * * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
35
- * * databricks.User data to retrieves information about databricks_user.
35
+ * * databricks.User data to retrieve information about databricks_user.
36
36
  *
37
37
  * ## Import
38
38
  *
package/userRole.d.ts CHANGED
@@ -39,7 +39,7 @@ import * as pulumi from "@pulumi/pulumi";
39
39
  * * databricksGroupMember to attach users and groups as group members.
40
40
  * * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
41
41
  * * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
42
- * * databricks.User data to retrieves information about databricks_user.
42
+ * * databricks.User data to retrieve information about databricks_user.
43
43
  *
44
44
  * ## Import
45
45
  *
package/userRole.js CHANGED
@@ -45,7 +45,7 @@ const utilities = require("./utilities");
45
45
  * * databricksGroupMember to attach users and groups as group members.
46
46
  * * databricks.InstanceProfile to manage AWS EC2 instance profiles that users can launch databricks.Cluster and access data, like databricks_mount.
47
47
  * * databricks.User to [manage users](https://docs.databricks.com/administration-guide/users-groups/users.html), that could be added to databricks.Group within the workspace.
48
- * * databricks.User data to retrieves information about databricks_user.
48
+ * * databricks.User data to retrieve information about databricks_user.
49
49
  *
50
50
  * ## Import
51
51
  *
@@ -38,7 +38,7 @@ export declare class WorkspaceConf extends pulumi.CustomResource {
38
38
  */
39
39
  static isInstance(obj: any): obj is WorkspaceConf;
40
40
  /**
41
- * Key-value map of strings, that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
41
+ * Key-value map of strings that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
42
42
  */
43
43
  readonly customConfig: pulumi.Output<{
44
44
  [key: string]: any;
@@ -57,7 +57,7 @@ export declare class WorkspaceConf extends pulumi.CustomResource {
57
57
  */
58
58
  export interface WorkspaceConfState {
59
59
  /**
60
- * Key-value map of strings, that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
60
+ * Key-value map of strings that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
61
61
  */
62
62
  customConfig?: pulumi.Input<{
63
63
  [key: string]: any;
@@ -68,7 +68,7 @@ export interface WorkspaceConfState {
68
68
  */
69
69
  export interface WorkspaceConfArgs {
70
70
  /**
71
- * Key-value map of strings, that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
71
+ * Key-value map of strings that represent workspace configuration. Upon resource deletion, properties that start with `enable` or `enforce` will be reset to `false` value, regardless of initial default one.
72
72
  */
73
73
  customConfig?: pulumi.Input<{
74
74
  [key: string]: any;
package/awsS3Mount.d.ts DELETED
@@ -1,50 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- export declare class AwsS3Mount extends pulumi.CustomResource {
3
- /**
4
- * Get an existing AwsS3Mount resource's state with the given name, ID, and optional extra
5
- * properties used to qualify the lookup.
6
- *
7
- * @param name The _unique_ name of the resulting resource.
8
- * @param id The _unique_ provider ID of the resource to lookup.
9
- * @param state Any extra arguments used during the lookup.
10
- * @param opts Optional settings to control the behavior of the CustomResource.
11
- */
12
- static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AwsS3MountState, opts?: pulumi.CustomResourceOptions): AwsS3Mount;
13
- /**
14
- * Returns true if the given object is an instance of AwsS3Mount. This is designed to work even
15
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
- */
17
- static isInstance(obj: any): obj is AwsS3Mount;
18
- readonly clusterId: pulumi.Output<string>;
19
- readonly instanceProfile: pulumi.Output<string | undefined>;
20
- readonly mountName: pulumi.Output<string>;
21
- readonly s3BucketName: pulumi.Output<string>;
22
- readonly source: pulumi.Output<string>;
23
- /**
24
- * Create a AwsS3Mount resource with the given unique name, arguments, and options.
25
- *
26
- * @param name The _unique_ name of the resource.
27
- * @param args The arguments to use to populate this resource's properties.
28
- * @param opts A bag of options that control this resource's behavior.
29
- */
30
- constructor(name: string, args: AwsS3MountArgs, opts?: pulumi.CustomResourceOptions);
31
- }
32
- /**
33
- * Input properties used for looking up and filtering AwsS3Mount resources.
34
- */
35
- export interface AwsS3MountState {
36
- clusterId?: pulumi.Input<string>;
37
- instanceProfile?: pulumi.Input<string>;
38
- mountName?: pulumi.Input<string>;
39
- s3BucketName?: pulumi.Input<string>;
40
- source?: pulumi.Input<string>;
41
- }
42
- /**
43
- * The set of arguments for constructing a AwsS3Mount resource.
44
- */
45
- export interface AwsS3MountArgs {
46
- clusterId?: pulumi.Input<string>;
47
- instanceProfile?: pulumi.Input<string>;
48
- mountName: pulumi.Input<string>;
49
- s3BucketName: pulumi.Input<string>;
50
- }
package/awsS3Mount.js DELETED
@@ -1,63 +0,0 @@
1
- "use strict";
2
- // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
- // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
- Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.AwsS3Mount = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
8
- class AwsS3Mount extends pulumi.CustomResource {
9
- constructor(name, argsOrState, opts) {
10
- let resourceInputs = {};
11
- opts = opts || {};
12
- if (opts.id) {
13
- const state = argsOrState;
14
- resourceInputs["clusterId"] = state ? state.clusterId : undefined;
15
- resourceInputs["instanceProfile"] = state ? state.instanceProfile : undefined;
16
- resourceInputs["mountName"] = state ? state.mountName : undefined;
17
- resourceInputs["s3BucketName"] = state ? state.s3BucketName : undefined;
18
- resourceInputs["source"] = state ? state.source : undefined;
19
- }
20
- else {
21
- const args = argsOrState;
22
- if ((!args || args.mountName === undefined) && !opts.urn) {
23
- throw new Error("Missing required property 'mountName'");
24
- }
25
- if ((!args || args.s3BucketName === undefined) && !opts.urn) {
26
- throw new Error("Missing required property 's3BucketName'");
27
- }
28
- resourceInputs["clusterId"] = args ? args.clusterId : undefined;
29
- resourceInputs["instanceProfile"] = args ? args.instanceProfile : undefined;
30
- resourceInputs["mountName"] = args ? args.mountName : undefined;
31
- resourceInputs["s3BucketName"] = args ? args.s3BucketName : undefined;
32
- resourceInputs["source"] = undefined /*out*/;
33
- }
34
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
35
- super(AwsS3Mount.__pulumiType, name, resourceInputs, opts);
36
- }
37
- /**
38
- * Get an existing AwsS3Mount resource's state with the given name, ID, and optional extra
39
- * properties used to qualify the lookup.
40
- *
41
- * @param name The _unique_ name of the resulting resource.
42
- * @param id The _unique_ provider ID of the resource to lookup.
43
- * @param state Any extra arguments used during the lookup.
44
- * @param opts Optional settings to control the behavior of the CustomResource.
45
- */
46
- static get(name, id, state, opts) {
47
- return new AwsS3Mount(name, state, Object.assign(Object.assign({}, opts), { id: id }));
48
- }
49
- /**
50
- * Returns true if the given object is an instance of AwsS3Mount. This is designed to work even
51
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
52
- */
53
- static isInstance(obj) {
54
- if (obj === undefined || obj === null) {
55
- return false;
56
- }
57
- return obj['__pulumiType'] === AwsS3Mount.__pulumiType;
58
- }
59
- }
60
- exports.AwsS3Mount = AwsS3Mount;
61
- /** @internal */
62
- AwsS3Mount.__pulumiType = 'databricks:index/awsS3Mount:AwsS3Mount';
63
- //# sourceMappingURL=awsS3Mount.js.map
package/awsS3Mount.js.map DELETED
@@ -1 +0,0 @@
1
- {"version":3,"file":"awsS3Mount.js","sourceRoot":"","sources":["../awsS3Mount.ts"],"names":[],"mappings":"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"}