@pulumi/databricks 1.40.0-alpha.1715755798 → 1.40.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/package.json +2 -2
- package/package.json.bak +2 -2
- package/types/input.d.ts +201 -3
- package/types/output.d.ts +201 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "1.40.0
|
|
3
|
+
"version": "1.40.0",
|
|
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.40.0
|
|
27
|
+
"version": "1.40.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/package.json.bak
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/databricks",
|
|
3
|
-
"version": "1.40.0
|
|
3
|
+
"version": "1.40.0",
|
|
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.40.0
|
|
27
|
+
"version": "1.40.0"
|
|
28
28
|
}
|
|
29
29
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -4286,6 +4286,7 @@ export interface JobGitSource {
|
|
|
4286
4286
|
* hash of Git commit to use. Conflicts with `branch` and `tag`.
|
|
4287
4287
|
*/
|
|
4288
4288
|
commit?: pulumi.Input<string>;
|
|
4289
|
+
gitSnapshot?: pulumi.Input<inputs.JobGitSourceGitSnapshot>;
|
|
4289
4290
|
jobSource?: pulumi.Input<inputs.JobGitSourceJobSource>;
|
|
4290
4291
|
/**
|
|
4291
4292
|
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`.
|
|
@@ -4300,6 +4301,9 @@ export interface JobGitSource {
|
|
|
4300
4301
|
*/
|
|
4301
4302
|
url: pulumi.Input<string>;
|
|
4302
4303
|
}
|
|
4304
|
+
export interface JobGitSourceGitSnapshot {
|
|
4305
|
+
usedCommit?: pulumi.Input<string>;
|
|
4306
|
+
}
|
|
4303
4307
|
export interface JobGitSourceJobSource {
|
|
4304
4308
|
dirtyState?: pulumi.Input<string>;
|
|
4305
4309
|
importFromGitBranch: pulumi.Input<string>;
|
|
@@ -4341,6 +4345,7 @@ export interface JobJobClusterNewCluster {
|
|
|
4341
4345
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
4342
4346
|
awsAttributes?: pulumi.Input<inputs.JobJobClusterNewClusterAwsAttributes>;
|
|
4343
4347
|
azureAttributes?: pulumi.Input<inputs.JobJobClusterNewClusterAzureAttributes>;
|
|
4348
|
+
cloneFrom?: pulumi.Input<inputs.JobJobClusterNewClusterCloneFrom>;
|
|
4344
4349
|
clusterId?: pulumi.Input<string>;
|
|
4345
4350
|
clusterLogConf?: pulumi.Input<inputs.JobJobClusterNewClusterClusterLogConf>;
|
|
4346
4351
|
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.JobJobClusterNewClusterClusterMountInfo>[]>;
|
|
@@ -4358,6 +4363,10 @@ export interface JobJobClusterNewCluster {
|
|
|
4358
4363
|
idempotencyToken?: pulumi.Input<string>;
|
|
4359
4364
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobJobClusterNewClusterInitScript>[]>;
|
|
4360
4365
|
instancePoolId?: pulumi.Input<string>;
|
|
4366
|
+
/**
|
|
4367
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
4368
|
+
*/
|
|
4369
|
+
libraries?: pulumi.Input<pulumi.Input<inputs.JobJobClusterNewClusterLibrary>[]>;
|
|
4361
4370
|
nodeTypeId?: pulumi.Input<string>;
|
|
4362
4371
|
numWorkers?: pulumi.Input<number>;
|
|
4363
4372
|
policyId?: pulumi.Input<string>;
|
|
@@ -4380,7 +4389,9 @@ export interface JobJobClusterNewClusterAutoscale {
|
|
|
4380
4389
|
export interface JobJobClusterNewClusterAwsAttributes {
|
|
4381
4390
|
availability?: pulumi.Input<string>;
|
|
4382
4391
|
ebsVolumeCount?: pulumi.Input<number>;
|
|
4392
|
+
ebsVolumeIops?: pulumi.Input<number>;
|
|
4383
4393
|
ebsVolumeSize?: pulumi.Input<number>;
|
|
4394
|
+
ebsVolumeThroughput?: pulumi.Input<number>;
|
|
4384
4395
|
ebsVolumeType?: pulumi.Input<string>;
|
|
4385
4396
|
firstOnDemand?: pulumi.Input<number>;
|
|
4386
4397
|
instanceProfileArn?: pulumi.Input<string>;
|
|
@@ -4390,8 +4401,16 @@ export interface JobJobClusterNewClusterAwsAttributes {
|
|
|
4390
4401
|
export interface JobJobClusterNewClusterAzureAttributes {
|
|
4391
4402
|
availability?: pulumi.Input<string>;
|
|
4392
4403
|
firstOnDemand?: pulumi.Input<number>;
|
|
4404
|
+
logAnalyticsInfo?: pulumi.Input<inputs.JobJobClusterNewClusterAzureAttributesLogAnalyticsInfo>;
|
|
4393
4405
|
spotBidMaxPrice?: pulumi.Input<number>;
|
|
4394
4406
|
}
|
|
4407
|
+
export interface JobJobClusterNewClusterAzureAttributesLogAnalyticsInfo {
|
|
4408
|
+
logAnalyticsPrimaryKey?: pulumi.Input<string>;
|
|
4409
|
+
logAnalyticsWorkspaceId?: pulumi.Input<string>;
|
|
4410
|
+
}
|
|
4411
|
+
export interface JobJobClusterNewClusterCloneFrom {
|
|
4412
|
+
sourceClusterId: pulumi.Input<string>;
|
|
4413
|
+
}
|
|
4395
4414
|
export interface JobJobClusterNewClusterClusterLogConf {
|
|
4396
4415
|
dbfs?: pulumi.Input<inputs.JobJobClusterNewClusterClusterLogConfDbfs>;
|
|
4397
4416
|
s3?: pulumi.Input<inputs.JobJobClusterNewClusterClusterLogConfS3>;
|
|
@@ -4475,6 +4494,28 @@ export interface JobJobClusterNewClusterInitScriptVolumes {
|
|
|
4475
4494
|
export interface JobJobClusterNewClusterInitScriptWorkspace {
|
|
4476
4495
|
destination: pulumi.Input<string>;
|
|
4477
4496
|
}
|
|
4497
|
+
export interface JobJobClusterNewClusterLibrary {
|
|
4498
|
+
cran?: pulumi.Input<inputs.JobJobClusterNewClusterLibraryCran>;
|
|
4499
|
+
egg?: pulumi.Input<string>;
|
|
4500
|
+
jar?: pulumi.Input<string>;
|
|
4501
|
+
maven?: pulumi.Input<inputs.JobJobClusterNewClusterLibraryMaven>;
|
|
4502
|
+
pypi?: pulumi.Input<inputs.JobJobClusterNewClusterLibraryPypi>;
|
|
4503
|
+
requirements?: pulumi.Input<string>;
|
|
4504
|
+
whl?: pulumi.Input<string>;
|
|
4505
|
+
}
|
|
4506
|
+
export interface JobJobClusterNewClusterLibraryCran {
|
|
4507
|
+
package: pulumi.Input<string>;
|
|
4508
|
+
repo?: pulumi.Input<string>;
|
|
4509
|
+
}
|
|
4510
|
+
export interface JobJobClusterNewClusterLibraryMaven {
|
|
4511
|
+
coordinates: pulumi.Input<string>;
|
|
4512
|
+
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4513
|
+
repo?: pulumi.Input<string>;
|
|
4514
|
+
}
|
|
4515
|
+
export interface JobJobClusterNewClusterLibraryPypi {
|
|
4516
|
+
package: pulumi.Input<string>;
|
|
4517
|
+
repo?: pulumi.Input<string>;
|
|
4518
|
+
}
|
|
4478
4519
|
export interface JobJobClusterNewClusterWorkloadType {
|
|
4479
4520
|
clients: pulumi.Input<inputs.JobJobClusterNewClusterWorkloadTypeClients>;
|
|
4480
4521
|
}
|
|
@@ -4510,6 +4551,7 @@ export interface JobNewCluster {
|
|
|
4510
4551
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
4511
4552
|
awsAttributes?: pulumi.Input<inputs.JobNewClusterAwsAttributes>;
|
|
4512
4553
|
azureAttributes?: pulumi.Input<inputs.JobNewClusterAzureAttributes>;
|
|
4554
|
+
cloneFrom?: pulumi.Input<inputs.JobNewClusterCloneFrom>;
|
|
4513
4555
|
clusterId?: pulumi.Input<string>;
|
|
4514
4556
|
clusterLogConf?: pulumi.Input<inputs.JobNewClusterClusterLogConf>;
|
|
4515
4557
|
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.JobNewClusterClusterMountInfo>[]>;
|
|
@@ -4527,6 +4569,10 @@ export interface JobNewCluster {
|
|
|
4527
4569
|
idempotencyToken?: pulumi.Input<string>;
|
|
4528
4570
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobNewClusterInitScript>[]>;
|
|
4529
4571
|
instancePoolId?: pulumi.Input<string>;
|
|
4572
|
+
/**
|
|
4573
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
4574
|
+
*/
|
|
4575
|
+
libraries?: pulumi.Input<pulumi.Input<inputs.JobNewClusterLibrary>[]>;
|
|
4530
4576
|
nodeTypeId?: pulumi.Input<string>;
|
|
4531
4577
|
numWorkers?: pulumi.Input<number>;
|
|
4532
4578
|
policyId?: pulumi.Input<string>;
|
|
@@ -4549,7 +4595,9 @@ export interface JobNewClusterAutoscale {
|
|
|
4549
4595
|
export interface JobNewClusterAwsAttributes {
|
|
4550
4596
|
availability?: pulumi.Input<string>;
|
|
4551
4597
|
ebsVolumeCount?: pulumi.Input<number>;
|
|
4598
|
+
ebsVolumeIops?: pulumi.Input<number>;
|
|
4552
4599
|
ebsVolumeSize?: pulumi.Input<number>;
|
|
4600
|
+
ebsVolumeThroughput?: pulumi.Input<number>;
|
|
4553
4601
|
ebsVolumeType?: pulumi.Input<string>;
|
|
4554
4602
|
firstOnDemand?: pulumi.Input<number>;
|
|
4555
4603
|
instanceProfileArn?: pulumi.Input<string>;
|
|
@@ -4559,8 +4607,16 @@ export interface JobNewClusterAwsAttributes {
|
|
|
4559
4607
|
export interface JobNewClusterAzureAttributes {
|
|
4560
4608
|
availability?: pulumi.Input<string>;
|
|
4561
4609
|
firstOnDemand?: pulumi.Input<number>;
|
|
4610
|
+
logAnalyticsInfo?: pulumi.Input<inputs.JobNewClusterAzureAttributesLogAnalyticsInfo>;
|
|
4562
4611
|
spotBidMaxPrice?: pulumi.Input<number>;
|
|
4563
4612
|
}
|
|
4613
|
+
export interface JobNewClusterAzureAttributesLogAnalyticsInfo {
|
|
4614
|
+
logAnalyticsPrimaryKey?: pulumi.Input<string>;
|
|
4615
|
+
logAnalyticsWorkspaceId?: pulumi.Input<string>;
|
|
4616
|
+
}
|
|
4617
|
+
export interface JobNewClusterCloneFrom {
|
|
4618
|
+
sourceClusterId: pulumi.Input<string>;
|
|
4619
|
+
}
|
|
4564
4620
|
export interface JobNewClusterClusterLogConf {
|
|
4565
4621
|
dbfs?: pulumi.Input<inputs.JobNewClusterClusterLogConfDbfs>;
|
|
4566
4622
|
s3?: pulumi.Input<inputs.JobNewClusterClusterLogConfS3>;
|
|
@@ -4644,6 +4700,28 @@ export interface JobNewClusterInitScriptVolumes {
|
|
|
4644
4700
|
export interface JobNewClusterInitScriptWorkspace {
|
|
4645
4701
|
destination: pulumi.Input<string>;
|
|
4646
4702
|
}
|
|
4703
|
+
export interface JobNewClusterLibrary {
|
|
4704
|
+
cran?: pulumi.Input<inputs.JobNewClusterLibraryCran>;
|
|
4705
|
+
egg?: pulumi.Input<string>;
|
|
4706
|
+
jar?: pulumi.Input<string>;
|
|
4707
|
+
maven?: pulumi.Input<inputs.JobNewClusterLibraryMaven>;
|
|
4708
|
+
pypi?: pulumi.Input<inputs.JobNewClusterLibraryPypi>;
|
|
4709
|
+
requirements?: pulumi.Input<string>;
|
|
4710
|
+
whl?: pulumi.Input<string>;
|
|
4711
|
+
}
|
|
4712
|
+
export interface JobNewClusterLibraryCran {
|
|
4713
|
+
package: pulumi.Input<string>;
|
|
4714
|
+
repo?: pulumi.Input<string>;
|
|
4715
|
+
}
|
|
4716
|
+
export interface JobNewClusterLibraryMaven {
|
|
4717
|
+
coordinates: pulumi.Input<string>;
|
|
4718
|
+
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
4719
|
+
repo?: pulumi.Input<string>;
|
|
4720
|
+
}
|
|
4721
|
+
export interface JobNewClusterLibraryPypi {
|
|
4722
|
+
package: pulumi.Input<string>;
|
|
4723
|
+
repo?: pulumi.Input<string>;
|
|
4724
|
+
}
|
|
4647
4725
|
export interface JobNewClusterWorkloadType {
|
|
4648
4726
|
clients: pulumi.Input<inputs.JobNewClusterWorkloadTypeClients>;
|
|
4649
4727
|
}
|
|
@@ -4822,6 +4900,7 @@ export interface JobTask {
|
|
|
4822
4900
|
* An optional description for the job. The maximum length is 1024 characters in UTF-8 encoding.
|
|
4823
4901
|
*/
|
|
4824
4902
|
description?: pulumi.Input<string>;
|
|
4903
|
+
disableAutoOptimization?: pulumi.Input<boolean>;
|
|
4825
4904
|
/**
|
|
4826
4905
|
* (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
|
|
4827
4906
|
*/
|
|
@@ -4870,7 +4949,7 @@ export interface JobTask {
|
|
|
4870
4949
|
*/
|
|
4871
4950
|
retryOnTimeout?: pulumi.Input<boolean>;
|
|
4872
4951
|
/**
|
|
4873
|
-
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. When omitted, defaults to `ALL_SUCCESS`.
|
|
4952
|
+
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. One of `ALL_SUCCESS`, `AT_LEAST_ONE_SUCCESS`, `NONE_FAILED`, `ALL_DONE`, `AT_LEAST_ONE_FAILED` or `ALL_FAILED`. When omitted, defaults to `ALL_SUCCESS`.
|
|
4874
4953
|
*/
|
|
4875
4954
|
runIf?: pulumi.Input<string>;
|
|
4876
4955
|
runJobTask?: pulumi.Input<inputs.JobTaskRunJobTask>;
|
|
@@ -4998,6 +5077,7 @@ export interface JobTaskForEachTaskTask {
|
|
|
4998
5077
|
* An optional description for the job. The maximum length is 1024 characters in UTF-8 encoding.
|
|
4999
5078
|
*/
|
|
5000
5079
|
description?: pulumi.Input<string>;
|
|
5080
|
+
disableAutoOptimization?: pulumi.Input<boolean>;
|
|
5001
5081
|
/**
|
|
5002
5082
|
* (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
|
|
5003
5083
|
*/
|
|
@@ -5045,7 +5125,7 @@ export interface JobTaskForEachTaskTask {
|
|
|
5045
5125
|
*/
|
|
5046
5126
|
retryOnTimeout?: pulumi.Input<boolean>;
|
|
5047
5127
|
/**
|
|
5048
|
-
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. When omitted, defaults to `ALL_SUCCESS`.
|
|
5128
|
+
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. One of `ALL_SUCCESS`, `AT_LEAST_ONE_SUCCESS`, `NONE_FAILED`, `ALL_DONE`, `AT_LEAST_ONE_FAILED` or `ALL_FAILED`. When omitted, defaults to `ALL_SUCCESS`.
|
|
5049
5129
|
*/
|
|
5050
5130
|
runIf?: pulumi.Input<string>;
|
|
5051
5131
|
runJobTask?: pulumi.Input<inputs.JobTaskForEachTaskTaskRunJobTask>;
|
|
@@ -5196,6 +5276,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
5196
5276
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
5197
5277
|
awsAttributes?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterAwsAttributes>;
|
|
5198
5278
|
azureAttributes?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterAzureAttributes>;
|
|
5279
|
+
cloneFrom?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterCloneFrom>;
|
|
5199
5280
|
clusterId?: pulumi.Input<string>;
|
|
5200
5281
|
clusterLogConf?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterClusterLogConf>;
|
|
5201
5282
|
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterClusterMountInfo>[]>;
|
|
@@ -5213,8 +5294,12 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
5213
5294
|
idempotencyToken?: pulumi.Input<string>;
|
|
5214
5295
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScript>[]>;
|
|
5215
5296
|
instancePoolId?: pulumi.Input<string>;
|
|
5297
|
+
/**
|
|
5298
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
5299
|
+
*/
|
|
5300
|
+
libraries?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterLibrary>[]>;
|
|
5216
5301
|
nodeTypeId?: pulumi.Input<string>;
|
|
5217
|
-
numWorkers
|
|
5302
|
+
numWorkers?: pulumi.Input<number>;
|
|
5218
5303
|
policyId?: pulumi.Input<string>;
|
|
5219
5304
|
runtimeEngine?: pulumi.Input<string>;
|
|
5220
5305
|
singleUserName?: pulumi.Input<string>;
|
|
@@ -5235,7 +5320,9 @@ export interface JobTaskForEachTaskTaskNewClusterAutoscale {
|
|
|
5235
5320
|
export interface JobTaskForEachTaskTaskNewClusterAwsAttributes {
|
|
5236
5321
|
availability?: pulumi.Input<string>;
|
|
5237
5322
|
ebsVolumeCount?: pulumi.Input<number>;
|
|
5323
|
+
ebsVolumeIops?: pulumi.Input<number>;
|
|
5238
5324
|
ebsVolumeSize?: pulumi.Input<number>;
|
|
5325
|
+
ebsVolumeThroughput?: pulumi.Input<number>;
|
|
5239
5326
|
ebsVolumeType?: pulumi.Input<string>;
|
|
5240
5327
|
firstOnDemand?: pulumi.Input<number>;
|
|
5241
5328
|
instanceProfileArn?: pulumi.Input<string>;
|
|
@@ -5245,8 +5332,16 @@ export interface JobTaskForEachTaskTaskNewClusterAwsAttributes {
|
|
|
5245
5332
|
export interface JobTaskForEachTaskTaskNewClusterAzureAttributes {
|
|
5246
5333
|
availability?: pulumi.Input<string>;
|
|
5247
5334
|
firstOnDemand?: pulumi.Input<number>;
|
|
5335
|
+
logAnalyticsInfo?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterAzureAttributesLogAnalyticsInfo>;
|
|
5248
5336
|
spotBidMaxPrice?: pulumi.Input<number>;
|
|
5249
5337
|
}
|
|
5338
|
+
export interface JobTaskForEachTaskTaskNewClusterAzureAttributesLogAnalyticsInfo {
|
|
5339
|
+
logAnalyticsPrimaryKey?: pulumi.Input<string>;
|
|
5340
|
+
logAnalyticsWorkspaceId?: pulumi.Input<string>;
|
|
5341
|
+
}
|
|
5342
|
+
export interface JobTaskForEachTaskTaskNewClusterCloneFrom {
|
|
5343
|
+
sourceClusterId: pulumi.Input<string>;
|
|
5344
|
+
}
|
|
5250
5345
|
export interface JobTaskForEachTaskTaskNewClusterClusterLogConf {
|
|
5251
5346
|
dbfs?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterClusterLogConfDbfs>;
|
|
5252
5347
|
s3?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterClusterLogConfS3>;
|
|
@@ -5293,6 +5388,9 @@ export interface JobTaskForEachTaskTaskNewClusterGcpAttributes {
|
|
|
5293
5388
|
}
|
|
5294
5389
|
export interface JobTaskForEachTaskTaskNewClusterInitScript {
|
|
5295
5390
|
abfss?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScriptAbfss>;
|
|
5391
|
+
/**
|
|
5392
|
+
* @deprecated For init scripts use 'volumes', 'workspace' or cloud storage location instead of 'dbfs'.
|
|
5393
|
+
*/
|
|
5296
5394
|
dbfs?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScriptDbfs>;
|
|
5297
5395
|
file?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScriptFile>;
|
|
5298
5396
|
gcs?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterInitScriptGcs>;
|
|
@@ -5327,6 +5425,28 @@ export interface JobTaskForEachTaskTaskNewClusterInitScriptVolumes {
|
|
|
5327
5425
|
export interface JobTaskForEachTaskTaskNewClusterInitScriptWorkspace {
|
|
5328
5426
|
destination: pulumi.Input<string>;
|
|
5329
5427
|
}
|
|
5428
|
+
export interface JobTaskForEachTaskTaskNewClusterLibrary {
|
|
5429
|
+
cran?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterLibraryCran>;
|
|
5430
|
+
egg?: pulumi.Input<string>;
|
|
5431
|
+
jar?: pulumi.Input<string>;
|
|
5432
|
+
maven?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterLibraryMaven>;
|
|
5433
|
+
pypi?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterLibraryPypi>;
|
|
5434
|
+
requirements?: pulumi.Input<string>;
|
|
5435
|
+
whl?: pulumi.Input<string>;
|
|
5436
|
+
}
|
|
5437
|
+
export interface JobTaskForEachTaskTaskNewClusterLibraryCran {
|
|
5438
|
+
package: pulumi.Input<string>;
|
|
5439
|
+
repo?: pulumi.Input<string>;
|
|
5440
|
+
}
|
|
5441
|
+
export interface JobTaskForEachTaskTaskNewClusterLibraryMaven {
|
|
5442
|
+
coordinates: pulumi.Input<string>;
|
|
5443
|
+
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5444
|
+
repo?: pulumi.Input<string>;
|
|
5445
|
+
}
|
|
5446
|
+
export interface JobTaskForEachTaskTaskNewClusterLibraryPypi {
|
|
5447
|
+
package: pulumi.Input<string>;
|
|
5448
|
+
repo?: pulumi.Input<string>;
|
|
5449
|
+
}
|
|
5330
5450
|
export interface JobTaskForEachTaskTaskNewClusterWorkloadType {
|
|
5331
5451
|
clients: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterWorkloadTypeClients>;
|
|
5332
5452
|
}
|
|
@@ -5403,6 +5523,8 @@ export interface JobTaskForEachTaskTaskPythonWheelTask {
|
|
|
5403
5523
|
parameters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5404
5524
|
}
|
|
5405
5525
|
export interface JobTaskForEachTaskTaskRunJobTask {
|
|
5526
|
+
dbtCommands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5527
|
+
jarParams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5406
5528
|
/**
|
|
5407
5529
|
* (String) ID of the job
|
|
5408
5530
|
*/
|
|
@@ -5413,6 +5535,21 @@ export interface JobTaskForEachTaskTaskRunJobTask {
|
|
|
5413
5535
|
jobParameters?: pulumi.Input<{
|
|
5414
5536
|
[key: string]: any;
|
|
5415
5537
|
}>;
|
|
5538
|
+
notebookParams?: pulumi.Input<{
|
|
5539
|
+
[key: string]: any;
|
|
5540
|
+
}>;
|
|
5541
|
+
pipelineParams?: pulumi.Input<inputs.JobTaskForEachTaskTaskRunJobTaskPipelineParams>;
|
|
5542
|
+
pythonNamedParams?: pulumi.Input<{
|
|
5543
|
+
[key: string]: any;
|
|
5544
|
+
}>;
|
|
5545
|
+
pythonParams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5546
|
+
sparkSubmitParams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5547
|
+
sqlParams?: pulumi.Input<{
|
|
5548
|
+
[key: string]: any;
|
|
5549
|
+
}>;
|
|
5550
|
+
}
|
|
5551
|
+
export interface JobTaskForEachTaskTaskRunJobTaskPipelineParams {
|
|
5552
|
+
fullRefresh?: pulumi.Input<boolean>;
|
|
5416
5553
|
}
|
|
5417
5554
|
export interface JobTaskForEachTaskTaskSparkJarTask {
|
|
5418
5555
|
jarUri?: pulumi.Input<string>;
|
|
@@ -5666,6 +5803,7 @@ export interface JobTaskNewCluster {
|
|
|
5666
5803
|
autoterminationMinutes?: pulumi.Input<number>;
|
|
5667
5804
|
awsAttributes?: pulumi.Input<inputs.JobTaskNewClusterAwsAttributes>;
|
|
5668
5805
|
azureAttributes?: pulumi.Input<inputs.JobTaskNewClusterAzureAttributes>;
|
|
5806
|
+
cloneFrom?: pulumi.Input<inputs.JobTaskNewClusterCloneFrom>;
|
|
5669
5807
|
clusterId?: pulumi.Input<string>;
|
|
5670
5808
|
clusterLogConf?: pulumi.Input<inputs.JobTaskNewClusterClusterLogConf>;
|
|
5671
5809
|
clusterMountInfos?: pulumi.Input<pulumi.Input<inputs.JobTaskNewClusterClusterMountInfo>[]>;
|
|
@@ -5683,6 +5821,10 @@ export interface JobTaskNewCluster {
|
|
|
5683
5821
|
idempotencyToken?: pulumi.Input<string>;
|
|
5684
5822
|
initScripts?: pulumi.Input<pulumi.Input<inputs.JobTaskNewClusterInitScript>[]>;
|
|
5685
5823
|
instancePoolId?: pulumi.Input<string>;
|
|
5824
|
+
/**
|
|
5825
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
5826
|
+
*/
|
|
5827
|
+
libraries?: pulumi.Input<pulumi.Input<inputs.JobTaskNewClusterLibrary>[]>;
|
|
5686
5828
|
nodeTypeId?: pulumi.Input<string>;
|
|
5687
5829
|
numWorkers?: pulumi.Input<number>;
|
|
5688
5830
|
policyId?: pulumi.Input<string>;
|
|
@@ -5705,7 +5847,9 @@ export interface JobTaskNewClusterAutoscale {
|
|
|
5705
5847
|
export interface JobTaskNewClusterAwsAttributes {
|
|
5706
5848
|
availability?: pulumi.Input<string>;
|
|
5707
5849
|
ebsVolumeCount?: pulumi.Input<number>;
|
|
5850
|
+
ebsVolumeIops?: pulumi.Input<number>;
|
|
5708
5851
|
ebsVolumeSize?: pulumi.Input<number>;
|
|
5852
|
+
ebsVolumeThroughput?: pulumi.Input<number>;
|
|
5709
5853
|
ebsVolumeType?: pulumi.Input<string>;
|
|
5710
5854
|
firstOnDemand?: pulumi.Input<number>;
|
|
5711
5855
|
instanceProfileArn?: pulumi.Input<string>;
|
|
@@ -5715,8 +5859,16 @@ export interface JobTaskNewClusterAwsAttributes {
|
|
|
5715
5859
|
export interface JobTaskNewClusterAzureAttributes {
|
|
5716
5860
|
availability?: pulumi.Input<string>;
|
|
5717
5861
|
firstOnDemand?: pulumi.Input<number>;
|
|
5862
|
+
logAnalyticsInfo?: pulumi.Input<inputs.JobTaskNewClusterAzureAttributesLogAnalyticsInfo>;
|
|
5718
5863
|
spotBidMaxPrice?: pulumi.Input<number>;
|
|
5719
5864
|
}
|
|
5865
|
+
export interface JobTaskNewClusterAzureAttributesLogAnalyticsInfo {
|
|
5866
|
+
logAnalyticsPrimaryKey?: pulumi.Input<string>;
|
|
5867
|
+
logAnalyticsWorkspaceId?: pulumi.Input<string>;
|
|
5868
|
+
}
|
|
5869
|
+
export interface JobTaskNewClusterCloneFrom {
|
|
5870
|
+
sourceClusterId: pulumi.Input<string>;
|
|
5871
|
+
}
|
|
5720
5872
|
export interface JobTaskNewClusterClusterLogConf {
|
|
5721
5873
|
dbfs?: pulumi.Input<inputs.JobTaskNewClusterClusterLogConfDbfs>;
|
|
5722
5874
|
s3?: pulumi.Input<inputs.JobTaskNewClusterClusterLogConfS3>;
|
|
@@ -5800,6 +5952,28 @@ export interface JobTaskNewClusterInitScriptVolumes {
|
|
|
5800
5952
|
export interface JobTaskNewClusterInitScriptWorkspace {
|
|
5801
5953
|
destination: pulumi.Input<string>;
|
|
5802
5954
|
}
|
|
5955
|
+
export interface JobTaskNewClusterLibrary {
|
|
5956
|
+
cran?: pulumi.Input<inputs.JobTaskNewClusterLibraryCran>;
|
|
5957
|
+
egg?: pulumi.Input<string>;
|
|
5958
|
+
jar?: pulumi.Input<string>;
|
|
5959
|
+
maven?: pulumi.Input<inputs.JobTaskNewClusterLibraryMaven>;
|
|
5960
|
+
pypi?: pulumi.Input<inputs.JobTaskNewClusterLibraryPypi>;
|
|
5961
|
+
requirements?: pulumi.Input<string>;
|
|
5962
|
+
whl?: pulumi.Input<string>;
|
|
5963
|
+
}
|
|
5964
|
+
export interface JobTaskNewClusterLibraryCran {
|
|
5965
|
+
package: pulumi.Input<string>;
|
|
5966
|
+
repo?: pulumi.Input<string>;
|
|
5967
|
+
}
|
|
5968
|
+
export interface JobTaskNewClusterLibraryMaven {
|
|
5969
|
+
coordinates: pulumi.Input<string>;
|
|
5970
|
+
exclusions?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5971
|
+
repo?: pulumi.Input<string>;
|
|
5972
|
+
}
|
|
5973
|
+
export interface JobTaskNewClusterLibraryPypi {
|
|
5974
|
+
package: pulumi.Input<string>;
|
|
5975
|
+
repo?: pulumi.Input<string>;
|
|
5976
|
+
}
|
|
5803
5977
|
export interface JobTaskNewClusterWorkloadType {
|
|
5804
5978
|
clients: pulumi.Input<inputs.JobTaskNewClusterWorkloadTypeClients>;
|
|
5805
5979
|
}
|
|
@@ -5876,6 +6050,8 @@ export interface JobTaskPythonWheelTask {
|
|
|
5876
6050
|
parameters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5877
6051
|
}
|
|
5878
6052
|
export interface JobTaskRunJobTask {
|
|
6053
|
+
dbtCommands?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6054
|
+
jarParams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
5879
6055
|
/**
|
|
5880
6056
|
* (String) ID of the job
|
|
5881
6057
|
*/
|
|
@@ -5886,6 +6062,21 @@ export interface JobTaskRunJobTask {
|
|
|
5886
6062
|
jobParameters?: pulumi.Input<{
|
|
5887
6063
|
[key: string]: any;
|
|
5888
6064
|
}>;
|
|
6065
|
+
notebookParams?: pulumi.Input<{
|
|
6066
|
+
[key: string]: any;
|
|
6067
|
+
}>;
|
|
6068
|
+
pipelineParams?: pulumi.Input<inputs.JobTaskRunJobTaskPipelineParams>;
|
|
6069
|
+
pythonNamedParams?: pulumi.Input<{
|
|
6070
|
+
[key: string]: any;
|
|
6071
|
+
}>;
|
|
6072
|
+
pythonParams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6073
|
+
sparkSubmitParams?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6074
|
+
sqlParams?: pulumi.Input<{
|
|
6075
|
+
[key: string]: any;
|
|
6076
|
+
}>;
|
|
6077
|
+
}
|
|
6078
|
+
export interface JobTaskRunJobTaskPipelineParams {
|
|
6079
|
+
fullRefresh?: pulumi.Input<boolean>;
|
|
5889
6080
|
}
|
|
5890
6081
|
export interface JobTaskSparkJarTask {
|
|
5891
6082
|
jarUri?: pulumi.Input<string>;
|
|
@@ -6100,6 +6291,7 @@ export interface JobTrigger {
|
|
|
6100
6291
|
* Indicate whether this trigger 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`.
|
|
6101
6292
|
*/
|
|
6102
6293
|
pauseStatus?: pulumi.Input<string>;
|
|
6294
|
+
table?: pulumi.Input<inputs.JobTriggerTable>;
|
|
6103
6295
|
/**
|
|
6104
6296
|
* configuration block to define a trigger for Table Update events consisting of following attributes:
|
|
6105
6297
|
*/
|
|
@@ -6119,6 +6311,12 @@ export interface JobTriggerFileArrival {
|
|
|
6119
6311
|
*/
|
|
6120
6312
|
waitAfterLastChangeSeconds?: pulumi.Input<number>;
|
|
6121
6313
|
}
|
|
6314
|
+
export interface JobTriggerTable {
|
|
6315
|
+
condition?: pulumi.Input<string>;
|
|
6316
|
+
minTimeBetweenTriggersSeconds?: pulumi.Input<number>;
|
|
6317
|
+
tableNames?: pulumi.Input<pulumi.Input<string>[]>;
|
|
6318
|
+
waitAfterLastChangeSeconds?: pulumi.Input<number>;
|
|
6319
|
+
}
|
|
6122
6320
|
export interface JobTriggerTableUpdate {
|
|
6123
6321
|
/**
|
|
6124
6322
|
* The table(s) condition based on which to trigger a job run. Valid values are `ANY_UPDATED` or `ALL_UPDATED`.
|
package/types/output.d.ts
CHANGED
|
@@ -2436,6 +2436,7 @@ export interface JobGitSource {
|
|
|
2436
2436
|
* hash of Git commit to use. Conflicts with `branch` and `tag`.
|
|
2437
2437
|
*/
|
|
2438
2438
|
commit?: string;
|
|
2439
|
+
gitSnapshot?: outputs.JobGitSourceGitSnapshot;
|
|
2439
2440
|
jobSource?: outputs.JobGitSourceJobSource;
|
|
2440
2441
|
/**
|
|
2441
2442
|
* case insensitive name of the Git provider. Following values are supported right now (could be a subject for change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`.
|
|
@@ -2450,6 +2451,9 @@ export interface JobGitSource {
|
|
|
2450
2451
|
*/
|
|
2451
2452
|
url: string;
|
|
2452
2453
|
}
|
|
2454
|
+
export interface JobGitSourceGitSnapshot {
|
|
2455
|
+
usedCommit?: string;
|
|
2456
|
+
}
|
|
2453
2457
|
export interface JobGitSourceJobSource {
|
|
2454
2458
|
dirtyState?: string;
|
|
2455
2459
|
importFromGitBranch: string;
|
|
@@ -2491,6 +2495,7 @@ export interface JobJobClusterNewCluster {
|
|
|
2491
2495
|
autoterminationMinutes?: number;
|
|
2492
2496
|
awsAttributes?: outputs.JobJobClusterNewClusterAwsAttributes;
|
|
2493
2497
|
azureAttributes?: outputs.JobJobClusterNewClusterAzureAttributes;
|
|
2498
|
+
cloneFrom?: outputs.JobJobClusterNewClusterCloneFrom;
|
|
2494
2499
|
clusterId?: string;
|
|
2495
2500
|
clusterLogConf?: outputs.JobJobClusterNewClusterClusterLogConf;
|
|
2496
2501
|
clusterMountInfos?: outputs.JobJobClusterNewClusterClusterMountInfo[];
|
|
@@ -2508,6 +2513,10 @@ export interface JobJobClusterNewCluster {
|
|
|
2508
2513
|
idempotencyToken?: string;
|
|
2509
2514
|
initScripts?: outputs.JobJobClusterNewClusterInitScript[];
|
|
2510
2515
|
instancePoolId?: string;
|
|
2516
|
+
/**
|
|
2517
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
2518
|
+
*/
|
|
2519
|
+
libraries?: outputs.JobJobClusterNewClusterLibrary[];
|
|
2511
2520
|
nodeTypeId: string;
|
|
2512
2521
|
numWorkers?: number;
|
|
2513
2522
|
policyId?: string;
|
|
@@ -2530,7 +2539,9 @@ export interface JobJobClusterNewClusterAutoscale {
|
|
|
2530
2539
|
export interface JobJobClusterNewClusterAwsAttributes {
|
|
2531
2540
|
availability?: string;
|
|
2532
2541
|
ebsVolumeCount?: number;
|
|
2542
|
+
ebsVolumeIops?: number;
|
|
2533
2543
|
ebsVolumeSize?: number;
|
|
2544
|
+
ebsVolumeThroughput?: number;
|
|
2534
2545
|
ebsVolumeType?: string;
|
|
2535
2546
|
firstOnDemand?: number;
|
|
2536
2547
|
instanceProfileArn?: string;
|
|
@@ -2540,8 +2551,16 @@ export interface JobJobClusterNewClusterAwsAttributes {
|
|
|
2540
2551
|
export interface JobJobClusterNewClusterAzureAttributes {
|
|
2541
2552
|
availability?: string;
|
|
2542
2553
|
firstOnDemand?: number;
|
|
2554
|
+
logAnalyticsInfo?: outputs.JobJobClusterNewClusterAzureAttributesLogAnalyticsInfo;
|
|
2543
2555
|
spotBidMaxPrice?: number;
|
|
2544
2556
|
}
|
|
2557
|
+
export interface JobJobClusterNewClusterAzureAttributesLogAnalyticsInfo {
|
|
2558
|
+
logAnalyticsPrimaryKey?: string;
|
|
2559
|
+
logAnalyticsWorkspaceId?: string;
|
|
2560
|
+
}
|
|
2561
|
+
export interface JobJobClusterNewClusterCloneFrom {
|
|
2562
|
+
sourceClusterId: string;
|
|
2563
|
+
}
|
|
2545
2564
|
export interface JobJobClusterNewClusterClusterLogConf {
|
|
2546
2565
|
dbfs?: outputs.JobJobClusterNewClusterClusterLogConfDbfs;
|
|
2547
2566
|
s3?: outputs.JobJobClusterNewClusterClusterLogConfS3;
|
|
@@ -2625,6 +2644,28 @@ export interface JobJobClusterNewClusterInitScriptVolumes {
|
|
|
2625
2644
|
export interface JobJobClusterNewClusterInitScriptWorkspace {
|
|
2626
2645
|
destination: string;
|
|
2627
2646
|
}
|
|
2647
|
+
export interface JobJobClusterNewClusterLibrary {
|
|
2648
|
+
cran?: outputs.JobJobClusterNewClusterLibraryCran;
|
|
2649
|
+
egg?: string;
|
|
2650
|
+
jar?: string;
|
|
2651
|
+
maven?: outputs.JobJobClusterNewClusterLibraryMaven;
|
|
2652
|
+
pypi?: outputs.JobJobClusterNewClusterLibraryPypi;
|
|
2653
|
+
requirements?: string;
|
|
2654
|
+
whl?: string;
|
|
2655
|
+
}
|
|
2656
|
+
export interface JobJobClusterNewClusterLibraryCran {
|
|
2657
|
+
package: string;
|
|
2658
|
+
repo?: string;
|
|
2659
|
+
}
|
|
2660
|
+
export interface JobJobClusterNewClusterLibraryMaven {
|
|
2661
|
+
coordinates: string;
|
|
2662
|
+
exclusions?: string[];
|
|
2663
|
+
repo?: string;
|
|
2664
|
+
}
|
|
2665
|
+
export interface JobJobClusterNewClusterLibraryPypi {
|
|
2666
|
+
package: string;
|
|
2667
|
+
repo?: string;
|
|
2668
|
+
}
|
|
2628
2669
|
export interface JobJobClusterNewClusterWorkloadType {
|
|
2629
2670
|
clients: outputs.JobJobClusterNewClusterWorkloadTypeClients;
|
|
2630
2671
|
}
|
|
@@ -2660,6 +2701,7 @@ export interface JobNewCluster {
|
|
|
2660
2701
|
autoterminationMinutes?: number;
|
|
2661
2702
|
awsAttributes?: outputs.JobNewClusterAwsAttributes;
|
|
2662
2703
|
azureAttributes?: outputs.JobNewClusterAzureAttributes;
|
|
2704
|
+
cloneFrom?: outputs.JobNewClusterCloneFrom;
|
|
2663
2705
|
clusterId?: string;
|
|
2664
2706
|
clusterLogConf?: outputs.JobNewClusterClusterLogConf;
|
|
2665
2707
|
clusterMountInfos?: outputs.JobNewClusterClusterMountInfo[];
|
|
@@ -2677,6 +2719,10 @@ export interface JobNewCluster {
|
|
|
2677
2719
|
idempotencyToken?: string;
|
|
2678
2720
|
initScripts?: outputs.JobNewClusterInitScript[];
|
|
2679
2721
|
instancePoolId?: string;
|
|
2722
|
+
/**
|
|
2723
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
2724
|
+
*/
|
|
2725
|
+
libraries?: outputs.JobNewClusterLibrary[];
|
|
2680
2726
|
nodeTypeId: string;
|
|
2681
2727
|
numWorkers?: number;
|
|
2682
2728
|
policyId?: string;
|
|
@@ -2699,7 +2745,9 @@ export interface JobNewClusterAutoscale {
|
|
|
2699
2745
|
export interface JobNewClusterAwsAttributes {
|
|
2700
2746
|
availability?: string;
|
|
2701
2747
|
ebsVolumeCount?: number;
|
|
2748
|
+
ebsVolumeIops?: number;
|
|
2702
2749
|
ebsVolumeSize?: number;
|
|
2750
|
+
ebsVolumeThroughput?: number;
|
|
2703
2751
|
ebsVolumeType?: string;
|
|
2704
2752
|
firstOnDemand?: number;
|
|
2705
2753
|
instanceProfileArn?: string;
|
|
@@ -2709,8 +2757,16 @@ export interface JobNewClusterAwsAttributes {
|
|
|
2709
2757
|
export interface JobNewClusterAzureAttributes {
|
|
2710
2758
|
availability?: string;
|
|
2711
2759
|
firstOnDemand?: number;
|
|
2760
|
+
logAnalyticsInfo?: outputs.JobNewClusterAzureAttributesLogAnalyticsInfo;
|
|
2712
2761
|
spotBidMaxPrice?: number;
|
|
2713
2762
|
}
|
|
2763
|
+
export interface JobNewClusterAzureAttributesLogAnalyticsInfo {
|
|
2764
|
+
logAnalyticsPrimaryKey?: string;
|
|
2765
|
+
logAnalyticsWorkspaceId?: string;
|
|
2766
|
+
}
|
|
2767
|
+
export interface JobNewClusterCloneFrom {
|
|
2768
|
+
sourceClusterId: string;
|
|
2769
|
+
}
|
|
2714
2770
|
export interface JobNewClusterClusterLogConf {
|
|
2715
2771
|
dbfs?: outputs.JobNewClusterClusterLogConfDbfs;
|
|
2716
2772
|
s3?: outputs.JobNewClusterClusterLogConfS3;
|
|
@@ -2794,6 +2850,28 @@ export interface JobNewClusterInitScriptVolumes {
|
|
|
2794
2850
|
export interface JobNewClusterInitScriptWorkspace {
|
|
2795
2851
|
destination: string;
|
|
2796
2852
|
}
|
|
2853
|
+
export interface JobNewClusterLibrary {
|
|
2854
|
+
cran?: outputs.JobNewClusterLibraryCran;
|
|
2855
|
+
egg?: string;
|
|
2856
|
+
jar?: string;
|
|
2857
|
+
maven?: outputs.JobNewClusterLibraryMaven;
|
|
2858
|
+
pypi?: outputs.JobNewClusterLibraryPypi;
|
|
2859
|
+
requirements?: string;
|
|
2860
|
+
whl?: string;
|
|
2861
|
+
}
|
|
2862
|
+
export interface JobNewClusterLibraryCran {
|
|
2863
|
+
package: string;
|
|
2864
|
+
repo?: string;
|
|
2865
|
+
}
|
|
2866
|
+
export interface JobNewClusterLibraryMaven {
|
|
2867
|
+
coordinates: string;
|
|
2868
|
+
exclusions?: string[];
|
|
2869
|
+
repo?: string;
|
|
2870
|
+
}
|
|
2871
|
+
export interface JobNewClusterLibraryPypi {
|
|
2872
|
+
package: string;
|
|
2873
|
+
repo?: string;
|
|
2874
|
+
}
|
|
2797
2875
|
export interface JobNewClusterWorkloadType {
|
|
2798
2876
|
clients: outputs.JobNewClusterWorkloadTypeClients;
|
|
2799
2877
|
}
|
|
@@ -2972,6 +3050,7 @@ export interface JobTask {
|
|
|
2972
3050
|
* An optional description for the job. The maximum length is 1024 characters in UTF-8 encoding.
|
|
2973
3051
|
*/
|
|
2974
3052
|
description?: string;
|
|
3053
|
+
disableAutoOptimization?: boolean;
|
|
2975
3054
|
/**
|
|
2976
3055
|
* (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
|
|
2977
3056
|
*/
|
|
@@ -3020,7 +3099,7 @@ export interface JobTask {
|
|
|
3020
3099
|
*/
|
|
3021
3100
|
retryOnTimeout: boolean;
|
|
3022
3101
|
/**
|
|
3023
|
-
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. When omitted, defaults to `ALL_SUCCESS`.
|
|
3102
|
+
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. One of `ALL_SUCCESS`, `AT_LEAST_ONE_SUCCESS`, `NONE_FAILED`, `ALL_DONE`, `AT_LEAST_ONE_FAILED` or `ALL_FAILED`. When omitted, defaults to `ALL_SUCCESS`.
|
|
3024
3103
|
*/
|
|
3025
3104
|
runIf?: string;
|
|
3026
3105
|
runJobTask?: outputs.JobTaskRunJobTask;
|
|
@@ -3148,6 +3227,7 @@ export interface JobTaskForEachTaskTask {
|
|
|
3148
3227
|
* An optional description for the job. The maximum length is 1024 characters in UTF-8 encoding.
|
|
3149
3228
|
*/
|
|
3150
3229
|
description?: string;
|
|
3230
|
+
disableAutoOptimization?: boolean;
|
|
3151
3231
|
/**
|
|
3152
3232
|
* (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
|
|
3153
3233
|
*/
|
|
@@ -3195,7 +3275,7 @@ export interface JobTaskForEachTaskTask {
|
|
|
3195
3275
|
*/
|
|
3196
3276
|
retryOnTimeout: boolean;
|
|
3197
3277
|
/**
|
|
3198
|
-
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. When omitted, defaults to `ALL_SUCCESS`.
|
|
3278
|
+
* An optional value indicating the condition that determines whether the task should be run once its dependencies have been completed. One of `ALL_SUCCESS`, `AT_LEAST_ONE_SUCCESS`, `NONE_FAILED`, `ALL_DONE`, `AT_LEAST_ONE_FAILED` or `ALL_FAILED`. When omitted, defaults to `ALL_SUCCESS`.
|
|
3199
3279
|
*/
|
|
3200
3280
|
runIf?: string;
|
|
3201
3281
|
runJobTask?: outputs.JobTaskForEachTaskTaskRunJobTask;
|
|
@@ -3346,6 +3426,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
3346
3426
|
autoterminationMinutes?: number;
|
|
3347
3427
|
awsAttributes?: outputs.JobTaskForEachTaskTaskNewClusterAwsAttributes;
|
|
3348
3428
|
azureAttributes?: outputs.JobTaskForEachTaskTaskNewClusterAzureAttributes;
|
|
3429
|
+
cloneFrom?: outputs.JobTaskForEachTaskTaskNewClusterCloneFrom;
|
|
3349
3430
|
clusterId?: string;
|
|
3350
3431
|
clusterLogConf?: outputs.JobTaskForEachTaskTaskNewClusterClusterLogConf;
|
|
3351
3432
|
clusterMountInfos?: outputs.JobTaskForEachTaskTaskNewClusterClusterMountInfo[];
|
|
@@ -3363,8 +3444,12 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
3363
3444
|
idempotencyToken?: string;
|
|
3364
3445
|
initScripts?: outputs.JobTaskForEachTaskTaskNewClusterInitScript[];
|
|
3365
3446
|
instancePoolId?: string;
|
|
3447
|
+
/**
|
|
3448
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
3449
|
+
*/
|
|
3450
|
+
libraries?: outputs.JobTaskForEachTaskTaskNewClusterLibrary[];
|
|
3366
3451
|
nodeTypeId: string;
|
|
3367
|
-
numWorkers
|
|
3452
|
+
numWorkers?: number;
|
|
3368
3453
|
policyId?: string;
|
|
3369
3454
|
runtimeEngine?: string;
|
|
3370
3455
|
singleUserName?: string;
|
|
@@ -3385,7 +3470,9 @@ export interface JobTaskForEachTaskTaskNewClusterAutoscale {
|
|
|
3385
3470
|
export interface JobTaskForEachTaskTaskNewClusterAwsAttributes {
|
|
3386
3471
|
availability?: string;
|
|
3387
3472
|
ebsVolumeCount?: number;
|
|
3473
|
+
ebsVolumeIops?: number;
|
|
3388
3474
|
ebsVolumeSize?: number;
|
|
3475
|
+
ebsVolumeThroughput?: number;
|
|
3389
3476
|
ebsVolumeType?: string;
|
|
3390
3477
|
firstOnDemand?: number;
|
|
3391
3478
|
instanceProfileArn?: string;
|
|
@@ -3395,8 +3482,16 @@ export interface JobTaskForEachTaskTaskNewClusterAwsAttributes {
|
|
|
3395
3482
|
export interface JobTaskForEachTaskTaskNewClusterAzureAttributes {
|
|
3396
3483
|
availability?: string;
|
|
3397
3484
|
firstOnDemand?: number;
|
|
3485
|
+
logAnalyticsInfo?: outputs.JobTaskForEachTaskTaskNewClusterAzureAttributesLogAnalyticsInfo;
|
|
3398
3486
|
spotBidMaxPrice?: number;
|
|
3399
3487
|
}
|
|
3488
|
+
export interface JobTaskForEachTaskTaskNewClusterAzureAttributesLogAnalyticsInfo {
|
|
3489
|
+
logAnalyticsPrimaryKey?: string;
|
|
3490
|
+
logAnalyticsWorkspaceId?: string;
|
|
3491
|
+
}
|
|
3492
|
+
export interface JobTaskForEachTaskTaskNewClusterCloneFrom {
|
|
3493
|
+
sourceClusterId: string;
|
|
3494
|
+
}
|
|
3400
3495
|
export interface JobTaskForEachTaskTaskNewClusterClusterLogConf {
|
|
3401
3496
|
dbfs?: outputs.JobTaskForEachTaskTaskNewClusterClusterLogConfDbfs;
|
|
3402
3497
|
s3?: outputs.JobTaskForEachTaskTaskNewClusterClusterLogConfS3;
|
|
@@ -3443,6 +3538,9 @@ export interface JobTaskForEachTaskTaskNewClusterGcpAttributes {
|
|
|
3443
3538
|
}
|
|
3444
3539
|
export interface JobTaskForEachTaskTaskNewClusterInitScript {
|
|
3445
3540
|
abfss?: outputs.JobTaskForEachTaskTaskNewClusterInitScriptAbfss;
|
|
3541
|
+
/**
|
|
3542
|
+
* @deprecated For init scripts use 'volumes', 'workspace' or cloud storage location instead of 'dbfs'.
|
|
3543
|
+
*/
|
|
3446
3544
|
dbfs?: outputs.JobTaskForEachTaskTaskNewClusterInitScriptDbfs;
|
|
3447
3545
|
file?: outputs.JobTaskForEachTaskTaskNewClusterInitScriptFile;
|
|
3448
3546
|
gcs?: outputs.JobTaskForEachTaskTaskNewClusterInitScriptGcs;
|
|
@@ -3477,6 +3575,28 @@ export interface JobTaskForEachTaskTaskNewClusterInitScriptVolumes {
|
|
|
3477
3575
|
export interface JobTaskForEachTaskTaskNewClusterInitScriptWorkspace {
|
|
3478
3576
|
destination: string;
|
|
3479
3577
|
}
|
|
3578
|
+
export interface JobTaskForEachTaskTaskNewClusterLibrary {
|
|
3579
|
+
cran?: outputs.JobTaskForEachTaskTaskNewClusterLibraryCran;
|
|
3580
|
+
egg?: string;
|
|
3581
|
+
jar?: string;
|
|
3582
|
+
maven?: outputs.JobTaskForEachTaskTaskNewClusterLibraryMaven;
|
|
3583
|
+
pypi?: outputs.JobTaskForEachTaskTaskNewClusterLibraryPypi;
|
|
3584
|
+
requirements?: string;
|
|
3585
|
+
whl?: string;
|
|
3586
|
+
}
|
|
3587
|
+
export interface JobTaskForEachTaskTaskNewClusterLibraryCran {
|
|
3588
|
+
package: string;
|
|
3589
|
+
repo?: string;
|
|
3590
|
+
}
|
|
3591
|
+
export interface JobTaskForEachTaskTaskNewClusterLibraryMaven {
|
|
3592
|
+
coordinates: string;
|
|
3593
|
+
exclusions?: string[];
|
|
3594
|
+
repo?: string;
|
|
3595
|
+
}
|
|
3596
|
+
export interface JobTaskForEachTaskTaskNewClusterLibraryPypi {
|
|
3597
|
+
package: string;
|
|
3598
|
+
repo?: string;
|
|
3599
|
+
}
|
|
3480
3600
|
export interface JobTaskForEachTaskTaskNewClusterWorkloadType {
|
|
3481
3601
|
clients: outputs.JobTaskForEachTaskTaskNewClusterWorkloadTypeClients;
|
|
3482
3602
|
}
|
|
@@ -3553,6 +3673,8 @@ export interface JobTaskForEachTaskTaskPythonWheelTask {
|
|
|
3553
3673
|
parameters?: string[];
|
|
3554
3674
|
}
|
|
3555
3675
|
export interface JobTaskForEachTaskTaskRunJobTask {
|
|
3676
|
+
dbtCommands?: string[];
|
|
3677
|
+
jarParams?: string[];
|
|
3556
3678
|
/**
|
|
3557
3679
|
* (String) ID of the job
|
|
3558
3680
|
*/
|
|
@@ -3563,6 +3685,21 @@ export interface JobTaskForEachTaskTaskRunJobTask {
|
|
|
3563
3685
|
jobParameters?: {
|
|
3564
3686
|
[key: string]: any;
|
|
3565
3687
|
};
|
|
3688
|
+
notebookParams?: {
|
|
3689
|
+
[key: string]: any;
|
|
3690
|
+
};
|
|
3691
|
+
pipelineParams?: outputs.JobTaskForEachTaskTaskRunJobTaskPipelineParams;
|
|
3692
|
+
pythonNamedParams?: {
|
|
3693
|
+
[key: string]: any;
|
|
3694
|
+
};
|
|
3695
|
+
pythonParams?: string[];
|
|
3696
|
+
sparkSubmitParams?: string[];
|
|
3697
|
+
sqlParams?: {
|
|
3698
|
+
[key: string]: any;
|
|
3699
|
+
};
|
|
3700
|
+
}
|
|
3701
|
+
export interface JobTaskForEachTaskTaskRunJobTaskPipelineParams {
|
|
3702
|
+
fullRefresh?: boolean;
|
|
3566
3703
|
}
|
|
3567
3704
|
export interface JobTaskForEachTaskTaskSparkJarTask {
|
|
3568
3705
|
jarUri?: string;
|
|
@@ -3816,6 +3953,7 @@ export interface JobTaskNewCluster {
|
|
|
3816
3953
|
autoterminationMinutes?: number;
|
|
3817
3954
|
awsAttributes?: outputs.JobTaskNewClusterAwsAttributes;
|
|
3818
3955
|
azureAttributes?: outputs.JobTaskNewClusterAzureAttributes;
|
|
3956
|
+
cloneFrom?: outputs.JobTaskNewClusterCloneFrom;
|
|
3819
3957
|
clusterId?: string;
|
|
3820
3958
|
clusterLogConf?: outputs.JobTaskNewClusterClusterLogConf;
|
|
3821
3959
|
clusterMountInfos?: outputs.JobTaskNewClusterClusterMountInfo[];
|
|
@@ -3833,6 +3971,10 @@ export interface JobTaskNewCluster {
|
|
|
3833
3971
|
idempotencyToken?: string;
|
|
3834
3972
|
initScripts?: outputs.JobTaskNewClusterInitScript[];
|
|
3835
3973
|
instancePoolId?: string;
|
|
3974
|
+
/**
|
|
3975
|
+
* (List) An optional list of libraries to be installed on the cluster that will execute the job. Please consult libraries section of the databricks.Cluster resource for more information.
|
|
3976
|
+
*/
|
|
3977
|
+
libraries?: outputs.JobTaskNewClusterLibrary[];
|
|
3836
3978
|
nodeTypeId: string;
|
|
3837
3979
|
numWorkers?: number;
|
|
3838
3980
|
policyId?: string;
|
|
@@ -3855,7 +3997,9 @@ export interface JobTaskNewClusterAutoscale {
|
|
|
3855
3997
|
export interface JobTaskNewClusterAwsAttributes {
|
|
3856
3998
|
availability?: string;
|
|
3857
3999
|
ebsVolumeCount?: number;
|
|
4000
|
+
ebsVolumeIops?: number;
|
|
3858
4001
|
ebsVolumeSize?: number;
|
|
4002
|
+
ebsVolumeThroughput?: number;
|
|
3859
4003
|
ebsVolumeType?: string;
|
|
3860
4004
|
firstOnDemand?: number;
|
|
3861
4005
|
instanceProfileArn?: string;
|
|
@@ -3865,8 +4009,16 @@ export interface JobTaskNewClusterAwsAttributes {
|
|
|
3865
4009
|
export interface JobTaskNewClusterAzureAttributes {
|
|
3866
4010
|
availability?: string;
|
|
3867
4011
|
firstOnDemand?: number;
|
|
4012
|
+
logAnalyticsInfo?: outputs.JobTaskNewClusterAzureAttributesLogAnalyticsInfo;
|
|
3868
4013
|
spotBidMaxPrice?: number;
|
|
3869
4014
|
}
|
|
4015
|
+
export interface JobTaskNewClusterAzureAttributesLogAnalyticsInfo {
|
|
4016
|
+
logAnalyticsPrimaryKey?: string;
|
|
4017
|
+
logAnalyticsWorkspaceId?: string;
|
|
4018
|
+
}
|
|
4019
|
+
export interface JobTaskNewClusterCloneFrom {
|
|
4020
|
+
sourceClusterId: string;
|
|
4021
|
+
}
|
|
3870
4022
|
export interface JobTaskNewClusterClusterLogConf {
|
|
3871
4023
|
dbfs?: outputs.JobTaskNewClusterClusterLogConfDbfs;
|
|
3872
4024
|
s3?: outputs.JobTaskNewClusterClusterLogConfS3;
|
|
@@ -3950,6 +4102,28 @@ export interface JobTaskNewClusterInitScriptVolumes {
|
|
|
3950
4102
|
export interface JobTaskNewClusterInitScriptWorkspace {
|
|
3951
4103
|
destination: string;
|
|
3952
4104
|
}
|
|
4105
|
+
export interface JobTaskNewClusterLibrary {
|
|
4106
|
+
cran?: outputs.JobTaskNewClusterLibraryCran;
|
|
4107
|
+
egg?: string;
|
|
4108
|
+
jar?: string;
|
|
4109
|
+
maven?: outputs.JobTaskNewClusterLibraryMaven;
|
|
4110
|
+
pypi?: outputs.JobTaskNewClusterLibraryPypi;
|
|
4111
|
+
requirements?: string;
|
|
4112
|
+
whl?: string;
|
|
4113
|
+
}
|
|
4114
|
+
export interface JobTaskNewClusterLibraryCran {
|
|
4115
|
+
package: string;
|
|
4116
|
+
repo?: string;
|
|
4117
|
+
}
|
|
4118
|
+
export interface JobTaskNewClusterLibraryMaven {
|
|
4119
|
+
coordinates: string;
|
|
4120
|
+
exclusions?: string[];
|
|
4121
|
+
repo?: string;
|
|
4122
|
+
}
|
|
4123
|
+
export interface JobTaskNewClusterLibraryPypi {
|
|
4124
|
+
package: string;
|
|
4125
|
+
repo?: string;
|
|
4126
|
+
}
|
|
3953
4127
|
export interface JobTaskNewClusterWorkloadType {
|
|
3954
4128
|
clients: outputs.JobTaskNewClusterWorkloadTypeClients;
|
|
3955
4129
|
}
|
|
@@ -4026,6 +4200,8 @@ export interface JobTaskPythonWheelTask {
|
|
|
4026
4200
|
parameters?: string[];
|
|
4027
4201
|
}
|
|
4028
4202
|
export interface JobTaskRunJobTask {
|
|
4203
|
+
dbtCommands?: string[];
|
|
4204
|
+
jarParams?: string[];
|
|
4029
4205
|
/**
|
|
4030
4206
|
* (String) ID of the job
|
|
4031
4207
|
*/
|
|
@@ -4036,6 +4212,21 @@ export interface JobTaskRunJobTask {
|
|
|
4036
4212
|
jobParameters?: {
|
|
4037
4213
|
[key: string]: any;
|
|
4038
4214
|
};
|
|
4215
|
+
notebookParams?: {
|
|
4216
|
+
[key: string]: any;
|
|
4217
|
+
};
|
|
4218
|
+
pipelineParams?: outputs.JobTaskRunJobTaskPipelineParams;
|
|
4219
|
+
pythonNamedParams?: {
|
|
4220
|
+
[key: string]: any;
|
|
4221
|
+
};
|
|
4222
|
+
pythonParams?: string[];
|
|
4223
|
+
sparkSubmitParams?: string[];
|
|
4224
|
+
sqlParams?: {
|
|
4225
|
+
[key: string]: any;
|
|
4226
|
+
};
|
|
4227
|
+
}
|
|
4228
|
+
export interface JobTaskRunJobTaskPipelineParams {
|
|
4229
|
+
fullRefresh?: boolean;
|
|
4039
4230
|
}
|
|
4040
4231
|
export interface JobTaskSparkJarTask {
|
|
4041
4232
|
jarUri?: string;
|
|
@@ -4250,6 +4441,7 @@ export interface JobTrigger {
|
|
|
4250
4441
|
* Indicate whether this trigger 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`.
|
|
4251
4442
|
*/
|
|
4252
4443
|
pauseStatus?: string;
|
|
4444
|
+
table?: outputs.JobTriggerTable;
|
|
4253
4445
|
/**
|
|
4254
4446
|
* configuration block to define a trigger for Table Update events consisting of following attributes:
|
|
4255
4447
|
*/
|
|
@@ -4269,6 +4461,12 @@ export interface JobTriggerFileArrival {
|
|
|
4269
4461
|
*/
|
|
4270
4462
|
waitAfterLastChangeSeconds?: number;
|
|
4271
4463
|
}
|
|
4464
|
+
export interface JobTriggerTable {
|
|
4465
|
+
condition?: string;
|
|
4466
|
+
minTimeBetweenTriggersSeconds?: number;
|
|
4467
|
+
tableNames?: string[];
|
|
4468
|
+
waitAfterLastChangeSeconds?: number;
|
|
4469
|
+
}
|
|
4272
4470
|
export interface JobTriggerTableUpdate {
|
|
4273
4471
|
/**
|
|
4274
4472
|
* The table(s) condition based on which to trigger a job run. Valid values are `ANY_UPDATED` or `ALL_UPDATED`.
|