databricks.getJob
Retrieves the settings of databricks.Job by name or by id. Complements the feature of the databricks.getJobs data source.
This data source can only be used with a workspace-level provider!
Example Usage
Getting the existing cluster id of specific databricks.Job by name or by id:
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);
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)
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
})
}
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 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());
}
}
variables:
this:
fn::invoke:
function: databricks:getJob
arguments:
jobName: My job
outputs:
jobNumWorkers: ${this.jobSettings.settings.newCluster.numWorkers}
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.
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)
public static Output<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
fn::invoke:
function: databricks:index/getJob:getJob
arguments:
# arguments dictionaryThe 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
- Run
As stringUser Name - Created
Time int - Creator
User stringName - Job
Id int - Settings
Get
Job Job Settings Settings
- Run
As stringUser Name - Created
Time int - Creator
User stringName - Job
Id int - Settings
Get
Job Job Settings Settings
- run
As StringUser Name - created
Time Integer - creator
User StringName - job
Id Integer - settings
Get
Job Job Settings Settings
- run
As stringUser Name - created
Time number - creator
User stringName - job
Id number - settings
Get
Job Job Settings Settings
- run
As StringUser Name - created
Time Number - creator
User StringName - job
Id Number - settings Property Map
GetJobJobSettingsSettings
- Format string
- Run
As GetJob Job Settings Settings Run As - Continuous
Get
Job Job Settings Settings Continuous - Dbt
Task GetJob Job Settings Settings Dbt Task - Deployment
Get
Job Job Settings Settings Deployment - Description string
- Edit
Mode string - Email
Notifications GetJob Job Settings Settings Email Notifications - Environments
List<Get
Job Job Settings Settings Environment> - Existing
Cluster stringId - Git
Source GetJob Job Settings Settings Git Source - Health
Get
Job Job Settings Settings Health - 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 - Parameters
List<Get
Job Job Settings Settings Parameter> - 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 - Run
Job GetTask Job Job Settings Settings Run Job Task - 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, string>
- 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
- Run
As GetJob Job Settings Settings Run As - Continuous
Get
Job Job Settings Settings Continuous - Dbt
Task GetJob Job Settings Settings Dbt Task - Deployment
Get
Job Job Settings Settings Deployment - Description string
- Edit
Mode string - Email
Notifications GetJob Job Settings Settings Email Notifications - Environments
[]Get
Job Job Settings Settings Environment - Existing
Cluster stringId - Git
Source GetJob Job Settings Settings Git Source - Health
Get
Job Job Settings Settings Health - 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 - Parameters
[]Get
Job Job Settings Settings Parameter - 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 - Run
Job GetTask Job Job Settings Settings Run Job Task - 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]string
- 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
- run
As GetJob Job Settings Settings Run As - continuous
Get
Job Job Settings Settings Continuous - dbt
Task GetJob Job Settings Settings Dbt Task - deployment
Get
Job Job Settings Settings Deployment - description String
- edit
Mode String - email
Notifications GetJob Job Settings Settings Email Notifications - environments
List<Get
Job Job Settings Settings Environment> - existing
Cluster StringId - git
Source GetJob Job Settings Settings Git Source - health
Get
Job Job Settings Settings Health - 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 - parameters
List<Get
Job Job Settings Settings Parameter> - 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 - run
Job GetTask Job Job Settings Settings Run Job Task - 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,String>
- 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
- run
As GetJob Job Settings Settings Run As - continuous
Get
Job Job Settings Settings Continuous - dbt
Task GetJob Job Settings Settings Dbt Task - deployment
Get
Job Job Settings Settings Deployment - description string
- edit
Mode string - email
Notifications GetJob Job Settings Settings Email Notifications - environments
Get
Job Job Settings Settings Environment[] - existing
Cluster stringId - git
Source GetJob Job Settings Settings Git Source - health
Get
Job Job Settings Settings Health - 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 - parameters
Get
Job Job Settings Settings Parameter[] - 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 - run
Job GetTask Job Job Settings Settings Run Job Task - 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]: string}
- 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
- run_
as GetJob Job Settings Settings Run As - continuous
Get
Job Job Settings Settings Continuous - dbt_
task GetJob Job Settings Settings Dbt Task - deployment
Get
Job Job Settings Settings Deployment - description str
- edit_
mode str - email_
notifications GetJob Job Settings Settings Email Notifications - environments
Sequence[Get
Job Job Settings Settings Environment] - existing_
cluster_ strid - git_
source GetJob Job Settings Settings Git Source - health
Get
Job Job Settings Settings Health - 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 - parameters
Sequence[Get
Job Job Settings Settings Parameter] - 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 - run_
job_ Gettask Job Job Settings Settings Run Job Task - 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, str]
- 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
- run
As Property Map - continuous Property Map
- dbt
Task Property Map - deployment Property Map
- description String
- edit
Mode String - email
Notifications Property Map - environments List<Property Map>
- existing
Cluster StringId - git
Source Property Map - health 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 - parameters List<Property Map>
- pipeline
Task Property Map - python
Wheel Property MapTask - queue Property Map
- retry
On BooleanTimeout - run
Job Property MapTask - schedule Property Map
- spark
Jar Property MapTask - spark
Python Property MapTask - spark
Submit Property MapTask - Map<String>
- 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
- Source string
- Warehouse
Id string
- Commands []string
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Source string
- Warehouse
Id string
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- source String
- warehouse
Id String
- commands string[]
- catalog string
- profiles
Directory string - project
Directory string - schema string
- source string
- warehouse
Id string
- commands Sequence[str]
- catalog str
- profiles_
directory str - project_
directory str - schema str
- source str
- warehouse_
id str
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- source String
- warehouse
Id String
GetJobJobSettingsSettingsDeployment
- Kind string
- Metadata
File stringPath
- Kind string
- Metadata
File stringPath
- kind String
- metadata
File StringPath
- kind string
- metadata
File stringPath
- kind str
- metadata_
file_ strpath
- kind String
- metadata
File StringPath
GetJobJobSettingsSettingsEmailNotifications
- No
Alert boolFor Skipped Runs - On
Duration List<string>Warning Threshold Exceededs - On
Failures List<string> - On
Starts List<string> - On
Streaming List<string>Backlog Exceededs - On
Successes List<string>
- No
Alert boolFor Skipped Runs - On
Duration []stringWarning Threshold Exceededs - On
Failures []string - On
Starts []string - On
Streaming []stringBacklog Exceededs - On
Successes []string
- no
Alert BooleanFor Skipped Runs - on
Duration List<String>Warning Threshold Exceededs - on
Failures List<String> - on
Starts List<String> - on
Streaming List<String>Backlog Exceededs - on
Successes List<String>
- no
Alert booleanFor Skipped Runs - on
Duration string[]Warning Threshold Exceededs - on
Failures string[] - on
Starts string[] - on
Streaming string[]Backlog Exceededs - on
Successes string[]
- no_
alert_ boolfor_ skipped_ runs - on_
duration_ Sequence[str]warning_ threshold_ exceededs - on_
failures Sequence[str] - on_
starts Sequence[str] - on_
streaming_ Sequence[str]backlog_ exceededs - on_
successes Sequence[str]
- no
Alert BooleanFor Skipped Runs - on
Duration List<String>Warning Threshold Exceededs - on
Failures List<String> - on
Starts List<String> - on
Streaming List<String>Backlog Exceededs - on
Successes List<String>
GetJobJobSettingsSettingsEnvironment
- environment
Key String - spec Property Map
GetJobJobSettingsSettingsEnvironmentSpec
- Client string
- Dependencies List<string>
- Environment
Version string - Java
Dependencies List<string>
- Client string
- Dependencies []string
- Environment
Version string - Java
Dependencies []string
- client String
- dependencies List<String>
- environment
Version String - java
Dependencies List<String>
- client string
- dependencies string[]
- environment
Version string - java
Dependencies string[]
- client str
- dependencies Sequence[str]
- environment_
version str - java_
dependencies Sequence[str]
- client String
- dependencies List<String>
- environment
Version String - java
Dependencies List<String>
GetJobJobSettingsSettingsGitSource
- url str
- branch str
- commit str
- job_
source GetJob Job Settings Settings Git Source Job Source - provider str
- tag str
GetJobJobSettingsSettingsGitSourceJobSource
- Import
From stringGit Branch - Job
Config stringPath - Dirty
State string
- Import
From stringGit Branch - Job
Config stringPath - Dirty
State string
- import
From StringGit Branch - job
Config StringPath - dirty
State String
- import
From stringGit Branch - job
Config stringPath - dirty
State string
- import_
from_ strgit_ branch - job_
config_ strpath - dirty_
state str
- import
From StringGit Branch - job
Config StringPath - dirty
State String
GetJobJobSettingsSettingsHealth
GetJobJobSettingsSettingsHealthRule
GetJobJobSettingsSettingsJobCluster
GetJobJobSettingsSettingsJobClusterNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - 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, string>
- 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, string> - Spark
Env Dictionary<string, string>Vars - Spark
Version string - 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 - 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]string
- 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]string - Spark
Env map[string]stringVars - Spark
Version string - 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 - 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,String>
- 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,String> - spark
Env Map<String,String>Vars - spark
Version String - 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 - 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]: string}
- 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]: string} - spark
Env {[key: string]: string}Vars - spark
Version string - 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 - 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, str]
- 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, str] - spark_
env_ Mapping[str, str]vars - spark_
version str - 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 - 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<String>
- 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<String> - spark
Env Map<String>Vars - spark
Version String - 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 - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - local
Ssd IntegerCount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - local
Ssd numberCount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - local_
ssd_ intcount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - local
Ssd NumberCount - 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 - Volumes
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Volumes - 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 - Volumes
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings Job Cluster New Cluster Init Script Volumes - 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
GetJobJobSettingsSettingsJobClusterNewClusterInitScriptVolumes
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination 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
- provider
Config Property Map - pypi Property Map
- requirements String
- 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
GetJobJobSettingsSettingsLibraryProviderConfig
- Workspace
Id string
- Workspace
Id string
- workspace
Id String
- workspace
Id string
- workspace_
id str
- workspace
Id String
GetJobJobSettingsSettingsLibraryPypi
GetJobJobSettingsSettingsNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - 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, string>
- 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, string> - Spark
Env Dictionary<string, string>Vars - Spark
Version string - 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 - 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]string
- 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]string - Spark
Env map[string]stringVars - Spark
Version string - 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 - 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,String>
- 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,String> - spark
Env Map<String,String>Vars - spark
Version String - 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 - 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]: string}
- 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]: string} - spark
Env {[key: string]: string}Vars - spark
Version string - 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 - 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, str]
- 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, str] - spark_
env_ Mapping[str, str]vars - spark_
version str - 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 - 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<String>
- 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<String> - spark
Env Map<String>Vars - spark
Version String - 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 - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - local
Ssd IntegerCount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - local
Ssd numberCount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - local_
ssd_ intcount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - local
Ssd NumberCount - 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 - Volumes
Get
Job Job Settings Settings New Cluster Init Script Volumes - 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 - Volumes
Get
Job Job Settings Settings New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings New Cluster Init Script Volumes - 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
GetJobJobSettingsSettingsNewClusterInitScriptVolumes
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterInitScriptWorkspace
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsNewClusterWorkloadType
GetJobJobSettingsSettingsNewClusterWorkloadTypeClients
GetJobJobSettingsSettingsNotebookTask
- Notebook
Path string - Base
Parameters Dictionary<string, string> - Source string
- Warehouse
Id string
- Notebook
Path string - Base
Parameters map[string]string - Source string
- Warehouse
Id string
- notebook
Path String - base
Parameters Map<String,String> - source String
- warehouse
Id String
- notebook
Path string - base
Parameters {[key: string]: string} - source string
- warehouse
Id string
- notebook_
path str - base_
parameters Mapping[str, str] - source str
- warehouse_
id str
- notebook
Path String - base
Parameters Map<String> - source String
- warehouse
Id 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
GetJobJobSettingsSettingsParameter
GetJobJobSettingsSettingsPipelineTask
- Pipeline
Id string - Full
Refresh bool
- Pipeline
Id string - Full
Refresh bool
- pipeline
Id String - full
Refresh Boolean
- pipeline
Id string - full
Refresh boolean
- pipeline_
id str - full_
refresh bool
- pipeline
Id String - full
Refresh Boolean
GetJobJobSettingsSettingsPythonWheelTask
- Entry
Point string - Named
Parameters Dictionary<string, string> - Package
Name string - Parameters List<string>
- Entry
Point string - Named
Parameters map[string]string - Package
Name string - Parameters []string
- entry
Point String - named
Parameters Map<String,String> - package
Name String - parameters List<String>
- entry
Point string - named
Parameters {[key: string]: string} - package
Name string - parameters string[]
- entry_
point str - named_
parameters Mapping[str, str] - package_
name str - parameters Sequence[str]
- entry
Point String - named
Parameters Map<String> - package
Name String - parameters List<String>
GetJobJobSettingsSettingsQueue
- Enabled bool
- Enabled bool
- enabled Boolean
- enabled boolean
- enabled bool
- enabled Boolean
GetJobJobSettingsSettingsRunAs
- Service
Principal stringName - User
Name string
- Service
Principal stringName - User
Name string
- service
Principal StringName - user
Name String
- service
Principal stringName - user
Name string
- service_
principal_ strname - user_
name str
- service
Principal StringName - user
Name String
GetJobJobSettingsSettingsRunJobTask
- Job
Id int - Job
Parameters Dictionary<string, string>
- Job
Id int - Job
Parameters map[string]string
- job
Id Integer - job
Parameters Map<String,String>
- job
Id number - job
Parameters {[key: string]: string}
- job_
id int - job_
parameters Mapping[str, str]
- job
Id Number - job
Parameters Map<String>
GetJobJobSettingsSettingsSchedule
- 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 string
- quartz_
cron_ strexpression - timezone_
id str - pause_
status str
- quartz
Cron StringExpression - timezone
Id String - pause
Status 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 - Task
Key string - Condition
Task GetJob Job Settings Settings Task Condition Task - Dashboard
Task GetJob Job Settings Settings Task Dashboard Task - 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 - Environment
Key string - Existing
Cluster stringId - For
Each GetTask Job Job Settings Settings Task For Each Task - Health
Get
Job Job Settings Settings Task Health - 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 - Notification
Settings GetJob Job Settings Settings Task Notification Settings - Pipeline
Task GetJob Job Settings Settings Task Pipeline Task - Power
Bi GetTask Job Job Settings Settings Task Power Bi Task - Python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - Run
If string - Run
Job GetTask Job Job Settings Settings Task Run Job Task - 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 - Timeout
Seconds int - Webhook
Notifications GetJob Job Settings Settings Task Webhook Notifications
- Retry
On boolTimeout - Task
Key string - Condition
Task GetJob Job Settings Settings Task Condition Task - Dashboard
Task GetJob Job Settings Settings Task Dashboard Task - 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 - Environment
Key string - Existing
Cluster stringId - For
Each GetTask Job Job Settings Settings Task For Each Task - Health
Get
Job Job Settings Settings Task Health - 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 - Notification
Settings GetJob Job Settings Settings Task Notification Settings - Pipeline
Task GetJob Job Settings Settings Task Pipeline Task - Power
Bi GetTask Job Job Settings Settings Task Power Bi Task - Python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - Run
If string - Run
Job GetTask Job Job Settings Settings Task Run Job Task - 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 - Timeout
Seconds int - Webhook
Notifications GetJob Job Settings Settings Task Webhook Notifications
- retry
On BooleanTimeout - task
Key String - condition
Task GetJob Job Settings Settings Task Condition Task - dashboard
Task GetJob Job Settings Settings Task Dashboard Task - 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 - environment
Key String - existing
Cluster StringId - for
Each GetTask Job Job Settings Settings Task For Each Task - health
Get
Job Job Settings Settings Task Health - 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 - notification
Settings GetJob Job Settings Settings Task Notification Settings - pipeline
Task GetJob Job Settings Settings Task Pipeline Task - power
Bi GetTask Job Job Settings Settings Task Power Bi Task - python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - run
If String - run
Job GetTask Job Job Settings Settings Task Run Job Task - 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 - timeout
Seconds Integer - webhook
Notifications GetJob Job Settings Settings Task Webhook Notifications
- retry
On booleanTimeout - task
Key string - condition
Task GetJob Job Settings Settings Task Condition Task - dashboard
Task GetJob Job Settings Settings Task Dashboard Task - 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 - environment
Key string - existing
Cluster stringId - for
Each GetTask Job Job Settings Settings Task For Each Task - health
Get
Job Job Settings Settings Task Health - 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 - notification
Settings GetJob Job Settings Settings Task Notification Settings - pipeline
Task GetJob Job Settings Settings Task Pipeline Task - power
Bi GetTask Job Job Settings Settings Task Power Bi Task - python
Wheel GetTask Job Job Settings Settings Task Python Wheel Task - run
If string - run
Job GetTask Job Job Settings Settings Task Run Job Task - 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 - timeout
Seconds number - webhook
Notifications GetJob Job Settings Settings Task Webhook Notifications
- retry_
on_ booltimeout - task_
key str - condition_
task GetJob Job Settings Settings Task Condition Task - dashboard_
task GetJob Job Settings Settings Task Dashboard Task - 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 - environment_
key str - existing_
cluster_ strid - for_
each_ Gettask Job Job Settings Settings Task For Each Task - health
Get
Job Job Settings Settings Task Health - 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 - notification_
settings GetJob Job Settings Settings Task Notification Settings - pipeline_
task GetJob Job Settings Settings Task Pipeline Task - power_
bi_ Gettask Job Job Settings Settings Task Power Bi Task - python_
wheel_ Gettask Job Job Settings Settings Task Python Wheel Task - run_
if str - run_
job_ Gettask Job Job Settings Settings Task Run Job Task - 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 - timeout_
seconds int - webhook_
notifications GetJob Job Settings Settings Task Webhook Notifications
- retry
On BooleanTimeout - task
Key String - condition
Task Property Map - dashboard
Task Property Map - dbt
Task Property Map - depends
Ons List<Property Map> - description String
- email
Notifications Property Map - environment
Key String - existing
Cluster StringId - for
Each Property MapTask - health Property Map
- job
Cluster StringKey - libraries List<Property Map>
- max
Retries Number - min
Retry NumberInterval Millis - new
Cluster Property Map - notebook
Task Property Map - notification
Settings Property Map - pipeline
Task Property Map - power
Bi Property MapTask - python
Wheel Property MapTask - run
If String - run
Job Property MapTask - spark
Jar Property MapTask - spark
Python Property MapTask - spark
Submit Property MapTask - sql
Task Property Map - timeout
Seconds Number - webhook
Notifications Property Map
GetJobJobSettingsSettingsTaskConditionTask
GetJobJobSettingsSettingsTaskDashboardTask
- dashboard
Id String - subscription Property Map
- warehouse
Id String
GetJobJobSettingsSettingsTaskDashboardTaskSubscription
- custom
Subject String - paused Boolean
- subscribers List<Property Map>
GetJobJobSettingsSettingsTaskDashboardTaskSubscriptionSubscriber
- Destination
Id string - User
Name string
- Destination
Id string - User
Name string
- destination
Id String - user
Name String
- destination
Id string - user
Name string
- destination_
id str - user_
name str
- destination
Id String - user
Name String
GetJobJobSettingsSettingsTaskDbtTask
- Commands List<string>
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Source string
- Warehouse
Id string
- Commands []string
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Source string
- Warehouse
Id string
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- source String
- warehouse
Id String
- commands string[]
- catalog string
- profiles
Directory string - project
Directory string - schema string
- source string
- warehouse
Id string
- commands Sequence[str]
- catalog str
- profiles_
directory str - project_
directory str - schema str
- source str
- warehouse_
id str
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- source String
- warehouse
Id String
GetJobJobSettingsSettingsTaskDependsOn
GetJobJobSettingsSettingsTaskEmailNotifications
- No
Alert boolFor Skipped Runs - On
Duration List<string>Warning Threshold Exceededs - On
Failures List<string> - On
Starts List<string> - On
Streaming List<string>Backlog Exceededs - On
Successes List<string>
- No
Alert boolFor Skipped Runs - On
Duration []stringWarning Threshold Exceededs - On
Failures []string - On
Starts []string - On
Streaming []stringBacklog Exceededs - On
Successes []string
- no
Alert BooleanFor Skipped Runs - on
Duration List<String>Warning Threshold Exceededs - on
Failures List<String> - on
Starts List<String> - on
Streaming List<String>Backlog Exceededs - on
Successes List<String>
- no
Alert booleanFor Skipped Runs - on
Duration string[]Warning Threshold Exceededs - on
Failures string[] - on
Starts string[] - on
Streaming string[]Backlog Exceededs - on
Successes string[]
- no_
alert_ boolfor_ skipped_ runs - on_
duration_ Sequence[str]warning_ threshold_ exceededs - on_
failures Sequence[str] - on_
starts Sequence[str] - on_
streaming_ Sequence[str]backlog_ exceededs - on_
successes Sequence[str]
- no
Alert BooleanFor Skipped Runs - on
Duration List<String>Warning Threshold Exceededs - on
Failures List<String> - on
Starts List<String> - on
Streaming List<String>Backlog Exceededs - on
Successes List<String>
GetJobJobSettingsSettingsTaskForEachTask
- inputs String
- task Property Map
- concurrency Number
GetJobJobSettingsSettingsTaskForEachTaskTask
- Retry
On boolTimeout - Task
Key string - Condition
Task GetJob Job Settings Settings Task For Each Task Task Condition Task - Dashboard
Task GetJob Job Settings Settings Task For Each Task Task Dashboard Task - Dbt
Task GetJob Job Settings Settings Task For Each Task Task Dbt Task - Depends
Ons List<GetJob Job Settings Settings Task For Each Task Task Depends On> - Description string
- Email
Notifications GetJob Job Settings Settings Task For Each Task Task Email Notifications - Environment
Key string - Existing
Cluster stringId - Health
Get
Job Job Settings Settings Task For Each Task Task Health - Job
Cluster stringKey - Libraries
List<Get
Job Job Settings Settings Task For Each Task Task Library> - Max
Retries int - Min
Retry intInterval Millis - New
Cluster GetJob Job Settings Settings Task For Each Task Task New Cluster - Notebook
Task GetJob Job Settings Settings Task For Each Task Task Notebook Task - Notification
Settings GetJob Job Settings Settings Task For Each Task Task Notification Settings - Pipeline
Task GetJob Job Settings Settings Task For Each Task Task Pipeline Task - Power
Bi GetTask Job Job Settings Settings Task For Each Task Task Power Bi Task - Python
Wheel GetTask Job Job Settings Settings Task For Each Task Task Python Wheel Task - Run
If string - Run
Job GetTask Job Job Settings Settings Task For Each Task Task Run Job Task - Spark
Jar GetTask Job Job Settings Settings Task For Each Task Task Spark Jar Task - Spark
Python GetTask Job Job Settings Settings Task For Each Task Task Spark Python Task - Spark
Submit GetTask Job Job Settings Settings Task For Each Task Task Spark Submit Task - Sql
Task GetJob Job Settings Settings Task For Each Task Task Sql Task - Timeout
Seconds int - Webhook
Notifications GetJob Job Settings Settings Task For Each Task Task Webhook Notifications
- Retry
On boolTimeout - Task
Key string - Condition
Task GetJob Job Settings Settings Task For Each Task Task Condition Task - Dashboard
Task GetJob Job Settings Settings Task For Each Task Task Dashboard Task - Dbt
Task GetJob Job Settings Settings Task For Each Task Task Dbt Task - Depends
Ons []GetJob Job Settings Settings Task For Each Task Task Depends On - Description string
- Email
Notifications GetJob Job Settings Settings Task For Each Task Task Email Notifications - Environment
Key string - Existing
Cluster stringId - Health
Get
Job Job Settings Settings Task For Each Task Task Health - Job
Cluster stringKey - Libraries
[]Get
Job Job Settings Settings Task For Each Task Task Library - Max
Retries int - Min
Retry intInterval Millis - New
Cluster GetJob Job Settings Settings Task For Each Task Task New Cluster - Notebook
Task GetJob Job Settings Settings Task For Each Task Task Notebook Task - Notification
Settings GetJob Job Settings Settings Task For Each Task Task Notification Settings - Pipeline
Task GetJob Job Settings Settings Task For Each Task Task Pipeline Task - Power
Bi GetTask Job Job Settings Settings Task For Each Task Task Power Bi Task - Python
Wheel GetTask Job Job Settings Settings Task For Each Task Task Python Wheel Task - Run
If string - Run
Job GetTask Job Job Settings Settings Task For Each Task Task Run Job Task - Spark
Jar GetTask Job Job Settings Settings Task For Each Task Task Spark Jar Task - Spark
Python GetTask Job Job Settings Settings Task For Each Task Task Spark Python Task - Spark
Submit GetTask Job Job Settings Settings Task For Each Task Task Spark Submit Task - Sql
Task GetJob Job Settings Settings Task For Each Task Task Sql Task - Timeout
Seconds int - Webhook
Notifications GetJob Job Settings Settings Task For Each Task Task Webhook Notifications
- retry
On BooleanTimeout - task
Key String - condition
Task GetJob Job Settings Settings Task For Each Task Task Condition Task - dashboard
Task GetJob Job Settings Settings Task For Each Task Task Dashboard Task - dbt
Task GetJob Job Settings Settings Task For Each Task Task Dbt Task - depends
Ons List<GetJob Job Settings Settings Task For Each Task Task Depends On> - description String
- email
Notifications GetJob Job Settings Settings Task For Each Task Task Email Notifications - environment
Key String - existing
Cluster StringId - health
Get
Job Job Settings Settings Task For Each Task Task Health - job
Cluster StringKey - libraries
List<Get
Job Job Settings Settings Task For Each Task Task Library> - max
Retries Integer - min
Retry IntegerInterval Millis - new
Cluster GetJob Job Settings Settings Task For Each Task Task New Cluster - notebook
Task GetJob Job Settings Settings Task For Each Task Task Notebook Task - notification
Settings GetJob Job Settings Settings Task For Each Task Task Notification Settings - pipeline
Task GetJob Job Settings Settings Task For Each Task Task Pipeline Task - power
Bi GetTask Job Job Settings Settings Task For Each Task Task Power Bi Task - python
Wheel GetTask Job Job Settings Settings Task For Each Task Task Python Wheel Task - run
If String - run
Job GetTask Job Job Settings Settings Task For Each Task Task Run Job Task - spark
Jar GetTask Job Job Settings Settings Task For Each Task Task Spark Jar Task - spark
Python GetTask Job Job Settings Settings Task For Each Task Task Spark Python Task - spark
Submit GetTask Job Job Settings Settings Task For Each Task Task Spark Submit Task - sql
Task GetJob Job Settings Settings Task For Each Task Task Sql Task - timeout
Seconds Integer - webhook
Notifications GetJob Job Settings Settings Task For Each Task Task Webhook Notifications
- retry
On booleanTimeout - task
Key string - condition
Task GetJob Job Settings Settings Task For Each Task Task Condition Task - dashboard
Task GetJob Job Settings Settings Task For Each Task Task Dashboard Task - dbt
Task GetJob Job Settings Settings Task For Each Task Task Dbt Task - depends
Ons GetJob Job Settings Settings Task For Each Task Task Depends On[] - description string
- email
Notifications GetJob Job Settings Settings Task For Each Task Task Email Notifications - environment
Key string - existing
Cluster stringId - health
Get
Job Job Settings Settings Task For Each Task Task Health - job
Cluster stringKey - libraries
Get
Job Job Settings Settings Task For Each Task Task Library[] - max
Retries number - min
Retry numberInterval Millis - new
Cluster GetJob Job Settings Settings Task For Each Task Task New Cluster - notebook
Task GetJob Job Settings Settings Task For Each Task Task Notebook Task - notification
Settings GetJob Job Settings Settings Task For Each Task Task Notification Settings - pipeline
Task GetJob Job Settings Settings Task For Each Task Task Pipeline Task - power
Bi GetTask Job Job Settings Settings Task For Each Task Task Power Bi Task - python
Wheel GetTask Job Job Settings Settings Task For Each Task Task Python Wheel Task - run
If string - run
Job GetTask Job Job Settings Settings Task For Each Task Task Run Job Task - spark
Jar GetTask Job Job Settings Settings Task For Each Task Task Spark Jar Task - spark
Python GetTask Job Job Settings Settings Task For Each Task Task Spark Python Task - spark
Submit GetTask Job Job Settings Settings Task For Each Task Task Spark Submit Task - sql
Task GetJob Job Settings Settings Task For Each Task Task Sql Task - timeout
Seconds number - webhook
Notifications GetJob Job Settings Settings Task For Each Task Task Webhook Notifications
- retry_
on_ booltimeout - task_
key str - condition_
task GetJob Job Settings Settings Task For Each Task Task Condition Task - dashboard_
task GetJob Job Settings Settings Task For Each Task Task Dashboard Task - dbt_
task GetJob Job Settings Settings Task For Each Task Task Dbt Task - depends_
ons Sequence[GetJob Job Settings Settings Task For Each Task Task Depends On] - description str
- email_
notifications GetJob Job Settings Settings Task For Each Task Task Email Notifications - environment_
key str - existing_
cluster_ strid - health
Get
Job Job Settings Settings Task For Each Task Task Health - job_
cluster_ strkey - libraries
Sequence[Get
Job Job Settings Settings Task For Each Task Task Library] - max_
retries int - min_
retry_ intinterval_ millis - new_
cluster GetJob Job Settings Settings Task For Each Task Task New Cluster - notebook_
task GetJob Job Settings Settings Task For Each Task Task Notebook Task - notification_
settings GetJob Job Settings Settings Task For Each Task Task Notification Settings - pipeline_
task GetJob Job Settings Settings Task For Each Task Task Pipeline Task - power_
bi_ Gettask Job Job Settings Settings Task For Each Task Task Power Bi Task - python_
wheel_ Gettask Job Job Settings Settings Task For Each Task Task Python Wheel Task - run_
if str - run_
job_ Gettask Job Job Settings Settings Task For Each Task Task Run Job Task - spark_
jar_ Gettask Job Job Settings Settings Task For Each Task Task Spark Jar Task - spark_
python_ Gettask Job Job Settings Settings Task For Each Task Task Spark Python Task - spark_
submit_ Gettask Job Job Settings Settings Task For Each Task Task Spark Submit Task - sql_
task GetJob Job Settings Settings Task For Each Task Task Sql Task - timeout_
seconds int - webhook_
notifications GetJob Job Settings Settings Task For Each Task Task Webhook Notifications
- retry
On BooleanTimeout - task
Key String - condition
Task Property Map - dashboard
Task Property Map - dbt
Task Property Map - depends
Ons List<Property Map> - description String
- email
Notifications Property Map - environment
Key String - existing
Cluster StringId - health Property Map
- job
Cluster StringKey - libraries List<Property Map>
- max
Retries Number - min
Retry NumberInterval Millis - new
Cluster Property Map - notebook
Task Property Map - notification
Settings Property Map - pipeline
Task Property Map - power
Bi Property MapTask - python
Wheel Property MapTask - run
If String - run
Job Property MapTask - spark
Jar Property MapTask - spark
Python Property MapTask - spark
Submit Property MapTask - sql
Task Property Map - timeout
Seconds Number - webhook
Notifications Property Map
GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask
GetJobJobSettingsSettingsTaskForEachTaskTaskDashboardTask
- dashboard
Id String - subscription Property Map
- warehouse
Id String
GetJobJobSettingsSettingsTaskForEachTaskTaskDashboardTaskSubscription
- custom
Subject String - paused Boolean
- subscribers List<Property Map>
GetJobJobSettingsSettingsTaskForEachTaskTaskDashboardTaskSubscriptionSubscriber
- Destination
Id string - User
Name string
- Destination
Id string - User
Name string
- destination
Id String - user
Name String
- destination
Id string - user
Name string
- destination_
id str - user_
name str
- destination
Id String - user
Name String
GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask
- Commands List<string>
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Source string
- Warehouse
Id string
- Commands []string
- Catalog string
- Profiles
Directory string - Project
Directory string - Schema string
- Source string
- Warehouse
Id string
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- source String
- warehouse
Id String
- commands string[]
- catalog string
- profiles
Directory string - project
Directory string - schema string
- source string
- warehouse
Id string
- commands Sequence[str]
- catalog str
- profiles_
directory str - project_
directory str - schema str
- source str
- warehouse_
id str
- commands List<String>
- catalog String
- profiles
Directory String - project
Directory String - schema String
- source String
- warehouse
Id String
GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOn
GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications
- No
Alert boolFor Skipped Runs - On
Duration List<string>Warning Threshold Exceededs - On
Failures List<string> - On
Starts List<string> - On
Streaming List<string>Backlog Exceededs - On
Successes List<string>
- No
Alert boolFor Skipped Runs - On
Duration []stringWarning Threshold Exceededs - On
Failures []string - On
Starts []string - On
Streaming []stringBacklog Exceededs - On
Successes []string
- no
Alert BooleanFor Skipped Runs - on
Duration List<String>Warning Threshold Exceededs - on
Failures List<String> - on
Starts List<String> - on
Streaming List<String>Backlog Exceededs - on
Successes List<String>
- no
Alert booleanFor Skipped Runs - on
Duration string[]Warning Threshold Exceededs - on
Failures string[] - on
Starts string[] - on
Streaming string[]Backlog Exceededs - on
Successes string[]
- no_
alert_ boolfor_ skipped_ runs - on_
duration_ Sequence[str]warning_ threshold_ exceededs - on_
failures Sequence[str] - on_
starts Sequence[str] - on_
streaming_ Sequence[str]backlog_ exceededs - on_
successes Sequence[str]
- no
Alert BooleanFor Skipped Runs - on
Duration List<String>Warning Threshold Exceededs - on
Failures List<String> - on
Starts List<String> - on
Streaming List<String>Backlog Exceededs - on
Successes List<String>
GetJobJobSettingsSettingsTaskForEachTaskTaskHealth
GetJobJobSettingsSettingsTaskForEachTaskTaskHealthRule
GetJobJobSettingsSettingsTaskForEachTaskTaskLibrary
- Cran
Get
Job Job Settings Settings Task For Each Task Task Library Cran - Egg string
- Jar string
- Maven
Get
Job Job Settings Settings Task For Each Task Task Library Maven - Provider
Config GetJob Job Settings Settings Task For Each Task Task Library Provider Config - Pypi
Get
Job Job Settings Settings Task For Each Task Task Library Pypi - Requirements string
- Whl string
- Cran
Get
Job Job Settings Settings Task For Each Task Task Library Cran - Egg string
- Jar string
- Maven
Get
Job Job Settings Settings Task For Each Task Task Library Maven - Provider
Config GetJob Job Settings Settings Task For Each Task Task Library Provider Config - Pypi
Get
Job Job Settings Settings Task For Each Task Task Library Pypi - Requirements string
- Whl string
- cran
Get
Job Job Settings Settings Task For Each Task Task Library Cran - egg String
- jar String
- maven
Get
Job Job Settings Settings Task For Each Task Task Library Maven - provider
Config GetJob Job Settings Settings Task For Each Task Task Library Provider Config - pypi
Get
Job Job Settings Settings Task For Each Task Task Library Pypi - requirements String
- whl String
- cran
Get
Job Job Settings Settings Task For Each Task Task Library Cran - egg string
- jar string
- maven
Get
Job Job Settings Settings Task For Each Task Task Library Maven - provider
Config GetJob Job Settings Settings Task For Each Task Task Library Provider Config - pypi
Get
Job Job Settings Settings Task For Each Task Task Library Pypi - requirements string
- whl string
- cran
Get
Job Job Settings Settings Task For Each Task Task Library Cran - egg str
- jar str
- maven
Get
Job Job Settings Settings Task For Each Task Task Library Maven - provider_
config GetJob Job Settings Settings Task For Each Task Task Library Provider Config - pypi
Get
Job Job Settings Settings Task For Each Task Task Library Pypi - requirements str
- whl str
- cran Property Map
- egg String
- jar String
- maven Property Map
- provider
Config Property Map - pypi Property Map
- requirements String
- whl String
GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryCran
GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryMaven
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryProviderConfig
- Workspace
Id string
- Workspace
Id string
- workspace
Id String
- workspace
Id string
- workspace_
id str
- workspace
Id String
GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryPypi
GetJobJobSettingsSettingsTaskForEachTaskTaskNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings Task For Each Task Task New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings Task For Each Task Task New Cluster Cluster Log Conf - Cluster
Mount List<GetInfos Job Job Settings Settings Task For Each Task Task New Cluster Cluster Mount Info> - Cluster
Name string - Dictionary<string, string>
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings Task For Each Task Task New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts List<GetJob Job Settings Settings Task For Each Task Task New Cluster Init Script> - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf Dictionary<string, string> - Spark
Env Dictionary<string, string>Vars - Spark
Version string - Ssh
Public List<string>Keys - Workload
Type GetJob Job Settings Settings Task For Each Task 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 - Apply
Policy boolDefault Values - Autoscale
Get
Job Job Settings Settings Task For Each Task Task New Cluster Autoscale - Autotermination
Minutes int - Aws
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Aws Attributes - Azure
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Azure Attributes - Cluster
Id string - Cluster
Log GetConf Job Job Settings Settings Task For Each Task Task New Cluster Cluster Log Conf - Cluster
Mount []GetInfos Job Job Settings Settings Task For Each Task Task New Cluster Cluster Mount Info - Cluster
Name string - map[string]string
- Data
Security stringMode - Docker
Image GetJob Job Settings Settings Task For Each Task Task New Cluster Docker Image - Gcp
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Gcp Attributes - Idempotency
Token string - Init
Scripts []GetJob Job Settings Settings Task For Each Task Task New Cluster Init Script - Instance
Pool stringId - Policy
Id string - Runtime
Engine string - Single
User stringName - Spark
Conf map[string]string - Spark
Env map[string]stringVars - Spark
Version string - Ssh
Public []stringKeys - Workload
Type GetJob Job Settings Settings Task For Each Task 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 - apply
Policy BooleanDefault Values - autoscale
Get
Job Job Settings Settings Task For Each Task Task New Cluster Autoscale - autotermination
Minutes Integer - aws
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Azure Attributes - cluster
Id String - cluster
Log GetConf Job Job Settings Settings Task For Each Task Task New Cluster Cluster Log Conf - cluster
Mount List<GetInfos Job Job Settings Settings Task For Each Task Task New Cluster Cluster Mount Info> - cluster
Name String - Map<String,String>
- data
Security StringMode - docker
Image GetJob Job Settings Settings Task For Each Task Task New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Gcp Attributes - idempotency
Token String - init
Scripts List<GetJob Job Settings Settings Task For Each Task Task New Cluster Init Script> - instance
Pool StringId - policy
Id String - runtime
Engine String - single
User StringName - spark
Conf Map<String,String> - spark
Env Map<String,String>Vars - spark
Version String - ssh
Public List<String>Keys - workload
Type GetJob Job Settings Settings Task For Each Task 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 - apply
Policy booleanDefault Values - autoscale
Get
Job Job Settings Settings Task For Each Task Task New Cluster Autoscale - autotermination
Minutes number - aws
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Aws Attributes - azure
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Azure Attributes - cluster
Id string - cluster
Log GetConf Job Job Settings Settings Task For Each Task Task New Cluster Cluster Log Conf - cluster
Mount GetInfos Job Job Settings Settings Task For Each Task Task New Cluster Cluster Mount Info[] - cluster
Name string - {[key: string]: string}
- data
Security stringMode - docker
Image GetJob Job Settings Settings Task For Each Task Task New Cluster Docker Image - gcp
Attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Gcp Attributes - idempotency
Token string - init
Scripts GetJob Job Settings Settings Task For Each Task Task New Cluster Init Script[] - instance
Pool stringId - policy
Id string - runtime
Engine string - single
User stringName - spark
Conf {[key: string]: string} - spark
Env {[key: string]: string}Vars - spark
Version string - ssh
Public string[]Keys - workload
Type GetJob Job Settings Settings Task For Each Task 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 - apply_
policy_ booldefault_ values - autoscale
Get
Job Job Settings Settings Task For Each Task Task New Cluster Autoscale - autotermination_
minutes int - aws_
attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Aws Attributes - azure_
attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Azure Attributes - cluster_
id str - cluster_
log_ Getconf Job Job Settings Settings Task For Each Task Task New Cluster Cluster Log Conf - cluster_
mount_ Sequence[Getinfos Job Job Settings Settings Task For Each Task Task New Cluster Cluster Mount Info] - cluster_
name str - Mapping[str, str]
- data_
security_ strmode - docker_
image GetJob Job Settings Settings Task For Each Task Task New Cluster Docker Image - gcp_
attributes GetJob Job Settings Settings Task For Each Task Task New Cluster Gcp Attributes - idempotency_
token str - init_
scripts Sequence[GetJob Job Settings Settings Task For Each Task Task New Cluster Init Script] - instance_
pool_ strid - policy_
id str - runtime_
engine str - single_
user_ strname - spark_
conf Mapping[str, str] - spark_
env_ Mapping[str, str]vars - spark_
version str - ssh_
public_ Sequence[str]keys - workload_
type GetJob Job Settings Settings Task For Each Task 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 - 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<String>
- 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<String> - spark
Env Map<String>Vars - spark
Version String - ssh
Public List<String>Keys - workload
Type Property Map
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAutoscale
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAwsAttributes
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAzureAttributes
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConf
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConfDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConfS3
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfo
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfoNetworkFilesystemInfo
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImage
- url String
- basic
Auth Property Map
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImageBasicAuth
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterGcpAttributes
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - local
Ssd IntegerCount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - local
Ssd numberCount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - local_
ssd_ intcount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - local
Ssd NumberCount - use
Preemptible BooleanExecutors - zone
Id String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScript
- Abfss
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script File - Gcs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script S3 - Volumes
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Volumes - Workspace
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Workspace
- Abfss
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Abfss - Dbfs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Dbfs - File
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script File - Gcs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Gcs - S3
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script S3 - Volumes
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Volumes - Workspace
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script File - gcs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script S3 - volumes
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Volumes - workspace
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script File - gcs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script S3 - volumes
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Volumes - workspace
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Workspace
- abfss
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Abfss - dbfs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Dbfs - file
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script File - gcs
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Gcs - s3
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script S3 - volumes
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Volumes - workspace
Get
Job Job Settings Settings Task For Each Task Task New Cluster Init Script Workspace
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptAbfss
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptDbfs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptFile
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptGcs
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptS3
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptVolumes
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptWorkspace
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadType
GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadTypeClients
GetJobJobSettingsSettingsTaskForEachTaskTaskNotebookTask
- Notebook
Path string - Base
Parameters Dictionary<string, string> - Source string
- Warehouse
Id string
- Notebook
Path string - Base
Parameters map[string]string - Source string
- Warehouse
Id string
- notebook
Path String - base
Parameters Map<String,String> - source String
- warehouse
Id String
- notebook
Path string - base
Parameters {[key: string]: string} - source string
- warehouse
Id string
- notebook_
path str - base_
parameters Mapping[str, str] - source str
- warehouse_
id str
- notebook
Path String - base
Parameters Map<String> - source String
- warehouse
Id String
GetJobJobSettingsSettingsTaskForEachTaskTaskNotificationSettings
- alert
On BooleanLast Attempt - no
Alert BooleanFor Canceled Runs - no
Alert BooleanFor Skipped Runs
- alert
On booleanLast Attempt - no
Alert booleanFor Canceled Runs - no
Alert booleanFor Skipped Runs
- alert
On BooleanLast Attempt - no
Alert BooleanFor Canceled Runs - no
Alert BooleanFor Skipped Runs
GetJobJobSettingsSettingsTaskForEachTaskTaskPipelineTask
- Pipeline
Id string - Full
Refresh bool
- Pipeline
Id string - Full
Refresh bool
- pipeline
Id String - full
Refresh Boolean
- pipeline
Id string - full
Refresh boolean
- pipeline_
id str - full_
refresh bool
- pipeline
Id String - full
Refresh Boolean
GetJobJobSettingsSettingsTaskForEachTaskTaskPowerBiTask
GetJobJobSettingsSettingsTaskForEachTaskTaskPowerBiTaskPowerBiModel
- Authentication
Method string - Model
Name string - Overwrite
Existing bool - Storage
Mode string - Workspace
Name string
- Authentication
Method string - Model
Name string - Overwrite
Existing bool - Storage
Mode string - Workspace
Name string
- authentication
Method String - model
Name String - overwrite
Existing Boolean - storage
Mode String - workspace
Name String
- authentication
Method string - model
Name string - overwrite
Existing boolean - storage
Mode string - workspace
Name string
- authentication_
method str - model_
name str - overwrite_
existing bool - storage_
mode str - workspace_
name str
- authentication
Method String - model
Name String - overwrite
Existing Boolean - storage
Mode String - workspace
Name String
GetJobJobSettingsSettingsTaskForEachTaskTaskPowerBiTaskTable
- Catalog string
- Name string
- the job name of databricks.Job if the resource was matched by id.
- Schema string
- Storage
Mode string
- Catalog string
- Name string
- the job name of databricks.Job if the resource was matched by id.
- Schema string
- Storage
Mode string
- catalog String
- name String
- the job name of databricks.Job if the resource was matched by id.
- schema String
- storage
Mode String
- catalog string
- name string
- the job name of databricks.Job if the resource was matched by id.
- schema string
- storage
Mode string
- catalog str
- name str
- the job name of databricks.Job if the resource was matched by id.
- schema str
- storage_
mode str
- catalog String
- name String
- the job name of databricks.Job if the resource was matched by id.
- schema String
- storage
Mode String
GetJobJobSettingsSettingsTaskForEachTaskTaskPythonWheelTask
- Entry
Point string - Named
Parameters Dictionary<string, string> - Package
Name string - Parameters List<string>
- Entry
Point string - Named
Parameters map[string]string - Package
Name string - Parameters []string
- entry
Point String - named
Parameters Map<String,String> - package
Name String - parameters List<String>
- entry
Point string - named
Parameters {[key: string]: string} - package
Name string - parameters string[]
- entry_
point str - named_
parameters Mapping[str, str] - package_
name str - parameters Sequence[str]
- entry
Point String - named
Parameters Map<String> - package
Name String - parameters List<String>
GetJobJobSettingsSettingsTaskForEachTaskTaskRunJobTask
- Job
Id int - Job
Parameters Dictionary<string, string>
- Job
Id int - Job
Parameters map[string]string
- job
Id Integer - job
Parameters Map<String,String>
- job
Id number - job
Parameters {[key: string]: string}
- job_
id int - job_
parameters Mapping[str, str]
- job
Id Number - job
Parameters Map<String>
GetJobJobSettingsSettingsTaskForEachTaskTaskSparkJarTask
- 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>
GetJobJobSettingsSettingsTaskForEachTaskTaskSparkPythonTask
- 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
GetJobJobSettingsSettingsTaskForEachTaskTaskSparkSubmitTask
- Parameters List<string>
- Parameters []string
- parameters List<String>
- parameters string[]
- parameters Sequence[str]
- parameters List<String>
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask
- Warehouse
Id string - Alert
Get
Job Job Settings Settings Task For Each Task Task Sql Task Alert - Dashboard
Get
Job Job Settings Settings Task For Each Task Task Sql Task Dashboard - File
Get
Job Job Settings Settings Task For Each Task Task Sql Task File - Parameters Dictionary<string, string>
- Query
Get
Job Job Settings Settings Task For Each Task Task Sql Task Query
- Warehouse
Id string - Alert
Get
Job Job Settings Settings Task For Each Task Task Sql Task Alert - Dashboard
Get
Job Job Settings Settings Task For Each Task Task Sql Task Dashboard - File
Get
Job Job Settings Settings Task For Each Task Task Sql Task File - Parameters map[string]string
- Query
Get
Job Job Settings Settings Task For Each Task Task Sql Task Query
- warehouse
Id String - alert
Get
Job Job Settings Settings Task For Each Task Task Sql Task Alert - dashboard
Get
Job Job Settings Settings Task For Each Task Task Sql Task Dashboard - file
Get
Job Job Settings Settings Task For Each Task Task Sql Task File - parameters Map<String,String>
- query
Get
Job Job Settings Settings Task For Each Task Task Sql Task Query
- warehouse
Id string - alert
Get
Job Job Settings Settings Task For Each Task Task Sql Task Alert - dashboard
Get
Job Job Settings Settings Task For Each Task Task Sql Task Dashboard - file
Get
Job Job Settings Settings Task For Each Task Task Sql Task File - parameters {[key: string]: string}
- query
Get
Job Job Settings Settings Task For Each Task Task Sql Task Query
- warehouse
Id String - alert Property Map
- dashboard Property Map
- file Property Map
- parameters Map<String>
- query Property Map
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlert
- alert
Id String - pause
Subscriptions Boolean - subscriptions List<Property Map>
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscription
- Destination
Id string - User
Name string
- Destination
Id string - User
Name string
- destination
Id String - user
Name String
- destination
Id string - user
Name string
- destination_
id str - user_
name str
- destination
Id String - user
Name String
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskDashboard
- dashboard
Id String - custom
Subject String - pause
Subscriptions Boolean - subscriptions List<Property Map>
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskDashboardSubscription
- Destination
Id string - User
Name string
- Destination
Id string - User
Name string
- destination
Id String - user
Name String
- destination
Id string - user
Name string
- destination_
id str - user_
name str
- destination
Id String - user
Name String
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskFile
GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskQuery
- Query
Id string
- Query
Id string
- query
Id String
- query
Id string
- query_
id str
- query
Id String
GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotifications
- On
Duration List<GetWarning Threshold Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Duration Warning Threshold Exceeded> - On
Failures List<GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Failure> - On
Starts List<GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Start> - On
Streaming List<GetBacklog Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Streaming Backlog Exceeded> - On
Successes List<GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Success>
- On
Duration []GetWarning Threshold Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Duration Warning Threshold Exceeded - On
Failures []GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Failure - On
Starts []GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Start - On
Streaming []GetBacklog Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Streaming Backlog Exceeded - On
Successes []GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Success
- on
Duration List<GetWarning Threshold Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Duration Warning Threshold Exceeded> - on
Failures List<GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Failure> - on
Starts List<GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Start> - on
Streaming List<GetBacklog Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Streaming Backlog Exceeded> - on
Successes List<GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Success>
- on
Duration GetWarning Threshold Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Duration Warning Threshold Exceeded[] - on
Failures GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Failure[] - on
Starts GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Start[] - on
Streaming GetBacklog Exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Streaming Backlog Exceeded[] - on
Successes GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Success[]
- on_
duration_ Sequence[Getwarning_ threshold_ exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Duration Warning Threshold Exceeded] - on_
failures Sequence[GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Failure] - on_
starts Sequence[GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Start] - on_
streaming_ Sequence[Getbacklog_ exceededs Job Job Settings Settings Task For Each Task Task Webhook Notifications On Streaming Backlog Exceeded] - on_
successes Sequence[GetJob Job Settings Settings Task For Each Task Task Webhook Notifications On Success]
GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnDurationWarningThresholdExceeded
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnFailure
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnStart
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnStreamingBacklogExceeded
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnSuccess
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskHealth
GetJobJobSettingsSettingsTaskHealthRule
GetJobJobSettingsSettingsTaskLibrary
- cran Property Map
- egg String
- jar String
- maven Property Map
- provider
Config Property Map - pypi Property Map
- requirements String
- 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
GetJobJobSettingsSettingsTaskLibraryProviderConfig
- Workspace
Id string
- Workspace
Id string
- workspace
Id String
- workspace
Id string
- workspace_
id str
- workspace
Id String
GetJobJobSettingsSettingsTaskLibraryPypi
GetJobJobSettingsSettingsTaskNewCluster
- Driver
Instance stringPool Id - Driver
Node stringType Id - Enable
Elastic boolDisk - Enable
Local boolDisk Encryption - Node
Type stringId - Num
Workers int - 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, string>
- 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, string> - Spark
Env Dictionary<string, string>Vars - Spark
Version string - 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 - 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]string
- 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]string - Spark
Env map[string]stringVars - Spark
Version string - 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 - 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,String>
- 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,String> - spark
Env Map<String,String>Vars - spark
Version String - 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 - 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]: string}
- 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]: string} - spark
Env {[key: string]: string}Vars - spark
Version string - 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 - 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, str]
- 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, str] - spark_
env_ Mapping[str, str]vars - spark_
version str - 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 - 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<String>
- 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<String> - spark
Env Map<String>Vars - spark
Version String - 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 - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- Availability string
- Boot
Disk intSize - Google
Service stringAccount - Local
Ssd intCount - Use
Preemptible boolExecutors - Zone
Id string
- availability String
- boot
Disk IntegerSize - google
Service StringAccount - local
Ssd IntegerCount - use
Preemptible BooleanExecutors - zone
Id String
- availability string
- boot
Disk numberSize - google
Service stringAccount - local
Ssd numberCount - use
Preemptible booleanExecutors - zone
Id string
- availability str
- boot_
disk_ intsize - google_
service_ straccount - local_
ssd_ intcount - use_
preemptible_ boolexecutors - zone_
id str
- availability String
- boot
Disk NumberSize - google
Service StringAccount - local
Ssd NumberCount - 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 - Volumes
Get
Job Job Settings Settings Task New Cluster Init Script Volumes - 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 - Volumes
Get
Job Job Settings Settings Task New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings Task New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings Task New Cluster Init Script Volumes - 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 - volumes
Get
Job Job Settings Settings Task New Cluster Init Script Volumes - 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
GetJobJobSettingsSettingsTaskNewClusterInitScriptVolumes
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterInitScriptWorkspace
- Destination string
- Destination string
- destination String
- destination string
- destination str
- destination String
GetJobJobSettingsSettingsTaskNewClusterWorkloadType
GetJobJobSettingsSettingsTaskNewClusterWorkloadTypeClients
GetJobJobSettingsSettingsTaskNotebookTask
- Notebook
Path string - Base
Parameters Dictionary<string, string> - Source string
- Warehouse
Id string
- Notebook
Path string - Base
Parameters map[string]string - Source string
- Warehouse
Id string
- notebook
Path String - base
Parameters Map<String,String> - source String
- warehouse
Id String
- notebook
Path string - base
Parameters {[key: string]: string} - source string
- warehouse
Id string
- notebook_
path str - base_
parameters Mapping[str, str] - source str
- warehouse_
id str
- notebook
Path String - base
Parameters Map<String> - source String
- warehouse
Id String
GetJobJobSettingsSettingsTaskNotificationSettings
- alert
On BooleanLast Attempt - no
Alert BooleanFor Canceled Runs - no
Alert BooleanFor Skipped Runs
- alert
On booleanLast Attempt - no
Alert booleanFor Canceled Runs - no
Alert booleanFor Skipped Runs
- alert
On BooleanLast Attempt - no
Alert BooleanFor Canceled Runs - no
Alert BooleanFor Skipped Runs
GetJobJobSettingsSettingsTaskPipelineTask
- Pipeline
Id string - Full
Refresh bool
- Pipeline
Id string - Full
Refresh bool
- pipeline
Id String - full
Refresh Boolean
- pipeline
Id string - full
Refresh boolean
- pipeline_
id str - full_
refresh bool
- pipeline
Id String - full
Refresh Boolean
GetJobJobSettingsSettingsTaskPowerBiTask
GetJobJobSettingsSettingsTaskPowerBiTaskPowerBiModel
- Authentication
Method string - Model
Name string - Overwrite
Existing bool - Storage
Mode string - Workspace
Name string
- Authentication
Method string - Model
Name string - Overwrite
Existing bool - Storage
Mode string - Workspace
Name string
- authentication
Method String - model
Name String - overwrite
Existing Boolean - storage
Mode String - workspace
Name String
- authentication
Method string - model
Name string - overwrite
Existing boolean - storage
Mode string - workspace
Name string
- authentication_
method str - model_
name str - overwrite_
existing bool - storage_
mode str - workspace_
name str
- authentication
Method String - model
Name String - overwrite
Existing Boolean - storage
Mode String - workspace
Name String
GetJobJobSettingsSettingsTaskPowerBiTaskTable
- Catalog string
- Name string
- the job name of databricks.Job if the resource was matched by id.
- Schema string
- Storage
Mode string
- Catalog string
- Name string
- the job name of databricks.Job if the resource was matched by id.
- Schema string
- Storage
Mode string
- catalog String
- name String
- the job name of databricks.Job if the resource was matched by id.
- schema String
- storage
Mode String
- catalog string
- name string
- the job name of databricks.Job if the resource was matched by id.
- schema string
- storage
Mode string
- catalog str
- name str
- the job name of databricks.Job if the resource was matched by id.
- schema str
- storage_
mode str
- catalog String
- name String
- the job name of databricks.Job if the resource was matched by id.
- schema String
- storage
Mode String
GetJobJobSettingsSettingsTaskPythonWheelTask
- Entry
Point string - Named
Parameters Dictionary<string, string> - Package
Name string - Parameters List<string>
- Entry
Point string - Named
Parameters map[string]string - Package
Name string - Parameters []string
- entry
Point String - named
Parameters Map<String,String> - package
Name String - parameters List<String>
- entry
Point string - named
Parameters {[key: string]: string} - package
Name string - parameters string[]
- entry_
point str - named_
parameters Mapping[str, str] - package_
name str - parameters Sequence[str]
- entry
Point String - named
Parameters Map<String> - package
Name String - parameters List<String>
GetJobJobSettingsSettingsTaskRunJobTask
- Job
Id int - Job
Parameters Dictionary<string, string>
- Job
Id int - Job
Parameters map[string]string
- job
Id Integer - job
Parameters Map<String,String>
- job
Id number - job
Parameters {[key: string]: string}
- job_
id int - job_
parameters Mapping[str, str]
- job
Id Number - job
Parameters Map<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
- warehouse
Id String - alert Property Map
- dashboard Property Map
- file Property Map
- parameters Map<String>
- query Property Map
GetJobJobSettingsSettingsTaskSqlTaskAlert
- alert
Id String - pause
Subscriptions Boolean - subscriptions List<Property Map>
GetJobJobSettingsSettingsTaskSqlTaskAlertSubscription
- Destination
Id string - User
Name string
- Destination
Id string - User
Name string
- destination
Id String - user
Name String
- destination
Id string - user
Name string
- destination_
id str - user_
name str
- destination
Id String - user
Name String
GetJobJobSettingsSettingsTaskSqlTaskDashboard
- dashboard
Id String - custom
Subject String - pause
Subscriptions Boolean - subscriptions List<Property Map>
GetJobJobSettingsSettingsTaskSqlTaskDashboardSubscription
- Destination
Id string - User
Name string
- Destination
Id string - User
Name string
- destination
Id String - user
Name String
- destination
Id string - user
Name string
- destination_
id str - user_
name str
- destination
Id String - user
Name String
GetJobJobSettingsSettingsTaskSqlTaskFile
GetJobJobSettingsSettingsTaskSqlTaskQuery
- Query
Id string
- Query
Id string
- query
Id String
- query
Id string
- query_
id str
- query
Id String
GetJobJobSettingsSettingsTaskWebhookNotifications
- On
Duration List<GetWarning Threshold Exceededs Job Job Settings Settings Task Webhook Notifications On Duration Warning Threshold Exceeded> - On
Failures List<GetJob Job Settings Settings Task Webhook Notifications On Failure> - On
Starts List<GetJob Job Settings Settings Task Webhook Notifications On Start> - On
Streaming List<GetBacklog Exceededs Job Job Settings Settings Task Webhook Notifications On Streaming Backlog Exceeded> - On
Successes List<GetJob Job Settings Settings Task Webhook Notifications On Success>
- On
Duration []GetWarning Threshold Exceededs Job Job Settings Settings Task Webhook Notifications On Duration Warning Threshold Exceeded - On
Failures []GetJob Job Settings Settings Task Webhook Notifications On Failure - On
Starts []GetJob Job Settings Settings Task Webhook Notifications On Start - On
Streaming []GetBacklog Exceededs Job Job Settings Settings Task Webhook Notifications On Streaming Backlog Exceeded - On
Successes []GetJob Job Settings Settings Task Webhook Notifications On Success
- on
Duration List<GetWarning Threshold Exceededs Job Job Settings Settings Task Webhook Notifications On Duration Warning Threshold Exceeded> - on
Failures List<GetJob Job Settings Settings Task Webhook Notifications On Failure> - on
Starts List<GetJob Job Settings Settings Task Webhook Notifications On Start> - on
Streaming List<GetBacklog Exceededs Job Job Settings Settings Task Webhook Notifications On Streaming Backlog Exceeded> - on
Successes List<GetJob Job Settings Settings Task Webhook Notifications On Success>
- on
Duration GetWarning Threshold Exceededs Job Job Settings Settings Task Webhook Notifications On Duration Warning Threshold Exceeded[] - on
Failures GetJob Job Settings Settings Task Webhook Notifications On Failure[] - on
Starts GetJob Job Settings Settings Task Webhook Notifications On Start[] - on
Streaming GetBacklog Exceededs Job Job Settings Settings Task Webhook Notifications On Streaming Backlog Exceeded[] - on
Successes GetJob Job Settings Settings Task Webhook Notifications On Success[]
- on_
duration_ Sequence[Getwarning_ threshold_ exceededs Job Job Settings Settings Task Webhook Notifications On Duration Warning Threshold Exceeded] - on_
failures Sequence[GetJob Job Settings Settings Task Webhook Notifications On Failure] - on_
starts Sequence[GetJob Job Settings Settings Task Webhook Notifications On Start] - on_
streaming_ Sequence[Getbacklog_ exceededs Job Job Settings Settings Task Webhook Notifications On Streaming Backlog Exceeded] - on_
successes Sequence[GetJob Job Settings Settings Task Webhook Notifications On Success]
GetJobJobSettingsSettingsTaskWebhookNotificationsOnDurationWarningThresholdExceeded
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskWebhookNotificationsOnFailure
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskWebhookNotificationsOnStart
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskWebhookNotificationsOnStreamingBacklogExceeded
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTaskWebhookNotificationsOnSuccess
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsTrigger
GetJobJobSettingsSettingsTriggerFileArrival
- Url string
- Min
Time intBetween Triggers Seconds - Wait
After intLast Change Seconds
- Url string
- Min
Time intBetween Triggers Seconds - Wait
After intLast Change Seconds
- url String
- min
Time IntegerBetween Triggers Seconds - wait
After IntegerLast Change Seconds
- url string
- min
Time numberBetween Triggers Seconds - wait
After numberLast Change Seconds
- url String
- min
Time NumberBetween Triggers Seconds - wait
After NumberLast Change Seconds
GetJobJobSettingsSettingsTriggerPeriodic
GetJobJobSettingsSettingsTriggerTableUpdate
- Table
Names List<string> - Condition string
- Min
Time intBetween Triggers Seconds - Wait
After intLast Change Seconds
- Table
Names []string - Condition string
- Min
Time intBetween Triggers Seconds - Wait
After intLast Change Seconds
- table
Names List<String> - condition String
- min
Time IntegerBetween Triggers Seconds - wait
After IntegerLast Change Seconds
- table
Names string[] - condition string
- min
Time numberBetween Triggers Seconds - wait
After numberLast Change Seconds
- table_
names Sequence[str] - condition str
- min_
time_ intbetween_ triggers_ seconds - wait_
after_ intlast_ change_ seconds
- table
Names List<String> - condition String
- min
Time NumberBetween Triggers Seconds - wait
After NumberLast Change Seconds
GetJobJobSettingsSettingsWebhookNotifications
- On
Duration List<GetWarning Threshold Exceededs Job Job Settings Settings Webhook Notifications On Duration Warning Threshold Exceeded> - On
Failures List<GetJob Job Settings Settings Webhook Notifications On Failure> - On
Starts List<GetJob Job Settings Settings Webhook Notifications On Start> - On
Streaming List<GetBacklog Exceededs Job Job Settings Settings Webhook Notifications On Streaming Backlog Exceeded> - On
Successes List<GetJob Job Settings Settings Webhook Notifications On Success>
- On
Duration []GetWarning Threshold Exceededs Job Job Settings Settings Webhook Notifications On Duration Warning Threshold Exceeded - On
Failures []GetJob Job Settings Settings Webhook Notifications On Failure - On
Starts []GetJob Job Settings Settings Webhook Notifications On Start - On
Streaming []GetBacklog Exceededs Job Job Settings Settings Webhook Notifications On Streaming Backlog Exceeded - On
Successes []GetJob Job Settings Settings Webhook Notifications On Success
- on
Duration List<GetWarning Threshold Exceededs Job Job Settings Settings Webhook Notifications On Duration Warning Threshold Exceeded> - on
Failures List<GetJob Job Settings Settings Webhook Notifications On Failure> - on
Starts List<GetJob Job Settings Settings Webhook Notifications On Start> - on
Streaming List<GetBacklog Exceededs Job Job Settings Settings Webhook Notifications On Streaming Backlog Exceeded> - on
Successes List<GetJob Job Settings Settings Webhook Notifications On Success>
- on
Duration GetWarning Threshold Exceededs Job Job Settings Settings Webhook Notifications On Duration Warning Threshold Exceeded[] - on
Failures GetJob Job Settings Settings Webhook Notifications On Failure[] - on
Starts GetJob Job Settings Settings Webhook Notifications On Start[] - on
Streaming GetBacklog Exceededs Job Job Settings Settings Webhook Notifications On Streaming Backlog Exceeded[] - on
Successes GetJob Job Settings Settings Webhook Notifications On Success[]
- on_
duration_ Sequence[Getwarning_ threshold_ exceededs Job Job Settings Settings Webhook Notifications On Duration Warning Threshold Exceeded] - on_
failures Sequence[GetJob Job Settings Settings Webhook Notifications On Failure] - on_
starts Sequence[GetJob Job Settings Settings Webhook Notifications On Start] - on_
streaming_ Sequence[Getbacklog_ exceededs Job Job Settings Settings Webhook Notifications On Streaming Backlog Exceeded] - on_
successes Sequence[GetJob Job Settings Settings Webhook Notifications On Success]
GetJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceeded
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsWebhookNotificationsOnFailure
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsWebhookNotificationsOnStart
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsWebhookNotificationsOnStreamingBacklogExceeded
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
GetJobJobSettingsSettingsWebhookNotificationsOnSuccess
- Id string
- the id of databricks.Job if the resource was matched by name.
- Id string
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
- id string
- the id of databricks.Job if the resource was matched by name.
- id str
- the id of databricks.Job if the resource was matched by name.
- id String
- the id of databricks.Job if the resource was matched by name.
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
