databricks.getJob
Explore with Pulumi AI
Note If you have a fully automated setup with workspaces created by databricks_mws_workspaces, please make sure to add depends_on attribute in order to prevent default auth: cannot configure default credentials errors.
Retrieves the settings of databricks.Job by name or by id. Complements the feature of the databricks.getJobs data source.
Related Resources
The following resources are used in the same context:
- databricks.getJobs data to get all jobs and their names from a workspace.
- databricks.Job to manage Databricks Jobs to run non-interactive code in a databricks_cluster.
Example Usage
Getting the existing cluster id of specific databricks.Job by name or by id
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Databricks = Pulumi.Databricks;
return await Deployment.RunAsync(() =>
{
var @this = Databricks.GetJob.Invoke(new()
{
JobName = "My job",
});
return new Dictionary<string, object?>
{
["jobNumWorkers"] = @this.Apply(@this => @this.Apply(getJobResult => getJobResult.JobSettings?.Settings?.NewCluster?.NumWorkers)),
};
});
package main
import (
"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
this, err := databricks.LookupJob(ctx, &databricks.LookupJobArgs{
JobName: pulumi.StringRef("My job"),
}, nil)
if err != nil {
return err
}
ctx.Export("jobNumWorkers", this.JobSettings.Settings.NewCluster.NumWorkers)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.DatabricksFunctions;
import com.pulumi.databricks.inputs.GetJobArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var this = DatabricksFunctions.getJob(GetJobArgs.builder()
.jobName("My job")
.build());
ctx.export("jobNumWorkers", this_.jobSettings().settings().newCluster().numWorkers());
}
}
import pulumi
import pulumi_databricks as databricks
this = databricks.get_job(job_name="My job")
pulumi.export("jobNumWorkers", this.job_settings.settings.new_cluster.num_workers)
import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";
const this = databricks.getJob({
jobName: "My job",
});
export const jobNumWorkers = _this.then(_this => _this.jobSettings?.settings?.newCluster?.numWorkers);
variables:
this:
fn::invoke:
Function: databricks:getJob
Arguments:
jobName: My job
outputs:
jobNumWorkers: ${this.jobSettings.settings.newCluster.numWorkers}
Using getJob
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getJob(args: GetJobArgs, opts?: InvokeOptions): Promise<GetJobResult>
function getJobOutput(args: GetJobOutputArgs, opts?: InvokeOptions): Output<GetJobResult>
def get_job(id: Optional[str] = None,
job_id: Optional[str] = None,
job_name: Optional[str] = None,
job_settings: Optional[GetJobJobSettings] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetJobResult
def get_job_output(id: Optional[pulumi.Input[str]] = None,
job_id: Optional[pulumi.Input[str]] = None,
job_name: Optional[pulumi.Input[str]] = None,
job_settings: Optional[pulumi.Input[GetJobJobSettingsArgs]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetJobResult]
func LookupJob(ctx *Context, args *LookupJobArgs, opts ...InvokeOption) (*LookupJobResult, error)
func LookupJobOutput(ctx *Context, args *LookupJobOutputArgs, opts ...InvokeOption) LookupJobResultOutput
> Note: This function is named LookupJob
in the Go SDK.
public static class GetJob
{
public static Task<GetJobResult> InvokeAsync(GetJobArgs args, InvokeOptions? opts = null)
public static Output<GetJobResult> Invoke(GetJobInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: databricks:index/getJob:getJob
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
the id of databricks.Job if the resource was matched by name.
- Job
Id string - Job
Name string - Job
Settings GetJob Job Settings the same fields as in databricks_job.
- Name string
the job name of databricks.Job if the resource was matched by id.
- Id string
the id of databricks.Job if the resource was matched by name.
- Job
Id string - Job
Name string - Job
Settings GetJob Job Settings the same fields as in databricks_job.
- Name string
the job name of databricks.Job if the resource was matched by id.
- id String
the id of databricks.Job if the resource was matched by name.
- job
Id String - job
Name String - job
Settings GetJob Job Settings the same fields as in databricks_job.
- name String
the job name of databricks.Job if the resource was matched by id.
- id string
the id of databricks.Job if the resource was matched by name.
- job
Id string - job
Name string - job
Settings GetJob Job Settings the same fields as in databricks_job.
- name string
the job name of databricks.Job if the resource was matched by id.
- id str
the id of databricks.Job if the resource was matched by name.
- job_
id str - job_
name str - job_
settings GetJob Job Settings the same fields as in databricks_job.
- name str
the job name of databricks.Job if the resource was matched by id.
- id String
the id of databricks.Job if the resource was matched by name.
- job
Id String - job
Name String - job
Settings Property Map the same fields as in databricks_job.
- name String
the job name of databricks.Job if the resource was matched by id.
getJob Result
The following output properties are available:
- Id string
the id of databricks.Job if the resource was matched by name.
- Job
Id string - Job
Name string - Job
Settings GetJob Job Settings the same fields as in databricks_job.
- Name string
the job name of databricks.Job if the resource was matched by id.
- Id string
the id of databricks.Job if the resource was matched by name.
- Job
Id string - Job
Name string - Job
Settings GetJob Job Settings the same fields as in databricks_job.
- Name string
the job name of databricks.Job if the resource was matched by id.
- id String
the id of databricks.Job if the resource was matched by name.
- job
Id String - job
Name String - job
Settings GetJob Job Settings the same fields as in databricks_job.
- name String
the job name of databricks.Job if the resource was matched by id.
- id string
the id of databricks.Job if the resource was matched by name.
- job
Id string - job
Name string - job
Settings GetJob Job Settings the same fields as in databricks_job.
- name string
the job name of databricks.Job if the resource was matched by id.
- id str
the id of databricks.Job if the resource was matched by name.
- job_
id str - job_
name str - job_
settings GetJob Job Settings the same fields as in databricks_job.
- name str
the job name of databricks.Job if the resource was matched by id.
- id String
the id of databricks.Job if the resource was matched by name.
- job
Id String - job
Name String - job
Settings Property Map the same fields as in databricks_job.
- name String
the job name of databricks.Job if the resource was matched by id.
Supporting Types
GetJobJobSettings
- Created
Time int - Creator
User stringName - Job
Id int - Settings
Get
Job Job Settings Settings
- Created
Time int - Creator
User stringName - Job
Id int - Settings
Get
Job Job Settings Settings
- created
Time Integer - creator
User StringName - job
Id Integer - settings
Get
Job Job Settings Settings
- created
Time number - creator
User stringName - job
Id number - settings
Get
Job Job Settings Settings
- created
Time Number - creator
User StringName - job
Id Number - settings Property Map
GetJobJobSettingsSettings
- Format string
- Continuous
Get
Job Job Settings Settings Continuous - Dbt
Task GetJob Job Settings Settings Dbt Task - Email
Notifications GetJob Job Settings Settings Email Notifications - Existing
Cluster stringId - Git
Source GetJob Job Settings Settings Git Source - Job
Clusters List<GetJob Job Settings Settings Job Cluster> - Libraries
List<Get
Job Job Settings Settings Library> - Max
Concurrent intRuns - Max
Retries int - Min
Retry intInterval Millis - Name string
the job name of databricks.Job if the resource was matched by id.
- New
Cluster GetJob Job Settings Settings New Cluster - Notebook
Task GetJob Job Settings Settings Notebook Task - Notification
Settings GetJob Job Settings Settings Notification Settings - Pipeline
Task GetJob Job Settings Settings Pipeline Task - Python
Wheel GetTask Job Job Settings Settings Python Wheel Task - Queue
Get
Job Job Settings Settings Queue - Retry
On boolTimeout - Schedule
Get
Job Job Settings Settings Schedule - Spark
Jar GetTask Job Job Settings Settings Spark Jar Task - Spark
Python GetTask Job Job Settings Settings Spark Python Task - Spark
Submit GetTask Job Job Settings Settings Spark Submit Task - Dictionary<string, object>
- Tasks
List<Get
Job Job Settings Settings Task> - Timeout
Seconds int - Trigger
Get
Job Job Settings Settings Trigger - Webhook
Notifications GetJob Job Settings Settings Webhook Notifications
- Format string
- Continuous
Get
Job Job Settings Settings Continuous - Dbt
Task GetJob Job Settings Settings Dbt Task - Email
Notifications GetJob Job Settings Settings Email Notifications - Existing
Cluster stringId - Git
Source GetJob Job Settings Settings Git Source - Job
Clusters []GetJob Job Settings Settings Job Cluster - Libraries
[]Get
Job Job Settings Settings Library - Max
Concurrent intRuns - Max
Retries int - Min
Retry intInterval Millis - Name string
the job name of databricks.Job if the resource was matched by id.
- New
Cluster GetJob Job Settings Settings New Cluster - Notebook
Task GetJob Job Settings Settings Notebook Task - Notification
Settings GetJob Job Settings Settings Notification Settings - Pipeline
Task GetJob Job Settings Settings Pipeline Task - Python
Wheel GetTask Job Job Settings Settings Python Wheel Task - Queue
Get
Job Job Settings Settings Queue - Retry
On boolTimeout - Schedule
Get
Job Job Settings Settings Schedule - Spark
Jar GetTask Job Job Settings Settings Spark Jar Task - Spark
Python GetTask Job Job Settings Settings Spark Python Task - Spark
Submit GetTask Job Job Settings Settings Spark Submit Task - map[string]interface{}
- Tasks
[]Get
Job Job Settings Settings Task - Timeout
Seconds int - Trigger
Get
Job Job Settings Settings Trigger - Webhook
Notifications GetJob Job Settings Settings Webhook Notifications
- format String
- continuous
Get
Job Job Settings Settings Continuous - dbt
Task GetJob Job Settings Settings Dbt Task - email
Notifications GetJob Job Settings Settings Email Notifications - existing
Cluster StringId - git
Source GetJob Job Settings Settings Git Source - job
Clusters List<GetJob Job Settings Settings Job Cluster> - libraries
List<Get
Job Job Settings Settings Library> - max
Concurrent IntegerRuns - max
Retries Integer - min
Retry IntegerInterval Millis - name String
the job name of databricks.Job if the resource was matched by id.
- new
Cluster GetJob Job Settings Settings New Cluster - notebook
Task GetJob Job Settings Settings Notebook Task - notification
Settings GetJob Job Settings Settings Notification Settings - pipeline
Task GetJob Job Settings Settings Pipeline Task - python
Wheel GetTask Job Job Settings Settings Python Wheel Task - queue
Get
Job Job Settings Settings Queue - retry
On BooleanTimeout - schedule
Get
Job Job Settings Settings Schedule - spark
Jar GetTask Job Job Settings Settings Spark Jar Task - spark
Python GetTask Job Job Settings Settings Spark Python Task - spark
Submit GetTask Job Job Settings Settings Spark Submit Task - Map<String,Object>
- tasks
List<Get
Job Job Settings Settings Task> - timeout
Seconds Integer - trigger
Get
Job Job Settings Settings Trigger - webhook
Notifications GetJob Job Settings Settings Webhook Notifications
- format string
- continuous
Get
Job Job Settings Settings Continuous - dbt
Task GetJob Job Settings Settings Dbt Task - email
Notifications GetJob Job Settings Settings Email Notifications - existing
Cluster stringId - git
Source GetJob Job Settings Settings Git Source - job
Clusters GetJob Job Settings Settings Job Cluster[] - libraries
Get
Job Job Settings Settings Library[] - max
Concurrent numberRuns - max
Retries number - min
Retry numberInterval Millis - name string
the job name of databricks.Job if the resource was matched by id.
- new
Cluster GetJob Job Settings Settings New Cluster - notebook
Task GetJob Job Settings Settings Notebook Task - notification
Settings GetJob Job Settings Settings Notification Settings - pipeline
Task GetJob Job Settings Settings Pipeline Task - python
Wheel GetTask Job Job Settings Settings Python Wheel Task - queue
Get
Job Job Settings Settings Queue - retry
On booleanTimeout - schedule
Get
Job Job Settings Settings Schedule - spark
Jar GetTask Job Job Settings Settings Spark Jar Task - spark
Python GetTask Job Job Settings Settings Spark Python Task - spark
Submit GetTask Job Job Settings Settings Spark Submit Task - {[key: string]: any}
- tasks
Get
Job Job Settings Settings Task[] - timeout
Seconds number - trigger
Get
Job Job Settings Settings Trigger - webhook
Notifications GetJob Job Settings Settings Webhook Notifications
- format str
- continuous
Get
Job Job Settings Settings Continuous - dbt_
task GetJob Job Settings Settings Dbt Task - email_
notifications GetJob Job Settings Settings Email Notifications - existing_
cluster_ strid - git_
source GetJob Job Settings Settings Git Source - job_
clusters Sequence[GetJob Job Settings Settings Job Cluster] - libraries
Sequence[Get
Job Job Settings Settings Library] - max_
concurrent_ intruns - max_
retries int - min_
retry_ intinterval_ millis - name str
the job name of databricks.Job if the resource was matched by id.
- new_
cluster GetJob Job Settings Settings New Cluster - notebook_
task GetJob Job Settings Settings Notebook Task - notification_
settings GetJob Job Settings Settings Notification Settings - pipeline_
task GetJob Job Settings Settings Pipeline Task - python_
wheel_ Gettask Job Job Settings Settings Python Wheel Task - queue
Get
Job Job Settings Settings Queue - retry_
on_ booltimeout - schedule
Get
Job Job Settings Settings Schedule - spark_
jar_ Gettask Job Job Settings Settings Spark Jar Task - spark_
python_ Gettask Job Job Settings Settings Spark Python Task - spark_
submit_ Gettask Job Job Settings Settings Spark Submit Task - Mapping[str, Any]
- tasks
Sequence[Get
Job Job Settings Settings Task] - timeout_
seconds int - trigger
Get
Job Job Settings Settings Trigger - webhook_
notifications GetJob Job Settings Settings Webhook Notifications
- format String
- continuous Property Map
- dbt
Task Property Map - email
Notifications Property Map - existing
Cluster StringId - git
Source Property Map - job
Clusters List<Property Map> - libraries List<Property Map>
- max
Concurrent NumberRuns - max
Retries Number - min
Retry NumberInterval Millis - name String
the job name of databricks.Job if the resource was matched by id.
- new
Cluster Property Map - notebook
Task Property Map - notification
Settings Property Map - pipeline
Task Property Map - python
Wheel Property MapTask - queue Property Map
- retry
On BooleanTimeout - schedule Property Map
- spark
Jar Property MapTask - spark
Python Property MapTask - spark
Submit Property MapTask - Map<Any>
- tasks List<Property Map>
- timeout
Seconds Number - trigger Property Map
- webhook
Notifications Property Map
GetJobJobSettingsSettingsContinuous
- Pause
Status string
- Pause
Status string
- pause
Status String
- pause
Status string
- pause_
status str
- pause
Status String
GetJobJobSettingsSettingsDbtTask
- Commands List<string>
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Warehouse
Id string
- Commands []string
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Warehouse
Id string
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- warehouse
Id String
- commands string[]
- catalog string
- profiles
Directory string - project
Directory string - schema string
- warehouse
Id string
- commands Sequence[str]
- catalog str
- profiles_
directory str - project_
directory str - schema str
- warehouse_
id str
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- warehouse
Id String
GetJobJobSettingsSettingsEmailNotifications
- Alert
On boolLast Attempt - No
Alert boolFor Skipped Runs - On
Failures List<string> - On
Starts List<string> - On
Successes List<string>
- Alert
On boolLast Attempt - No
Alert boolFor Skipped Runs - On
Failures []string - On
Starts []string - On
Successes []string
- alert
On BooleanLast Attempt - no
Alert BooleanFor Skipped Runs - on
Failures List<String> - on
Starts List<String> - on
Successes List<String>
- alert
On booleanLast Attempt - no
Alert booleanFor Skipped Runs - on
Failures string[] - on
Starts string[] - on
Successes string[]
- alert_
on_ boollast_ attempt - no_
alert_ boolfor_ skipped_ runs - on_
failures Sequence[str] - on_
starts Sequence[str] - on_
successes Sequence[str]
- alert
On BooleanLast Attempt - no
Alert BooleanFor Skipped Runs - on
Failures List<String> - on
Starts List<String> - on
Successes List<String>
GetJobJobSettingsSettingsGitSource
GetJobJobSettingsSettingsJobCluster
GetJobJobSettingsSettingsJobClusterNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Spark
Version string - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings Job Cluster New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings Job Cluster New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings Job Cluster New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings Job Cluster New Cluster Cluster Log Conf - Cluster
Mount List<GetInfos Job Job Settings Settings Job Cluster New Cluster Cluster Mount Info> - Cluster
Name string - Dictionary<string, object>
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings Job Cluster New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings Job Cluster New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts List<GetJob Job Settings Settings Job Cluster New Cluster Init Script> - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf Dictionary<string, object> - Spark
Env Dictionary<string, object>Vars - Ssh
Public List<string>Keys - Workload
Type GetJob Job Settings Settings Job Cluster New Cluster Workload Type
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Spark
Version string - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings Job Cluster New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings Job Cluster New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings Job Cluster New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings Job Cluster New Cluster Cluster Log Conf - Cluster
Mount []GetInfos Job Job Settings Settings Job Cluster New Cluster Cluster Mount Info - Cluster
Name string - map[string]interface{}
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings Job Cluster New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings Job Cluster New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts []GetJob Job Settings Settings Job Cluster New Cluster Init Script - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf map[string]interface{} - Spark
Env map[string]interface{}Vars - Ssh
Public []stringKeys - Workload
Type GetJob Job Settings Settings Job Cluster New Cluster Workload Type
- driver
Instance StringPool Id - driver
Node StringType Id - enable
Elastic BooleanDisk - enable
Local BooleanDisk Encryption - node
Type StringId - num
Workers Integer - spark
Version String - apply
Policy BooleanDefault Values - autoscale
Get
Job Job Settings Settings Job Cluster New Cluster Autoscale - autotermination
Minutes Integer - aws
Attributes GetJob Job Settings Settings Job Cluster New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings Job Cluster New Cluster Azure Attributes - cluster
Id String - cluster
Log GetConf Job Job Settings Settings Job Cluster New Cluster Cluster Log Conf - cluster
Mount List<GetInfos Job Job Settings Settings Job Cluster New Cluster Cluster Mount Info> - cluster
Name String - Map<String,Object>
- data
Security StringMode - docker
Image GetJob Job Settings Settings Job Cluster New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings Job Cluster New Cluster Gcp Attributes - idempotency
Token String - init
Scripts List<GetJob Job Settings Settings Job Cluster New Cluster Init Script> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<String,Object> - spark
Env Map<String,Object>Vars - ssh
Public List<String>Keys - workload
Type GetJob Job Settings Settings Job Cluster New Cluster Workload Type
- driver
Instance stringPool Id - driver
Node stringType Id - enable
Elastic booleanDisk - enable
Local booleanDisk Encryption - node
Type stringId - num
Workers number - spark
Version string - apply
Policy booleanDefault Values - autoscale
Get
Job Job Settings Settings Job Cluster New Cluster Autoscale - autotermination
Minutes number - aws
Attributes GetJob Job Settings Settings Job Cluster New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings Job Cluster New Cluster Azure Attributes - cluster
Id string - cluster
Log GetConf Job Job Settings Settings Job Cluster New Cluster Cluster Log Conf - cluster
Mount GetInfos Job Job Settings Settings Job Cluster New Cluster Cluster Mount Info[] - cluster
Name string - {[key: string]: any}
- data
Security stringMode - docker
Image GetJob Job Settings Settings Job Cluster New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings Job Cluster New Cluster Gcp Attributes - idempotency
Token string - init
Scripts GetJob Job Settings Settings Job Cluster New Cluster Init Script[] - instance
Pool stringId - policy
Id string - runtime
Engine string - single
User stringName - spark
Conf {[key: string]: any} - spark
Env {[key: string]: any}Vars - ssh
Public string[]Keys - workload
Type GetJob Job Settings Settings Job Cluster New Cluster Workload Type
- driver_
instance_ strpool_ id - driver_
node_ strtype_ id - enable_
elastic_ booldisk - enable_
local_ booldisk_ encryption - node_
type_ strid - num_
workers int - spark_
version str - apply_
policy_ booldefault_ values - autoscale
Get
Job Job Settings Settings Job Cluster New Cluster Autoscale - autotermination_
minutes int - aws_
attributes GetJob Job Settings Settings Job Cluster New Cluster Aws Attributes - azure_
attributes GetJob Job Settings Settings Job Cluster New Cluster Azure Attributes - cluster_
id str - cluster_
log_ Getconf Job Job Settings Settings Job Cluster New Cluster Cluster Log Conf - cluster_
mount_ Sequence[Getinfos Job Job Settings Settings Job Cluster New Cluster Cluster Mount Info] - cluster_
name str - Mapping[str, Any]
- data_
security_ strmode - docker_
image GetJob Job Settings Settings Job Cluster New Cluster Docker Image - gcp_
attributes GetJob Job Settings Settings Job Cluster New Cluster Gcp Attributes - idempotency_
token str - init_
scripts Sequence[GetJob Job Settings Settings Job Cluster New Cluster Init Script] - instance_
pool_ strid - policy_
id str - runtime_
engine str - single_
user_ strname - spark_
conf Mapping[str, Any] - spark_
env_ Mapping[str, Any]vars - ssh_
public_ Sequence[str]keys - workload_
type GetJob Job Settings Settings Job Cluster New Cluster Workload Type
- driver
Instance StringPool Id - driver
Node StringType Id - enable
Elastic BooleanDisk - enable
Local BooleanDisk Encryption - node
Type StringId - num
Workers Number - spark
Version String - apply
Policy BooleanDefault Values - autoscale Property Map
- autotermination
Minutes Number - aws
Attributes Property Map - azure
Attributes Property Map - cluster
Id String - cluster
Log Property MapConf - cluster
Mount List<Property Map>Infos - cluster
Name String - Map<Any>
- data
Security StringMode - docker
Image Property Map - gcp
Attributes Property Map - idempotency
Token String - init
Scripts List<Property Map> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<Any> - spark
Env Map<Any>Vars - ssh
Public List<String>Keys - workload
Type Property Map
GetJobJobSettingsSettingsJobClusterNewClusterAutoscale
- Max
Workers int - Min
Workers int
- Max
Workers int - Min
Workers int
- max
Workers Integer - min
Workers Integer
- max
Workers number - min
Workers number
- max_
workers int - min_
workers int
- max
Workers Number - min
Workers Number
GetJobJobSettingsSettingsJobClusterNewClusterAwsAttributes
- Availability string
- Ebs
Volume intCount - Ebs
Volume intSize - Ebs
Volume stringType - First
On intDemand - Instance
Profile stringArn - Spot
Bid intPrice Percent - Zone
Id string
- Availability string
- Ebs
Volume intCount - Ebs
Volume intSize - Ebs
Volume stringType - First
On intDemand - Instance
Profile stringArn - Spot
Bid intPrice Percent - Zone
Id string
- availability String
- ebs
Volume IntegerCount - ebs
Volume IntegerSize - ebs
Volume StringType - first
On IntegerDemand - instance
Profile StringArn - spot
Bid IntegerPrice Percent - zone
Id String
- availability string
- ebs
Volume numberCount - ebs
Volume numberSize - ebs
Volume stringType - first
On numberDemand - instance
Profile stringArn - spot
Bid numberPrice Percent - zone
Id string
- availability str
- ebs_
volume_ intcount - ebs_
volume_ intsize - ebs_
volume_ strtype - first_
on_ intdemand - instance_
profile_ strarn - spot_
bid_ intprice_ percent - zone_
id str
- availability String
- ebs
Volume NumberCount - ebs
Volume NumberSize - ebs
Volume StringType - first
On NumberDemand - instance
Profile StringArn - spot
Bid NumberPrice Percent - zone
Id String
GetJobJobSettingsSettingsJobClusterNewClusterAzureAttributes
- Availability string
- First
On intDemand - Spot
Bid doubleMax Price
- Availability string
- First
On intDemand - Spot
Bid float64Max Price
- availability String
- first
On IntegerDemand - spot
Bid DoubleMax Price
- availability string
- first
On numberDemand - spot
Bid numberMax Price
- availability str
- first_
on_ intdemand - spot_
bid_ floatmax_ price
- availability String
- first
On NumberDemand - spot
Bid NumberMax Price
GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConf
GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
- destination string
- canned
Acl string - enable
Encryption boolean - encryption
Type string - endpoint string
- kms
Key string - region string
- destination str
- canned_
acl str - enable_
encryption bool - encryption_
type str - endpoint str
- kms_
key str - region str
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo
GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo
- Server
Address string - Mount
Options string
- Server
Address string - Mount
Options string
- server
Address String - mount
Options String
- server
Address string - mount
Options string
- server_
address str - mount_
options str
- server
Address String - mount
Options String
GetJobJobSettingsSettingsJobClusterNewClusterDockerImage
- url String
- basic
Auth Property Map
GetJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuth
GetJobJobSettingsSettingsJobClusterNewClusterGcpAttributes
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - use
Preemptible BooleanExecutors - zone
Id String
GetJobJobSettingsSettingsJobClusterNewClusterInitScript
- Abfss
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings Job Cluster New Cluster Init Script File - Gcs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings Job Cluster New Cluster Init Script S3 - Workspace
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Workspace
- Abfss
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings Job Cluster New Cluster Init Script File - Gcs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings Job Cluster New Cluster Init Script S3 - Workspace
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Job Cluster New Cluster Init Script File - gcs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Job Cluster New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Job Cluster New Cluster Init Script File - gcs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Job Cluster New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Job Cluster New Cluster Init Script File - gcs
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Job Cluster New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Workspace
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptAbfss
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptFile
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptGcs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptS3
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
- destination string
- canned
Acl string - enable
Encryption boolean - encryption
Type string - endpoint string
- kms
Key string - region string
- destination str
- canned_
acl str - enable_
encryption bool - encryption_
type str - endpoint str
- kms_
key str - region str
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptWorkspace
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsJobClusterNewClusterWorkloadType
GetJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClients
GetJobJobSettingsSettingsLibrary
- cran Property Map
- egg String
- jar String
- maven Property Map
- pypi Property Map
- whl String
GetJobJobSettingsSettingsLibraryCran
GetJobJobSettingsSettingsLibraryMaven
- Coordinates string
- Exclusions List<string>
- Repo string
- Coordinates string
- Exclusions []string
- Repo string
- coordinates String
- exclusions List<String>
- repo String
- coordinates string
- exclusions string[]
- repo string
- coordinates str
- exclusions Sequence[str]
- repo str
- coordinates String
- exclusions List<String>
- repo String
GetJobJobSettingsSettingsLibraryPypi
GetJobJobSettingsSettingsNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Spark
Version string - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings New Cluster Cluster Log Conf - Cluster
Mount List<GetInfos Job Job Settings Settings New Cluster Cluster Mount Info> - Cluster
Name string - Dictionary<string, object>
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts List<GetJob Job Settings Settings New Cluster Init Script> - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf Dictionary<string, object> - Spark
Env Dictionary<string, object>Vars - Ssh
Public List<string>Keys - Workload
Type GetJob Job Settings Settings New Cluster Workload Type
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Spark
Version string - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings New Cluster Cluster Log Conf - Cluster
Mount []GetInfos Job Job Settings Settings New Cluster Cluster Mount Info - Cluster
Name string - map[string]interface{}
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts []GetJob Job Settings Settings New Cluster Init Script - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf map[string]interface{} - Spark
Env map[string]interface{}Vars - Ssh
Public []stringKeys - Workload
Type GetJob Job Settings Settings New Cluster Workload Type
- driver
Instance StringPool Id - driver
Node StringType Id - enable
Elastic BooleanDisk - enable
Local BooleanDisk Encryption - node
Type StringId - num
Workers Integer - spark
Version String - apply
Policy BooleanDefault Values - autoscale
Get
Job Job Settings Settings New Cluster Autoscale - autotermination
Minutes Integer - aws
Attributes GetJob Job Settings Settings New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings New Cluster Azure Attributes - cluster
Id String - cluster
Log GetConf Job Job Settings Settings New Cluster Cluster Log Conf - cluster
Mount List<GetInfos Job Job Settings Settings New Cluster Cluster Mount Info> - cluster
Name String - Map<String,Object>
- data
Security StringMode - docker
Image GetJob Job Settings Settings New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings New Cluster Gcp Attributes - idempotency
Token String - init
Scripts List<GetJob Job Settings Settings New Cluster Init Script> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<String,Object> - spark
Env Map<String,Object>Vars - ssh
Public List<String>Keys - workload
Type GetJob Job Settings Settings New Cluster Workload Type
- driver
Instance stringPool Id - driver
Node stringType Id - enable
Elastic booleanDisk - enable
Local booleanDisk Encryption - node
Type stringId - num
Workers number - spark
Version string - apply
Policy booleanDefault Values - autoscale
Get
Job Job Settings Settings New Cluster Autoscale - autotermination
Minutes number - aws
Attributes GetJob Job Settings Settings New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings New Cluster Azure Attributes - cluster
Id string - cluster
Log GetConf Job Job Settings Settings New Cluster Cluster Log Conf - cluster
Mount GetInfos Job Job Settings Settings New Cluster Cluster Mount Info[] - cluster
Name string - {[key: string]: any}
- data
Security stringMode - docker
Image GetJob Job Settings Settings New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings New Cluster Gcp Attributes - idempotency
Token string - init
Scripts GetJob Job Settings Settings New Cluster Init Script[] - instance
Pool stringId - policy
Id string - runtime
Engine string - single
User stringName - spark
Conf {[key: string]: any} - spark
Env {[key: string]: any}Vars - ssh
Public string[]Keys - workload
Type GetJob Job Settings Settings New Cluster Workload Type
- driver_
instance_ strpool_ id - driver_
node_ strtype_ id - enable_
elastic_ booldisk - enable_
local_ booldisk_ encryption - node_
type_ strid - num_
workers int - spark_
version str - apply_
policy_ booldefault_ values - autoscale
Get
Job Job Settings Settings New Cluster Autoscale - autotermination_
minutes int - aws_
attributes GetJob Job Settings Settings New Cluster Aws Attributes - azure_
attributes GetJob Job Settings Settings New Cluster Azure Attributes - cluster_
id str - cluster_
log_ Getconf Job Job Settings Settings New Cluster Cluster Log Conf - cluster_
mount_ Sequence[Getinfos Job Job Settings Settings New Cluster Cluster Mount Info] - cluster_
name str - Mapping[str, Any]
- data_
security_ strmode - docker_
image GetJob Job Settings Settings New Cluster Docker Image - gcp_
attributes GetJob Job Settings Settings New Cluster Gcp Attributes - idempotency_
token str - init_
scripts Sequence[GetJob Job Settings Settings New Cluster Init Script] - instance_
pool_ strid - policy_
id str - runtime_
engine str - single_
user_ strname - spark_
conf Mapping[str, Any] - spark_
env_ Mapping[str, Any]vars - ssh_
public_ Sequence[str]keys - workload_
type GetJob Job Settings Settings New Cluster Workload Type
- driver
Instance StringPool Id - driver
Node StringType Id - enable
Elastic BooleanDisk - enable
Local BooleanDisk Encryption - node
Type StringId - num
Workers Number - spark
Version String - apply
Policy BooleanDefault Values - autoscale Property Map
- autotermination
Minutes Number - aws
Attributes Property Map - azure
Attributes Property Map - cluster
Id String - cluster
Log Property MapConf - cluster
Mount List<Property Map>Infos - cluster
Name String - Map<Any>
- data
Security StringMode - docker
Image Property Map - gcp
Attributes Property Map - idempotency
Token String - init
Scripts List<Property Map> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<Any> - spark
Env Map<Any>Vars - ssh
Public List<String>Keys - workload
Type Property Map
GetJobJobSettingsSettingsNewClusterAutoscale
- Max
Workers int - Min
Workers int
- Max
Workers int - Min
Workers int
- max
Workers Integer - min
Workers Integer
- max
Workers number - min
Workers number
- max_
workers int - min_
workers int
- max
Workers Number - min
Workers Number
GetJobJobSettingsSettingsNewClusterAwsAttributes
- Availability string
- Ebs
Volume intCount - Ebs
Volume intSize - Ebs
Volume stringType - First
On intDemand - Instance
Profile stringArn - Spot
Bid intPrice Percent - Zone
Id string
- Availability string
- Ebs
Volume intCount - Ebs
Volume intSize - Ebs
Volume stringType - First
On intDemand - Instance
Profile stringArn - Spot
Bid intPrice Percent - Zone
Id string
- availability String
- ebs
Volume IntegerCount - ebs
Volume IntegerSize - ebs
Volume StringType - first
On IntegerDemand - instance
Profile StringArn - spot
Bid IntegerPrice Percent - zone
Id String
- availability string
- ebs
Volume numberCount - ebs
Volume numberSize - ebs
Volume stringType - first
On numberDemand - instance
Profile stringArn - spot
Bid numberPrice Percent - zone
Id string
- availability str
- ebs_
volume_ intcount - ebs_
volume_ intsize - ebs_
volume_ strtype - first_
on_ intdemand - instance_
profile_ strarn - spot_
bid_ intprice_ percent - zone_
id str
- availability String
- ebs
Volume NumberCount - ebs
Volume NumberSize - ebs
Volume StringType - first
On NumberDemand - instance
Profile StringArn - spot
Bid NumberPrice Percent - zone
Id String
GetJobJobSettingsSettingsNewClusterAzureAttributes
- Availability string
- First
On intDemand - Spot
Bid doubleMax Price
- Availability string
- First
On intDemand - Spot
Bid float64Max Price
- availability String
- first
On IntegerDemand - spot
Bid DoubleMax Price
- availability string
- first
On numberDemand - spot
Bid numberMax Price
- availability str
- first_
on_ intdemand - spot_
bid_ floatmax_ price
- availability String
- first
On NumberDemand - spot
Bid NumberMax Price
GetJobJobSettingsSettingsNewClusterClusterLogConf
GetJobJobSettingsSettingsNewClusterClusterLogConfDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterClusterLogConfS3
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
- destination string
- canned
Acl string - enable
Encryption boolean - encryption
Type string - endpoint string
- kms
Key string - region string
- destination str
- canned_
acl str - enable_
encryption bool - encryption_
type str - endpoint str
- kms_
key str - region str
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
GetJobJobSettingsSettingsNewClusterClusterMountInfo
GetJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfo
- Server
Address string - Mount
Options string
- Server
Address string - Mount
Options string
- server
Address String - mount
Options String
- server
Address string - mount
Options string
- server_
address str - mount_
options str
- server
Address String - mount
Options String
GetJobJobSettingsSettingsNewClusterDockerImage
- url String
- basic
Auth Property Map
GetJobJobSettingsSettingsNewClusterDockerImageBasicAuth
GetJobJobSettingsSettingsNewClusterGcpAttributes
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - use
Preemptible BooleanExecutors - zone
Id String
GetJobJobSettingsSettingsNewClusterInitScript
- Abfss
Get
Job Job Settings Settings New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings New Cluster Init Script File - Gcs
Get
Job Job Settings Settings New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings New Cluster Init Script S3 - Workspace
Get
Job Job Settings Settings New Cluster Init Script Workspace
- Abfss
Get
Job Job Settings Settings New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings New Cluster Init Script File - Gcs
Get
Job Job Settings Settings New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings New Cluster Init Script S3 - Workspace
Get
Job Job Settings Settings New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings New Cluster Init Script File - gcs
Get
Job Job Settings Settings New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings New Cluster Init Script File - gcs
Get
Job Job Settings Settings New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings New Cluster Init Script File - gcs
Get
Job Job Settings Settings New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings New Cluster Init Script Workspace
GetJobJobSettingsSettingsNewClusterInitScriptAbfss
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterInitScriptDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterInitScriptFile
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterInitScriptGcs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterInitScriptS3
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
- destination string
- canned
Acl string - enable
Encryption boolean - encryption
Type string - endpoint string
- kms
Key string - region string
- destination str
- canned_
acl str - enable_
encryption bool - encryption_
type str - endpoint str
- kms_
key str - region str
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
GetJobJobSettingsSettingsNewClusterInitScriptWorkspace
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterWorkloadType
GetJobJobSettingsSettingsNewClusterWorkloadTypeClients
GetJobJobSettingsSettingsNotebookTask
- Notebook
Path string - Base
Parameters Dictionary<string, object> - Source string
- Notebook
Path string - Base
Parameters map[string]interface{} - Source string
- notebook
Path String - base
Parameters Map<String,Object> - source String
- notebook
Path string - base
Parameters {[key: string]: any} - source string
- notebook_
path str - base_
parameters Mapping[str, Any] - source str
- notebook
Path String - base
Parameters Map<Any> - source String
GetJobJobSettingsSettingsNotificationSettings
- no
Alert BooleanFor Canceled Runs - no
Alert BooleanFor Skipped Runs
- no
Alert booleanFor Canceled Runs - no
Alert booleanFor Skipped Runs
- no
Alert BooleanFor Canceled Runs - no
Alert BooleanFor Skipped Runs
GetJobJobSettingsSettingsPipelineTask
- Pipeline
Id string
- Pipeline
Id string
- pipeline
Id String
- pipeline
Id string
- pipeline_
id str
- pipeline
Id String
GetJobJobSettingsSettingsPythonWheelTask
- Entry
Point string - Named
Parameters Dictionary<string, object> - Package
Name string - Parameters List<string>
- Entry
Point string - Named
Parameters map[string]interface{} - Package
Name string - Parameters []string
- entry
Point String - named
Parameters Map<String,Object> - package
Name String - parameters List<String>
- entry
Point string - named
Parameters {[key: string]: any} - package
Name string - parameters string[]
- entry_
point str - named_
parameters Mapping[str, Any] - package_
name str - parameters Sequence[str]
- entry
Point String - named
Parameters Map<Any> - package
Name String - parameters List<String>
GetJobJobSettingsSettingsSchedule
- Pause
Status string - Quartz
Cron stringExpression - Timezone
Id string
- Pause
Status string - Quartz
Cron stringExpression - Timezone
Id string
- pause
Status String - quartz
Cron StringExpression - timezone
Id String
- pause
Status string - quartz
Cron stringExpression - timezone
Id string
- pause_
status str - quartz_
cron_ strexpression - timezone_
id str
- pause
Status String - quartz
Cron StringExpression - timezone
Id String
GetJobJobSettingsSettingsSparkJarTask
- Jar
Uri string - Main
Class stringName - Parameters List<string>
- Jar
Uri string - Main
Class stringName - Parameters []string
- jar
Uri String - main
Class StringName - parameters List<String>
- jar
Uri string - main
Class stringName - parameters string[]
- jar_
uri str - main_
class_ strname - parameters Sequence[str]
- jar
Uri String - main
Class StringName - parameters List<String>
GetJobJobSettingsSettingsSparkPythonTask
- Python
File string - Parameters List<string>
- Source string
- Python
File string - Parameters []string
- Source string
- python
File String - parameters List<String>
- source String
- python
File string - parameters string[]
- source string
- python_
file str - parameters Sequence[str]
- source str
- python
File String - parameters List<String>
- source String
GetJobJobSettingsSettingsSparkSubmitTask
- Parameters List<string>
- Parameters []string
- parameters List<String>
- parameters string[]
- parameters Sequence[str]
- parameters List<String>
GetJobJobSettingsSettingsTask
- Retry
On boolTimeout - Dbt
Task GetJob Job Settings Settings Task Dbt Task - Depends
Ons List<GetJob Job Settings Settings Task Depends On> - Description string
- Email
Notifications GetJob Job Settings Settings Task Email Notifications - Existing
Cluster stringId - Job
Cluster stringKey - Libraries
List<Get
Job Job Settings Settings Task Library> - Max
Retries int - Min
Retry intInterval Millis - New
Cluster GetJob Job Settings Settings Task New Cluster - Notebook
Task GetJob Job Settings Settings Task Notebook Task - Pipeline
Task GetJob Job Settings Settings Task Pipeline Task - Python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - Run
If string - Spark
Jar GetTask Job Job Settings Settings Task Spark Jar Task - Spark
Python GetTask Job Job Settings Settings Task Spark Python Task - Spark
Submit GetTask Job Job Settings Settings Task Spark Submit Task - Sql
Task GetJob Job Settings Settings Task Sql Task - Task
Key string - Timeout
Seconds int
- Retry
On boolTimeout - Dbt
Task GetJob Job Settings Settings Task Dbt Task - Depends
Ons []GetJob Job Settings Settings Task Depends On - Description string
- Email
Notifications GetJob Job Settings Settings Task Email Notifications - Existing
Cluster stringId - Job
Cluster stringKey - Libraries
[]Get
Job Job Settings Settings Task Library - Max
Retries int - Min
Retry intInterval Millis - New
Cluster GetJob Job Settings Settings Task New Cluster - Notebook
Task GetJob Job Settings Settings Task Notebook Task - Pipeline
Task GetJob Job Settings Settings Task Pipeline Task - Python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - Run
If string - Spark
Jar GetTask Job Job Settings Settings Task Spark Jar Task - Spark
Python GetTask Job Job Settings Settings Task Spark Python Task - Spark
Submit GetTask Job Job Settings Settings Task Spark Submit Task - Sql
Task GetJob Job Settings Settings Task Sql Task - Task
Key string - Timeout
Seconds int
- retry
On BooleanTimeout - dbt
Task GetJob Job Settings Settings Task Dbt Task - depends
Ons List<GetJob Job Settings Settings Task Depends On> - description String
- email
Notifications GetJob Job Settings Settings Task Email Notifications - existing
Cluster StringId - job
Cluster StringKey - libraries
List<Get
Job Job Settings Settings Task Library> - max
Retries Integer - min
Retry IntegerInterval Millis - new
Cluster GetJob Job Settings Settings Task New Cluster - notebook
Task GetJob Job Settings Settings Task Notebook Task - pipeline
Task GetJob Job Settings Settings Task Pipeline Task - python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - run
If String - spark
Jar GetTask Job Job Settings Settings Task Spark Jar Task - spark
Python GetTask Job Job Settings Settings Task Spark Python Task - spark
Submit GetTask Job Job Settings Settings Task Spark Submit Task - sql
Task GetJob Job Settings Settings Task Sql Task - task
Key String - timeout
Seconds Integer
- retry
On booleanTimeout - dbt
Task GetJob Job Settings Settings Task Dbt Task - depends
Ons GetJob Job Settings Settings Task Depends On[] - description string
- email
Notifications GetJob Job Settings Settings Task Email Notifications - existing
Cluster stringId - job
Cluster stringKey - libraries
Get
Job Job Settings Settings Task Library[] - max
Retries number - min
Retry numberInterval Millis - new
Cluster GetJob Job Settings Settings Task New Cluster - notebook
Task GetJob Job Settings Settings Task Notebook Task - pipeline
Task GetJob Job Settings Settings Task Pipeline Task - python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - run
If string - spark
Jar GetTask Job Job Settings Settings Task Spark Jar Task - spark
Python GetTask Job Job Settings Settings Task Spark Python Task - spark
Submit GetTask Job Job Settings Settings Task Spark Submit Task - sql
Task GetJob Job Settings Settings Task Sql Task - task
Key string - timeout
Seconds number
- retry_
on_ booltimeout - dbt_
task GetJob Job Settings Settings Task Dbt Task - depends_
ons Sequence[GetJob Job Settings Settings Task Depends On] - description str
- email_
notifications GetJob Job Settings Settings Task Email Notifications - existing_
cluster_ strid - job_
cluster_ strkey - libraries
Sequence[Get
Job Job Settings Settings Task Library] - max_
retries int - min_
retry_ intinterval_ millis - new_
cluster GetJob Job Settings Settings Task New Cluster - notebook_
task GetJob Job Settings Settings Task Notebook Task - pipeline_
task GetJob Job Settings Settings Task Pipeline Task - python_
wheel_ Gettask Job Job Settings Settings Task Python Wheel Task - run_
if str - spark_
jar_ Gettask Job Job Settings Settings Task Spark Jar Task - spark_
python_ Gettask Job Job Settings Settings Task Spark Python Task - spark_
submit_ Gettask Job Job Settings Settings Task Spark Submit Task - sql_
task GetJob Job Settings Settings Task Sql Task - task_
key str - timeout_
seconds int
- retry
On BooleanTimeout - dbt
Task Property Map - depends
Ons List<Property Map> - description String
- email
Notifications Property Map - existing
Cluster StringId - job
Cluster StringKey - libraries List<Property Map>
- max
Retries Number - min
Retry NumberInterval Millis - new
Cluster Property Map - notebook
Task Property Map - pipeline
Task Property Map - python
Wheel Property MapTask - run
If String - spark
Jar Property MapTask - spark
Python Property MapTask - spark
Submit Property MapTask - sql
Task Property Map - task
Key String - timeout
Seconds Number
GetJobJobSettingsSettingsTaskDbtTask
- Commands List<string>
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Warehouse
Id string
- Commands []string
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Warehouse
Id string
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- warehouse
Id String
- commands string[]
- catalog string
- profiles
Directory string - project
Directory string - schema string
- warehouse
Id string
- commands Sequence[str]
- catalog str
- profiles_
directory str - project_
directory str - schema str
- warehouse_
id str
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- warehouse
Id String
GetJobJobSettingsSettingsTaskDependsOn
- Task
Key string
- Task
Key string
- task
Key String
- task
Key string
- task_
key str
- task
Key String
GetJobJobSettingsSettingsTaskEmailNotifications
- Alert
On boolLast Attempt - No
Alert boolFor Skipped Runs - On
Failures List<string> - On
Starts List<string> - On
Successes List<string>
- Alert
On boolLast Attempt - No
Alert boolFor Skipped Runs - On
Failures []string - On
Starts []string - On
Successes []string
- alert
On BooleanLast Attempt - no
Alert BooleanFor Skipped Runs - on
Failures List<String> - on
Starts List<String> - on
Successes List<String>
- alert
On booleanLast Attempt - no
Alert booleanFor Skipped Runs - on
Failures string[] - on
Starts string[] - on
Successes string[]
- alert_
on_ boollast_ attempt - no_
alert_ boolfor_ skipped_ runs - on_
failures Sequence[str] - on_
starts Sequence[str] - on_
successes Sequence[str]
- alert
On BooleanLast Attempt - no
Alert BooleanFor Skipped Runs - on
Failures List<String> - on
Starts List<String> - on
Successes List<String>
GetJobJobSettingsSettingsTaskLibrary
- cran Property Map
- egg String
- jar String
- maven Property Map
- pypi Property Map
- whl String
GetJobJobSettingsSettingsTaskLibraryCran
GetJobJobSettingsSettingsTaskLibraryMaven
- Coordinates string
- Exclusions List<string>
- Repo string
- Coordinates string
- Exclusions []string
- Repo string
- coordinates String
- exclusions List<String>
- repo String
- coordinates string
- exclusions string[]
- repo string
- coordinates str
- exclusions Sequence[str]
- repo str
- coordinates String
- exclusions List<String>
- repo String
GetJobJobSettingsSettingsTaskLibraryPypi
GetJobJobSettingsSettingsTaskNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Spark
Version string - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings Task New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings Task New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings Task New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings Task New Cluster Cluster Log Conf - Cluster
Mount List<GetInfos Job Job Settings Settings Task New Cluster Cluster Mount Info> - Cluster
Name string - Dictionary<string, object>
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings Task New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings Task New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts List<GetJob Job Settings Settings Task New Cluster Init Script> - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf Dictionary<string, object> - Spark
Env Dictionary<string, object>Vars - Ssh
Public List<string>Keys - Workload
Type GetJob Job Settings Settings Task New Cluster Workload Type
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Spark
Version string - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings Task New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings Task New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings Task New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings Task New Cluster Cluster Log Conf - Cluster
Mount []GetInfos Job Job Settings Settings Task New Cluster Cluster Mount Info - Cluster
Name string - map[string]interface{}
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings Task New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings Task New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts []GetJob Job Settings Settings Task New Cluster Init Script - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf map[string]interface{} - Spark
Env map[string]interface{}Vars - Ssh
Public []stringKeys - Workload
Type GetJob Job Settings Settings Task New Cluster Workload Type
- driver
Instance StringPool Id - driver
Node StringType Id - enable
Elastic BooleanDisk - enable
Local BooleanDisk Encryption - node
Type StringId - num
Workers Integer - spark
Version String - apply
Policy BooleanDefault Values - autoscale
Get
Job Job Settings Settings Task New Cluster Autoscale - autotermination
Minutes Integer - aws
Attributes GetJob Job Settings Settings Task New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings Task New Cluster Azure Attributes - cluster
Id String - cluster
Log GetConf Job Job Settings Settings Task New Cluster Cluster Log Conf - cluster
Mount List<GetInfos Job Job Settings Settings Task New Cluster Cluster Mount Info> - cluster
Name String - Map<String,Object>
- data
Security StringMode - docker
Image GetJob Job Settings Settings Task New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings Task New Cluster Gcp Attributes - idempotency
Token String - init
Scripts List<GetJob Job Settings Settings Task New Cluster Init Script> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<String,Object> - spark
Env Map<String,Object>Vars - ssh
Public List<String>Keys - workload
Type GetJob Job Settings Settings Task New Cluster Workload Type
- driver
Instance stringPool Id - driver
Node stringType Id - enable
Elastic booleanDisk - enable
Local booleanDisk Encryption - node
Type stringId - num
Workers number - spark
Version string - apply
Policy booleanDefault Values - autoscale
Get
Job Job Settings Settings Task New Cluster Autoscale - autotermination
Minutes number - aws
Attributes GetJob Job Settings Settings Task New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings Task New Cluster Azure Attributes - cluster
Id string - cluster
Log GetConf Job Job Settings Settings Task New Cluster Cluster Log Conf - cluster
Mount GetInfos Job Job Settings Settings Task New Cluster Cluster Mount Info[] - cluster
Name string - {[key: string]: any}
- data
Security stringMode - docker
Image GetJob Job Settings Settings Task New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings Task New Cluster Gcp Attributes - idempotency
Token string - init
Scripts GetJob Job Settings Settings Task New Cluster Init Script[] - instance
Pool stringId - policy
Id string - runtime
Engine string - single
User stringName - spark
Conf {[key: string]: any} - spark
Env {[key: string]: any}Vars - ssh
Public string[]Keys - workload
Type GetJob Job Settings Settings Task New Cluster Workload Type
- driver_
instance_ strpool_ id - driver_
node_ strtype_ id - enable_
elastic_ booldisk - enable_
local_ booldisk_ encryption - node_
type_ strid - num_
workers int - spark_
version str - apply_
policy_ booldefault_ values - autoscale
Get
Job Job Settings Settings Task New Cluster Autoscale - autotermination_
minutes int - aws_
attributes GetJob Job Settings Settings Task New Cluster Aws Attributes - azure_
attributes GetJob Job Settings Settings Task New Cluster Azure Attributes - cluster_
id str - cluster_
log_ Getconf Job Job Settings Settings Task New Cluster Cluster Log Conf - cluster_
mount_ Sequence[Getinfos Job Job Settings Settings Task New Cluster Cluster Mount Info] - cluster_
name str - Mapping[str, Any]
- data_
security_ strmode - docker_
image GetJob Job Settings Settings Task New Cluster Docker Image - gcp_
attributes GetJob Job Settings Settings Task New Cluster Gcp Attributes - idempotency_
token str - init_
scripts Sequence[GetJob Job Settings Settings Task New Cluster Init Script] - instance_
pool_ strid - policy_
id str - runtime_
engine str - single_
user_ strname - spark_
conf Mapping[str, Any] - spark_
env_ Mapping[str, Any]vars - ssh_
public_ Sequence[str]keys - workload_
type GetJob Job Settings Settings Task New Cluster Workload Type
- driver
Instance StringPool Id - driver
Node StringType Id - enable
Elastic BooleanDisk - enable
Local BooleanDisk Encryption - node
Type StringId - num
Workers Number - spark
Version String - apply
Policy BooleanDefault Values - autoscale Property Map
- autotermination
Minutes Number - aws
Attributes Property Map - azure
Attributes Property Map - cluster
Id String - cluster
Log Property MapConf - cluster
Mount List<Property Map>Infos - cluster
Name String - Map<Any>
- data
Security StringMode - docker
Image Property Map - gcp
Attributes Property Map - idempotency
Token String - init
Scripts List<Property Map> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<Any> - spark
Env Map<Any>Vars - ssh
Public List<String>Keys - workload
Type Property Map
GetJobJobSettingsSettingsTaskNewClusterAutoscale
- Max
Workers int - Min
Workers int
- Max
Workers int - Min
Workers int
- max
Workers Integer - min
Workers Integer
- max
Workers number - min
Workers number
- max_
workers int - min_
workers int
- max
Workers Number - min
Workers Number
GetJobJobSettingsSettingsTaskNewClusterAwsAttributes
- Availability string
- Ebs
Volume intCount - Ebs
Volume intSize - Ebs
Volume stringType - First
On intDemand - Instance
Profile stringArn - Spot
Bid intPrice Percent - Zone
Id string
- Availability string
- Ebs
Volume intCount - Ebs
Volume intSize - Ebs
Volume stringType - First
On intDemand - Instance
Profile stringArn - Spot
Bid intPrice Percent - Zone
Id string
- availability String
- ebs
Volume IntegerCount - ebs
Volume IntegerSize - ebs
Volume StringType - first
On IntegerDemand - instance
Profile StringArn - spot
Bid IntegerPrice Percent - zone
Id String
- availability string
- ebs
Volume numberCount - ebs
Volume numberSize - ebs
Volume stringType - first
On numberDemand - instance
Profile stringArn - spot
Bid numberPrice Percent - zone
Id string
- availability str
- ebs_
volume_ intcount - ebs_
volume_ intsize - ebs_
volume_ strtype - first_
on_ intdemand - instance_
profile_ strarn - spot_
bid_ intprice_ percent - zone_
id str
- availability String
- ebs
Volume NumberCount - ebs
Volume NumberSize - ebs
Volume StringType - first
On NumberDemand - instance
Profile StringArn - spot
Bid NumberPrice Percent - zone
Id String
GetJobJobSettingsSettingsTaskNewClusterAzureAttributes
- Availability string
- First
On intDemand - Spot
Bid doubleMax Price
- Availability string
- First
On intDemand - Spot
Bid float64Max Price
- availability String
- first
On IntegerDemand - spot
Bid DoubleMax Price
- availability string
- first
On numberDemand - spot
Bid numberMax Price
- availability str
- first_
on_ intdemand - spot_
bid_ floatmax_ price
- availability String
- first
On NumberDemand - spot
Bid NumberMax Price
GetJobJobSettingsSettingsTaskNewClusterClusterLogConf
GetJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterClusterLogConfS3
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
- destination string
- canned
Acl string - enable
Encryption boolean - encryption
Type string - endpoint string
- kms
Key string - region string
- destination str
- canned_
acl str - enable_
encryption bool - encryption_
type str - endpoint str
- kms_
key str - region str
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
GetJobJobSettingsSettingsTaskNewClusterClusterMountInfo
GetJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfo
- Server
Address string - Mount
Options string
- Server
Address string - Mount
Options string
- server
Address String - mount
Options String
- server
Address string - mount
Options string
- server_
address str - mount_
options str
- server
Address String - mount
Options String
GetJobJobSettingsSettingsTaskNewClusterDockerImage
- url String
- basic
Auth Property Map
GetJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuth
GetJobJobSettingsSettingsTaskNewClusterGcpAttributes
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - use
Preemptible BooleanExecutors - zone
Id String
GetJobJobSettingsSettingsTaskNewClusterInitScript
- Abfss
Get
Job Job Settings Settings Task New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings Task New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings Task New Cluster Init Script File - Gcs
Get
Job Job Settings Settings Task New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings Task New Cluster Init Script S3 - Workspace
Get
Job Job Settings Settings Task New Cluster Init Script Workspace
- Abfss
Get
Job Job Settings Settings Task New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings Task New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings Task New Cluster Init Script File - Gcs
Get
Job Job Settings Settings Task New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings Task New Cluster Init Script S3 - Workspace
Get
Job Job Settings Settings Task New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Task New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Task New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Task New Cluster Init Script File - gcs
Get
Job Job Settings Settings Task New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Task New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings Task New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Task New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Task New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Task New Cluster Init Script File - gcs
Get
Job Job Settings Settings Task New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Task New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings Task New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Task New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Task New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Task New Cluster Init Script File - gcs
Get
Job Job Settings Settings Task New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Task New Cluster Init Script S3 - workspace
Get
Job Job Settings Settings Task New Cluster Init Script Workspace
GetJobJobSettingsSettingsTaskNewClusterInitScriptAbfss
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterInitScriptDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterInitScriptFile
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterInitScriptGcs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterInitScriptS3
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- Destination string
- Canned
Acl string - Enable
Encryption bool - Encryption
Type string - Endpoint string
- Kms
Key string - Region string
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
- destination string
- canned
Acl string - enable
Encryption boolean - encryption
Type string - endpoint string
- kms
Key string - region string
- destination str
- canned_
acl str - enable_
encryption bool - encryption_
type str - endpoint str
- kms_
key str - region str
- destination String
- canned
Acl String - enable
Encryption Boolean - encryption
Type String - endpoint String
- kms
Key String - region String
GetJobJobSettingsSettingsTaskNewClusterInitScriptWorkspace
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterWorkloadType
GetJobJobSettingsSettingsTaskNewClusterWorkloadTypeClients
GetJobJobSettingsSettingsTaskNotebookTask
- Notebook
Path string - Base
Parameters Dictionary<string, object> - Source string
- Notebook
Path string - Base
Parameters map[string]interface{} - Source string
- notebook
Path String - base
Parameters Map<String,Object> - source String
- notebook
Path string - base
Parameters {[key: string]: any} - source string
- notebook_
path str - base_
parameters Mapping[str, Any] - source str
- notebook
Path String - base
Parameters Map<Any> - source String
GetJobJobSettingsSettingsTaskPipelineTask
- Pipeline
Id string
- Pipeline
Id string
- pipeline
Id String
- pipeline
Id string
- pipeline_
id str
- pipeline
Id String
GetJobJobSettingsSettingsTaskPythonWheelTask
- Entry
Point string - Named
Parameters Dictionary<string, object> - Package
Name string - Parameters List<string>
- Entry
Point string - Named
Parameters map[string]interface{} - Package
Name string - Parameters []string
- entry
Point String - named
Parameters Map<String,Object> - package
Name String - parameters List<String>
- entry
Point string - named
Parameters {[key: string]: any} - package
Name string - parameters string[]
- entry_
point str - named_
parameters Mapping[str, Any] - package_
name str - parameters Sequence[str]
- entry
Point String - named
Parameters Map<Any> - package
Name String - parameters List<String>
GetJobJobSettingsSettingsTaskSparkJarTask
- Jar
Uri string - Main
Class stringName - Parameters List<string>
- Jar
Uri string - Main
Class stringName - Parameters []string
- jar
Uri String - main
Class StringName - parameters List<String>
- jar
Uri string - main
Class stringName - parameters string[]
- jar_
uri str - main_
class_ strname - parameters Sequence[str]
- jar
Uri String - main
Class StringName - parameters List<String>
GetJobJobSettingsSettingsTaskSparkPythonTask
- Python
File string - Parameters List<string>
- Source string
- Python
File string - Parameters []string
- Source string
- python
File String - parameters List<String>
- source String
- python
File string - parameters string[]
- source string
- python_
file str - parameters Sequence[str]
- source str
- python
File String - parameters List<String>
- source String
GetJobJobSettingsSettingsTaskSparkSubmitTask
- Parameters List<string>
- Parameters []string
- parameters List<String>
- parameters string[]
- parameters Sequence[str]
- parameters List<String>
GetJobJobSettingsSettingsTaskSqlTask
GetJobJobSettingsSettingsTaskSqlTaskAlert
- Alert
Id string
- Alert
Id string
- alert
Id String
- alert
Id string
- alert_
id str
- alert
Id String
GetJobJobSettingsSettingsTaskSqlTaskDashboard
- Dashboard
Id string
- Dashboard
Id string
- dashboard
Id String
- dashboard
Id string
- dashboard_
id str
- dashboard
Id String
GetJobJobSettingsSettingsTaskSqlTaskFile
- Path string
- Path string
- path String
- path string
- path str
- path String
GetJobJobSettingsSettingsTaskSqlTaskQuery
- Query
Id string
- Query
Id string
- query
Id String
- query
Id string
- query_
id str
- query
Id String
GetJobJobSettingsSettingsTrigger
GetJobJobSettingsSettingsTriggerFileArrival
- Url string
- Min
Time intBetween Trigger Seconds - Wait
After intLast Change Seconds
- Url string
- Min
Time intBetween Trigger Seconds - Wait
After intLast Change Seconds
- url String
- min
Time IntegerBetween Trigger Seconds - wait
After IntegerLast Change Seconds
- url string
- min
Time numberBetween Trigger Seconds - wait
After numberLast Change Seconds
- url String
- min
Time NumberBetween Trigger Seconds - wait
After NumberLast Change Seconds