1. Packages
  2. Databricks Provider
  3. API Docs
  4. getJob
Databricks v1.65.0 published on Wednesday, Apr 9, 2025 by Pulumi

databricks.getJob

Explore with Pulumi AI

Databricks v1.65.0 published on Wednesday, Apr 9, 2025 by Pulumi

Note If you have a fully automated setup with workspaces created by databricks.MwsWorkspaces or azurerm_databricks_workspace, please make sure to add depends_on attribute in order to prevent default auth: cannot configure default credentials errors.

Retrieves the settings of databricks.Job by name or by id. Complements the feature of the databricks.getJobs data source.

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);
Copy
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)
Copy
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
	})
}
Copy
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)),
    };
});
Copy
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());
    }
}
Copy
variables:
  this:
    fn::invoke:
      function: databricks:getJob
      arguments:
        jobName: My job
outputs:
  jobNumWorkers: ${this.jobSettings.settings.newCluster.numWorkers}
Copy

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>
Copy
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]
Copy
func LookupJob(ctx *Context, args *LookupJobArgs, opts ...InvokeOption) (*LookupJobResult, error)
func LookupJobOutput(ctx *Context, args *LookupJobOutputArgs, opts ...InvokeOption) LookupJobResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
public static Output<GetJobResult> getJob(GetJobArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: databricks:index/getJob:getJob
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Id string
the id of databricks.Job if the resource was matched by name.
JobId string
JobName string
JobSettings GetJobJobSettings
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.
JobId string
JobName string
JobSettings GetJobJobSettings
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.
jobId String
jobName String
jobSettings GetJobJobSettings
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.
jobId string
jobName string
jobSettings GetJobJobSettings
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 GetJobJobSettings
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.
jobId String
jobName String
jobSettings 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.
JobId string
JobName string
JobSettings GetJobJobSettings
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.
JobId string
JobName string
JobSettings GetJobJobSettings
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.
jobId String
jobName String
jobSettings GetJobJobSettings
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.
jobId string
jobName string
jobSettings GetJobJobSettings
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 GetJobJobSettings
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.
jobId String
jobName String
jobSettings 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

runAsUserName This property is required. String
createdTime Integer
creatorUserName String
jobId Integer
settings GetJobJobSettingsSettings
runAsUserName This property is required. string
createdTime number
creatorUserName string
jobId number
settings GetJobJobSettingsSettings
runAsUserName This property is required. String
createdTime Number
creatorUserName String
jobId Number
settings Property Map

GetJobJobSettingsSettings

Format This property is required. string
RunAs This property is required. GetJobJobSettingsSettingsRunAs
Continuous GetJobJobSettingsSettingsContinuous
DbtTask GetJobJobSettingsSettingsDbtTask
Deployment GetJobJobSettingsSettingsDeployment
Description string
EditMode string
EmailNotifications GetJobJobSettingsSettingsEmailNotifications
Environments List<GetJobJobSettingsSettingsEnvironment>
ExistingClusterId string
GitSource GetJobJobSettingsSettingsGitSource
Health GetJobJobSettingsSettingsHealth
JobClusters List<GetJobJobSettingsSettingsJobCluster>
Libraries List<GetJobJobSettingsSettingsLibrary>
MaxConcurrentRuns int
MaxRetries int
MinRetryIntervalMillis int
Name string
the job name of databricks.Job if the resource was matched by id.
NewCluster GetJobJobSettingsSettingsNewCluster
NotebookTask GetJobJobSettingsSettingsNotebookTask
NotificationSettings GetJobJobSettingsSettingsNotificationSettings
Parameters List<GetJobJobSettingsSettingsParameter>
PipelineTask GetJobJobSettingsSettingsPipelineTask
PythonWheelTask GetJobJobSettingsSettingsPythonWheelTask
Queue GetJobJobSettingsSettingsQueue
RetryOnTimeout bool
RunJobTask GetJobJobSettingsSettingsRunJobTask
Schedule GetJobJobSettingsSettingsSchedule
SparkJarTask GetJobJobSettingsSettingsSparkJarTask
SparkPythonTask GetJobJobSettingsSettingsSparkPythonTask
SparkSubmitTask GetJobJobSettingsSettingsSparkSubmitTask
Tags Dictionary<string, string>
Tasks List<GetJobJobSettingsSettingsTask>
TimeoutSeconds int
Trigger GetJobJobSettingsSettingsTrigger
WebhookNotifications GetJobJobSettingsSettingsWebhookNotifications
Format This property is required. string
RunAs This property is required. GetJobJobSettingsSettingsRunAs
Continuous GetJobJobSettingsSettingsContinuous
DbtTask GetJobJobSettingsSettingsDbtTask
Deployment GetJobJobSettingsSettingsDeployment
Description string
EditMode string
EmailNotifications GetJobJobSettingsSettingsEmailNotifications
Environments []GetJobJobSettingsSettingsEnvironment
ExistingClusterId string
GitSource GetJobJobSettingsSettingsGitSource
Health GetJobJobSettingsSettingsHealth
JobClusters []GetJobJobSettingsSettingsJobCluster
Libraries []GetJobJobSettingsSettingsLibrary
MaxConcurrentRuns int
MaxRetries int
MinRetryIntervalMillis int
Name string
the job name of databricks.Job if the resource was matched by id.
NewCluster GetJobJobSettingsSettingsNewCluster
NotebookTask GetJobJobSettingsSettingsNotebookTask
NotificationSettings GetJobJobSettingsSettingsNotificationSettings
Parameters []GetJobJobSettingsSettingsParameter
PipelineTask GetJobJobSettingsSettingsPipelineTask
PythonWheelTask GetJobJobSettingsSettingsPythonWheelTask
Queue GetJobJobSettingsSettingsQueue
RetryOnTimeout bool
RunJobTask GetJobJobSettingsSettingsRunJobTask
Schedule GetJobJobSettingsSettingsSchedule
SparkJarTask GetJobJobSettingsSettingsSparkJarTask
SparkPythonTask GetJobJobSettingsSettingsSparkPythonTask
SparkSubmitTask GetJobJobSettingsSettingsSparkSubmitTask
Tags map[string]string
Tasks []GetJobJobSettingsSettingsTask
TimeoutSeconds int
Trigger GetJobJobSettingsSettingsTrigger
WebhookNotifications GetJobJobSettingsSettingsWebhookNotifications
format This property is required. String
runAs This property is required. GetJobJobSettingsSettingsRunAs
continuous GetJobJobSettingsSettingsContinuous
dbtTask GetJobJobSettingsSettingsDbtTask
deployment GetJobJobSettingsSettingsDeployment
description String
editMode String
emailNotifications GetJobJobSettingsSettingsEmailNotifications
environments List<GetJobJobSettingsSettingsEnvironment>
existingClusterId String
gitSource GetJobJobSettingsSettingsGitSource
health GetJobJobSettingsSettingsHealth
jobClusters List<GetJobJobSettingsSettingsJobCluster>
libraries List<GetJobJobSettingsSettingsLibrary>
maxConcurrentRuns Integer
maxRetries Integer
minRetryIntervalMillis Integer
name String
the job name of databricks.Job if the resource was matched by id.
newCluster GetJobJobSettingsSettingsNewCluster
notebookTask GetJobJobSettingsSettingsNotebookTask
notificationSettings GetJobJobSettingsSettingsNotificationSettings
parameters List<GetJobJobSettingsSettingsParameter>
pipelineTask GetJobJobSettingsSettingsPipelineTask
pythonWheelTask GetJobJobSettingsSettingsPythonWheelTask
queue GetJobJobSettingsSettingsQueue
retryOnTimeout Boolean
runJobTask GetJobJobSettingsSettingsRunJobTask
schedule GetJobJobSettingsSettingsSchedule
sparkJarTask GetJobJobSettingsSettingsSparkJarTask
sparkPythonTask GetJobJobSettingsSettingsSparkPythonTask
sparkSubmitTask GetJobJobSettingsSettingsSparkSubmitTask
tags Map<String,String>
tasks List<GetJobJobSettingsSettingsTask>
timeoutSeconds Integer
trigger GetJobJobSettingsSettingsTrigger
webhookNotifications GetJobJobSettingsSettingsWebhookNotifications
format This property is required. string
runAs This property is required. GetJobJobSettingsSettingsRunAs
continuous GetJobJobSettingsSettingsContinuous
dbtTask GetJobJobSettingsSettingsDbtTask
deployment GetJobJobSettingsSettingsDeployment
description string
editMode string
emailNotifications GetJobJobSettingsSettingsEmailNotifications
environments GetJobJobSettingsSettingsEnvironment[]
existingClusterId string
gitSource GetJobJobSettingsSettingsGitSource
health GetJobJobSettingsSettingsHealth
jobClusters GetJobJobSettingsSettingsJobCluster[]
libraries GetJobJobSettingsSettingsLibrary[]
maxConcurrentRuns number
maxRetries number
minRetryIntervalMillis number
name string
the job name of databricks.Job if the resource was matched by id.
newCluster GetJobJobSettingsSettingsNewCluster
notebookTask GetJobJobSettingsSettingsNotebookTask
notificationSettings GetJobJobSettingsSettingsNotificationSettings
parameters GetJobJobSettingsSettingsParameter[]
pipelineTask GetJobJobSettingsSettingsPipelineTask
pythonWheelTask GetJobJobSettingsSettingsPythonWheelTask
queue GetJobJobSettingsSettingsQueue
retryOnTimeout boolean
runJobTask GetJobJobSettingsSettingsRunJobTask
schedule GetJobJobSettingsSettingsSchedule
sparkJarTask GetJobJobSettingsSettingsSparkJarTask
sparkPythonTask GetJobJobSettingsSettingsSparkPythonTask
sparkSubmitTask GetJobJobSettingsSettingsSparkSubmitTask
tags {[key: string]: string}
tasks GetJobJobSettingsSettingsTask[]
timeoutSeconds number
trigger GetJobJobSettingsSettingsTrigger
webhookNotifications GetJobJobSettingsSettingsWebhookNotifications
format This property is required. str
run_as This property is required. GetJobJobSettingsSettingsRunAs
continuous GetJobJobSettingsSettingsContinuous
dbt_task GetJobJobSettingsSettingsDbtTask
deployment GetJobJobSettingsSettingsDeployment
description str
edit_mode str
email_notifications GetJobJobSettingsSettingsEmailNotifications
environments Sequence[GetJobJobSettingsSettingsEnvironment]
existing_cluster_id str
git_source GetJobJobSettingsSettingsGitSource
health GetJobJobSettingsSettingsHealth
job_clusters Sequence[GetJobJobSettingsSettingsJobCluster]
libraries Sequence[GetJobJobSettingsSettingsLibrary]
max_concurrent_runs int
max_retries int
min_retry_interval_millis int
name str
the job name of databricks.Job if the resource was matched by id.
new_cluster GetJobJobSettingsSettingsNewCluster
notebook_task GetJobJobSettingsSettingsNotebookTask
notification_settings GetJobJobSettingsSettingsNotificationSettings
parameters Sequence[GetJobJobSettingsSettingsParameter]
pipeline_task GetJobJobSettingsSettingsPipelineTask
python_wheel_task GetJobJobSettingsSettingsPythonWheelTask
queue GetJobJobSettingsSettingsQueue
retry_on_timeout bool
run_job_task GetJobJobSettingsSettingsRunJobTask
schedule GetJobJobSettingsSettingsSchedule
spark_jar_task GetJobJobSettingsSettingsSparkJarTask
spark_python_task GetJobJobSettingsSettingsSparkPythonTask
spark_submit_task GetJobJobSettingsSettingsSparkSubmitTask
tags Mapping[str, str]
tasks Sequence[GetJobJobSettingsSettingsTask]
timeout_seconds int
trigger GetJobJobSettingsSettingsTrigger
webhook_notifications GetJobJobSettingsSettingsWebhookNotifications
format This property is required. String
runAs This property is required. Property Map
continuous Property Map
dbtTask Property Map
deployment Property Map
description String
editMode String
emailNotifications Property Map
environments List<Property Map>
existingClusterId String
gitSource Property Map
health Property Map
jobClusters List<Property Map>
libraries List<Property Map>
maxConcurrentRuns Number
maxRetries Number
minRetryIntervalMillis Number
name String
the job name of databricks.Job if the resource was matched by id.
newCluster Property Map
notebookTask Property Map
notificationSettings Property Map
parameters List<Property Map>
pipelineTask Property Map
pythonWheelTask Property Map
queue Property Map
retryOnTimeout Boolean
runJobTask Property Map
schedule Property Map
sparkJarTask Property Map
sparkPythonTask Property Map
sparkSubmitTask Property Map
tags Map<String>
tasks List<Property Map>
timeoutSeconds Number
trigger Property Map
webhookNotifications Property Map

GetJobJobSettingsSettingsContinuous

GetJobJobSettingsSettingsDbtTask

Commands This property is required. List<string>
Catalog string
ProfilesDirectory string
ProjectDirectory string
Schema string
Source string
WarehouseId string
Commands This property is required. []string
Catalog string
ProfilesDirectory string
ProjectDirectory string
Schema string
Source string
WarehouseId string
commands This property is required. List<String>
catalog String
profilesDirectory String
projectDirectory String
schema String
source String
warehouseId String
commands This property is required. string[]
catalog string
profilesDirectory string
projectDirectory string
schema string
source string
warehouseId string
commands This property is required. Sequence[str]
catalog str
profiles_directory str
project_directory str
schema str
source str
warehouse_id str
commands This property is required. List<String>
catalog String
profilesDirectory String
projectDirectory String
schema String
source String
warehouseId String

GetJobJobSettingsSettingsDeployment

Kind This property is required. string
MetadataFilePath string
Kind This property is required. string
MetadataFilePath string
kind This property is required. String
metadataFilePath String
kind This property is required. string
metadataFilePath string
kind This property is required. str
metadata_file_path str
kind This property is required. String
metadataFilePath String

GetJobJobSettingsSettingsEmailNotifications

GetJobJobSettingsSettingsEnvironment

environmentKey This property is required. String
spec Property Map

GetJobJobSettingsSettingsEnvironmentSpec

Client This property is required. string
Dependencies List<string>
Client This property is required. string
Dependencies []string
client This property is required. String
dependencies List<String>
client This property is required. string
dependencies string[]
client This property is required. str
dependencies Sequence[str]
client This property is required. String
dependencies List<String>

GetJobJobSettingsSettingsGitSource

Url This property is required. string
Branch string
Commit string
JobSource GetJobJobSettingsSettingsGitSourceJobSource
Provider string
Tag string
Url This property is required. string
Branch string
Commit string
JobSource GetJobJobSettingsSettingsGitSourceJobSource
Provider string
Tag string
url This property is required. String
branch String
commit String
jobSource GetJobJobSettingsSettingsGitSourceJobSource
provider String
tag String
url This property is required. string
branch string
commit string
jobSource GetJobJobSettingsSettingsGitSourceJobSource
provider string
tag string
url This property is required. String
branch String
commit String
jobSource Property Map
provider String
tag String

GetJobJobSettingsSettingsGitSourceJobSource

ImportFromGitBranch This property is required. string
JobConfigPath This property is required. string
DirtyState string
ImportFromGitBranch This property is required. string
JobConfigPath This property is required. string
DirtyState string
importFromGitBranch This property is required. String
jobConfigPath This property is required. String
dirtyState String
importFromGitBranch This property is required. string
jobConfigPath This property is required. string
dirtyState string
import_from_git_branch This property is required. str
job_config_path This property is required. str
dirty_state str
importFromGitBranch This property is required. String
jobConfigPath This property is required. String
dirtyState String

GetJobJobSettingsSettingsHealth

Rules This property is required. []GetJobJobSettingsSettingsHealthRule
rules This property is required. GetJobJobSettingsSettingsHealthRule[]
rules This property is required. List<Property Map>

GetJobJobSettingsSettingsHealthRule

Metric This property is required. string
Op This property is required. string
Value This property is required. int
Metric This property is required. string
Op This property is required. string
Value This property is required. int
metric This property is required. String
op This property is required. String
value This property is required. Integer
metric This property is required. string
op This property is required. string
value This property is required. number
metric This property is required. str
op This property is required. str
value This property is required. int
metric This property is required. String
op This property is required. String
value This property is required. Number

GetJobJobSettingsSettingsJobCluster

JobClusterKey This property is required. string
NewCluster This property is required. GetJobJobSettingsSettingsJobClusterNewCluster
JobClusterKey This property is required. string
NewCluster This property is required. GetJobJobSettingsSettingsJobClusterNewCluster
jobClusterKey This property is required. String
newCluster This property is required. GetJobJobSettingsSettingsJobClusterNewCluster
jobClusterKey This property is required. string
newCluster This property is required. GetJobJobSettingsSettingsJobClusterNewCluster
job_cluster_key This property is required. str
new_cluster This property is required. GetJobJobSettingsSettingsJobClusterNewCluster
jobClusterKey This property is required. String
newCluster This property is required. Property Map

GetJobJobSettingsSettingsJobClusterNewCluster

DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsJobClusterNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsJobClusterNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsJobClusterNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConf
ClusterMountInfos List<GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo>
ClusterName string
CustomTags Dictionary<string, string>
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsJobClusterNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsJobClusterNewClusterGcpAttributes
IdempotencyToken string
InitScripts List<GetJobJobSettingsSettingsJobClusterNewClusterInitScript>
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf Dictionary<string, string>
SparkEnvVars Dictionary<string, string>
SshPublicKeys List<string>
WorkloadType GetJobJobSettingsSettingsJobClusterNewClusterWorkloadType
DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsJobClusterNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsJobClusterNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsJobClusterNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConf
ClusterMountInfos []GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo
ClusterName string
CustomTags map[string]string
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsJobClusterNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsJobClusterNewClusterGcpAttributes
IdempotencyToken string
InitScripts []GetJobJobSettingsSettingsJobClusterNewClusterInitScript
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf map[string]string
SparkEnvVars map[string]string
SshPublicKeys []string
WorkloadType GetJobJobSettingsSettingsJobClusterNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Integer
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale GetJobJobSettingsSettingsJobClusterNewClusterAutoscale
autoterminationMinutes Integer
awsAttributes GetJobJobSettingsSettingsJobClusterNewClusterAwsAttributes
azureAttributes GetJobJobSettingsSettingsJobClusterNewClusterAzureAttributes
clusterId String
clusterLogConf GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConf
clusterMountInfos List<GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo>
clusterName String
customTags Map<String,String>
dataSecurityMode String
dockerImage GetJobJobSettingsSettingsJobClusterNewClusterDockerImage
gcpAttributes GetJobJobSettingsSettingsJobClusterNewClusterGcpAttributes
idempotencyToken String
initScripts List<GetJobJobSettingsSettingsJobClusterNewClusterInitScript>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String,String>
sparkEnvVars Map<String,String>
sshPublicKeys List<String>
workloadType GetJobJobSettingsSettingsJobClusterNewClusterWorkloadType
driver_instance_pool_id This property is required. str
driver_node_type_id This property is required. str
enable_elastic_disk This property is required. bool
enable_local_disk_encryption This property is required. bool
node_type_id This property is required. str
num_workers This property is required. int
spark_version This property is required. str
apply_policy_default_values bool
autoscale GetJobJobSettingsSettingsJobClusterNewClusterAutoscale
autotermination_minutes int
aws_attributes GetJobJobSettingsSettingsJobClusterNewClusterAwsAttributes
azure_attributes GetJobJobSettingsSettingsJobClusterNewClusterAzureAttributes
cluster_id str
cluster_log_conf GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConf
cluster_mount_infos Sequence[GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo]
cluster_name str
custom_tags Mapping[str, str]
data_security_mode str
docker_image GetJobJobSettingsSettingsJobClusterNewClusterDockerImage
gcp_attributes GetJobJobSettingsSettingsJobClusterNewClusterGcpAttributes
idempotency_token str
init_scripts Sequence[GetJobJobSettingsSettingsJobClusterNewClusterInitScript]
instance_pool_id str
policy_id str
runtime_engine str
single_user_name str
spark_conf Mapping[str, str]
spark_env_vars Mapping[str, str]
ssh_public_keys Sequence[str]
workload_type GetJobJobSettingsSettingsJobClusterNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Number
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale Property Map
autoterminationMinutes Number
awsAttributes Property Map
azureAttributes Property Map
clusterId String
clusterLogConf Property Map
clusterMountInfos List<Property Map>
clusterName String
customTags Map<String>
dataSecurityMode String
dockerImage Property Map
gcpAttributes Property Map
idempotencyToken String
initScripts List<Property Map>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String>
sparkEnvVars Map<String>
sshPublicKeys List<String>
workloadType Property Map

GetJobJobSettingsSettingsJobClusterNewClusterAutoscale

maxWorkers Integer
minWorkers Integer
maxWorkers number
minWorkers number
maxWorkers Number
minWorkers Number

GetJobJobSettingsSettingsJobClusterNewClusterAwsAttributes

GetJobJobSettingsSettingsJobClusterNewClusterAzureAttributes

GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConf

GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConfDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterClusterLogConfS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfo

localMountDirPath This property is required. String
networkFilesystemInfo This property is required. Property Map
remoteMountDirPath String

GetJobJobSettingsSettingsJobClusterNewClusterClusterMountInfoNetworkFilesystemInfo

ServerAddress This property is required. string
MountOptions string
ServerAddress This property is required. string
MountOptions string
serverAddress This property is required. String
mountOptions String
serverAddress This property is required. string
mountOptions string
server_address This property is required. str
mount_options str
serverAddress This property is required. String
mountOptions String

GetJobJobSettingsSettingsJobClusterNewClusterDockerImage

url This property is required. String
basicAuth Property Map

GetJobJobSettingsSettingsJobClusterNewClusterDockerImageBasicAuth

Password This property is required. string
Username This property is required. string
Password This property is required. string
Username This property is required. string
password This property is required. String
username This property is required. String
password This property is required. string
username This property is required. string
password This property is required. str
username This property is required. str
password This property is required. String
username This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterGcpAttributes

GetJobJobSettingsSettingsJobClusterNewClusterInitScript

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptAbfss

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptFile

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptGcs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptVolumes

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterInitScriptWorkspace

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsJobClusterNewClusterWorkloadType

clients This property is required. Property Map

GetJobJobSettingsSettingsJobClusterNewClusterWorkloadTypeClients

Jobs bool
Notebooks bool
Jobs bool
Notebooks bool
jobs Boolean
notebooks Boolean
jobs boolean
notebooks boolean
jobs bool
notebooks bool
jobs Boolean
notebooks Boolean

GetJobJobSettingsSettingsLibrary

GetJobJobSettingsSettingsLibraryCran

Package This property is required. string
Repo string
Package This property is required. string
Repo string
package_ This property is required. String
repo String
package This property is required. string
repo string
package This property is required. str
repo str
package This property is required. String
repo String

GetJobJobSettingsSettingsLibraryMaven

Coordinates This property is required. string
Exclusions List<string>
Repo string
Coordinates This property is required. string
Exclusions []string
Repo string
coordinates This property is required. String
exclusions List<String>
repo String
coordinates This property is required. string
exclusions string[]
repo string
coordinates This property is required. str
exclusions Sequence[str]
repo str
coordinates This property is required. String
exclusions List<String>
repo String

GetJobJobSettingsSettingsLibraryPypi

Package This property is required. string
Repo string
Package This property is required. string
Repo string
package_ This property is required. String
repo String
package This property is required. string
repo string
package This property is required. str
repo str
package This property is required. String
repo String

GetJobJobSettingsSettingsNewCluster

DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsNewClusterClusterLogConf
ClusterMountInfos List<GetJobJobSettingsSettingsNewClusterClusterMountInfo>
ClusterName string
CustomTags Dictionary<string, string>
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsNewClusterGcpAttributes
IdempotencyToken string
InitScripts List<GetJobJobSettingsSettingsNewClusterInitScript>
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf Dictionary<string, string>
SparkEnvVars Dictionary<string, string>
SshPublicKeys List<string>
WorkloadType GetJobJobSettingsSettingsNewClusterWorkloadType
DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsNewClusterClusterLogConf
ClusterMountInfos []GetJobJobSettingsSettingsNewClusterClusterMountInfo
ClusterName string
CustomTags map[string]string
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsNewClusterGcpAttributes
IdempotencyToken string
InitScripts []GetJobJobSettingsSettingsNewClusterInitScript
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf map[string]string
SparkEnvVars map[string]string
SshPublicKeys []string
WorkloadType GetJobJobSettingsSettingsNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Integer
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale GetJobJobSettingsSettingsNewClusterAutoscale
autoterminationMinutes Integer
awsAttributes GetJobJobSettingsSettingsNewClusterAwsAttributes
azureAttributes GetJobJobSettingsSettingsNewClusterAzureAttributes
clusterId String
clusterLogConf GetJobJobSettingsSettingsNewClusterClusterLogConf
clusterMountInfos List<GetJobJobSettingsSettingsNewClusterClusterMountInfo>
clusterName String
customTags Map<String,String>
dataSecurityMode String
dockerImage GetJobJobSettingsSettingsNewClusterDockerImage
gcpAttributes GetJobJobSettingsSettingsNewClusterGcpAttributes
idempotencyToken String
initScripts List<GetJobJobSettingsSettingsNewClusterInitScript>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String,String>
sparkEnvVars Map<String,String>
sshPublicKeys List<String>
workloadType GetJobJobSettingsSettingsNewClusterWorkloadType
driver_instance_pool_id This property is required. str
driver_node_type_id This property is required. str
enable_elastic_disk This property is required. bool
enable_local_disk_encryption This property is required. bool
node_type_id This property is required. str
num_workers This property is required. int
spark_version This property is required. str
apply_policy_default_values bool
autoscale GetJobJobSettingsSettingsNewClusterAutoscale
autotermination_minutes int
aws_attributes GetJobJobSettingsSettingsNewClusterAwsAttributes
azure_attributes GetJobJobSettingsSettingsNewClusterAzureAttributes
cluster_id str
cluster_log_conf GetJobJobSettingsSettingsNewClusterClusterLogConf
cluster_mount_infos Sequence[GetJobJobSettingsSettingsNewClusterClusterMountInfo]
cluster_name str
custom_tags Mapping[str, str]
data_security_mode str
docker_image GetJobJobSettingsSettingsNewClusterDockerImage
gcp_attributes GetJobJobSettingsSettingsNewClusterGcpAttributes
idempotency_token str
init_scripts Sequence[GetJobJobSettingsSettingsNewClusterInitScript]
instance_pool_id str
policy_id str
runtime_engine str
single_user_name str
spark_conf Mapping[str, str]
spark_env_vars Mapping[str, str]
ssh_public_keys Sequence[str]
workload_type GetJobJobSettingsSettingsNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Number
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale Property Map
autoterminationMinutes Number
awsAttributes Property Map
azureAttributes Property Map
clusterId String
clusterLogConf Property Map
clusterMountInfos List<Property Map>
clusterName String
customTags Map<String>
dataSecurityMode String
dockerImage Property Map
gcpAttributes Property Map
idempotencyToken String
initScripts List<Property Map>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String>
sparkEnvVars Map<String>
sshPublicKeys List<String>
workloadType Property Map

GetJobJobSettingsSettingsNewClusterAutoscale

maxWorkers Integer
minWorkers Integer
maxWorkers number
minWorkers number
maxWorkers Number
minWorkers Number

GetJobJobSettingsSettingsNewClusterAwsAttributes

GetJobJobSettingsSettingsNewClusterAzureAttributes

GetJobJobSettingsSettingsNewClusterClusterLogConf

GetJobJobSettingsSettingsNewClusterClusterLogConfDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterClusterLogConfS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsNewClusterClusterMountInfo

localMountDirPath This property is required. String
networkFilesystemInfo This property is required. Property Map
remoteMountDirPath String

GetJobJobSettingsSettingsNewClusterClusterMountInfoNetworkFilesystemInfo

ServerAddress This property is required. string
MountOptions string
ServerAddress This property is required. string
MountOptions string
serverAddress This property is required. String
mountOptions String
serverAddress This property is required. string
mountOptions string
server_address This property is required. str
mount_options str
serverAddress This property is required. String
mountOptions String

GetJobJobSettingsSettingsNewClusterDockerImage

url This property is required. String
basicAuth Property Map

GetJobJobSettingsSettingsNewClusterDockerImageBasicAuth

Password This property is required. string
Username This property is required. string
Password This property is required. string
Username This property is required. string
password This property is required. String
username This property is required. String
password This property is required. string
username This property is required. string
password This property is required. str
username This property is required. str
password This property is required. String
username This property is required. String

GetJobJobSettingsSettingsNewClusterGcpAttributes

GetJobJobSettingsSettingsNewClusterInitScript

GetJobJobSettingsSettingsNewClusterInitScriptAbfss

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterInitScriptDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterInitScriptFile

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterInitScriptGcs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterInitScriptS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsNewClusterInitScriptVolumes

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterInitScriptWorkspace

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsNewClusterWorkloadType

clients This property is required. Property Map

GetJobJobSettingsSettingsNewClusterWorkloadTypeClients

Jobs bool
Notebooks bool
Jobs bool
Notebooks bool
jobs Boolean
notebooks Boolean
jobs boolean
notebooks boolean
jobs bool
notebooks bool
jobs Boolean
notebooks Boolean

GetJobJobSettingsSettingsNotebookTask

NotebookPath This property is required. string
BaseParameters Dictionary<string, string>
Source string
WarehouseId string
NotebookPath This property is required. string
BaseParameters map[string]string
Source string
WarehouseId string
notebookPath This property is required. String
baseParameters Map<String,String>
source String
warehouseId String
notebookPath This property is required. string
baseParameters {[key: string]: string}
source string
warehouseId string
notebook_path This property is required. str
base_parameters Mapping[str, str]
source str
warehouse_id str
notebookPath This property is required. String
baseParameters Map<String>
source String
warehouseId String

GetJobJobSettingsSettingsNotificationSettings

GetJobJobSettingsSettingsParameter

Default This property is required. string
Name This property is required. string
the job name of databricks.Job if the resource was matched by id.
Default This property is required. string
Name This property is required. string
the job name of databricks.Job if the resource was matched by id.
default_ This property is required. String
name This property is required. String
the job name of databricks.Job if the resource was matched by id.
default This property is required. string
name This property is required. string
the job name of databricks.Job if the resource was matched by id.
default This property is required. str
name This property is required. str
the job name of databricks.Job if the resource was matched by id.
default This property is required. String
name This property is required. String
the job name of databricks.Job if the resource was matched by id.

GetJobJobSettingsSettingsPipelineTask

PipelineId This property is required. string
FullRefresh bool
PipelineId This property is required. string
FullRefresh bool
pipelineId This property is required. String
fullRefresh Boolean
pipelineId This property is required. string
fullRefresh boolean
pipeline_id This property is required. str
full_refresh bool
pipelineId This property is required. String
fullRefresh Boolean

GetJobJobSettingsSettingsPythonWheelTask

EntryPoint string
NamedParameters Dictionary<string, string>
PackageName string
Parameters List<string>
EntryPoint string
NamedParameters map[string]string
PackageName string
Parameters []string
entryPoint String
namedParameters Map<String,String>
packageName String
parameters List<String>
entryPoint string
namedParameters {[key: string]: string}
packageName string
parameters string[]
entry_point str
named_parameters Mapping[str, str]
package_name str
parameters Sequence[str]
entryPoint String
namedParameters Map<String>
packageName String
parameters List<String>

GetJobJobSettingsSettingsQueue

Enabled This property is required. bool
Enabled This property is required. bool
enabled This property is required. Boolean
enabled This property is required. boolean
enabled This property is required. bool
enabled This property is required. Boolean

GetJobJobSettingsSettingsRunAs

GetJobJobSettingsSettingsRunJobTask

JobId This property is required. int
JobParameters Dictionary<string, string>
JobId This property is required. int
JobParameters map[string]string
jobId This property is required. Integer
jobParameters Map<String,String>
jobId This property is required. number
jobParameters {[key: string]: string}
job_id This property is required. int
job_parameters Mapping[str, str]
jobId This property is required. Number
jobParameters Map<String>

GetJobJobSettingsSettingsSchedule

QuartzCronExpression This property is required. string
TimezoneId This property is required. string
PauseStatus string
QuartzCronExpression This property is required. string
TimezoneId This property is required. string
PauseStatus string
quartzCronExpression This property is required. String
timezoneId This property is required. String
pauseStatus String
quartzCronExpression This property is required. string
timezoneId This property is required. string
pauseStatus string
quartz_cron_expression This property is required. str
timezone_id This property is required. str
pause_status str
quartzCronExpression This property is required. String
timezoneId This property is required. String
pauseStatus String

GetJobJobSettingsSettingsSparkJarTask

JarUri string
MainClassName string
Parameters List<string>
JarUri string
MainClassName string
Parameters []string
jarUri String
mainClassName String
parameters List<String>
jarUri string
mainClassName string
parameters string[]
jar_uri str
main_class_name str
parameters Sequence[str]
jarUri String
mainClassName String
parameters List<String>

GetJobJobSettingsSettingsSparkPythonTask

PythonFile This property is required. string
Parameters List<string>
Source string
PythonFile This property is required. string
Parameters []string
Source string
pythonFile This property is required. String
parameters List<String>
source String
pythonFile This property is required. string
parameters string[]
source string
python_file This property is required. str
parameters Sequence[str]
source str
pythonFile This property is required. String
parameters List<String>
source String

GetJobJobSettingsSettingsSparkSubmitTask

Parameters List<string>
Parameters []string
parameters List<String>
parameters string[]
parameters Sequence[str]
parameters List<String>

GetJobJobSettingsSettingsTask

RetryOnTimeout This property is required. bool
TaskKey This property is required. string
ConditionTask GetJobJobSettingsSettingsTaskConditionTask
DbtTask GetJobJobSettingsSettingsTaskDbtTask
DependsOns List<GetJobJobSettingsSettingsTaskDependsOn>
Description string
EmailNotifications GetJobJobSettingsSettingsTaskEmailNotifications
EnvironmentKey string
ExistingClusterId string
ForEachTask GetJobJobSettingsSettingsTaskForEachTask
Health GetJobJobSettingsSettingsTaskHealth
JobClusterKey string
Libraries List<GetJobJobSettingsSettingsTaskLibrary>
MaxRetries int
MinRetryIntervalMillis int
NewCluster GetJobJobSettingsSettingsTaskNewCluster
NotebookTask GetJobJobSettingsSettingsTaskNotebookTask
NotificationSettings GetJobJobSettingsSettingsTaskNotificationSettings
PipelineTask GetJobJobSettingsSettingsTaskPipelineTask
PythonWheelTask GetJobJobSettingsSettingsTaskPythonWheelTask
RunIf string
RunJobTask GetJobJobSettingsSettingsTaskRunJobTask
SparkJarTask GetJobJobSettingsSettingsTaskSparkJarTask
SparkPythonTask GetJobJobSettingsSettingsTaskSparkPythonTask
SparkSubmitTask GetJobJobSettingsSettingsTaskSparkSubmitTask
SqlTask GetJobJobSettingsSettingsTaskSqlTask
TimeoutSeconds int
WebhookNotifications GetJobJobSettingsSettingsTaskWebhookNotifications
RetryOnTimeout This property is required. bool
TaskKey This property is required. string
ConditionTask GetJobJobSettingsSettingsTaskConditionTask
DbtTask GetJobJobSettingsSettingsTaskDbtTask
DependsOns []GetJobJobSettingsSettingsTaskDependsOn
Description string
EmailNotifications GetJobJobSettingsSettingsTaskEmailNotifications
EnvironmentKey string
ExistingClusterId string
ForEachTask GetJobJobSettingsSettingsTaskForEachTask
Health GetJobJobSettingsSettingsTaskHealth
JobClusterKey string
Libraries []GetJobJobSettingsSettingsTaskLibrary
MaxRetries int
MinRetryIntervalMillis int
NewCluster GetJobJobSettingsSettingsTaskNewCluster
NotebookTask GetJobJobSettingsSettingsTaskNotebookTask
NotificationSettings GetJobJobSettingsSettingsTaskNotificationSettings
PipelineTask GetJobJobSettingsSettingsTaskPipelineTask
PythonWheelTask GetJobJobSettingsSettingsTaskPythonWheelTask
RunIf string
RunJobTask GetJobJobSettingsSettingsTaskRunJobTask
SparkJarTask GetJobJobSettingsSettingsTaskSparkJarTask
SparkPythonTask GetJobJobSettingsSettingsTaskSparkPythonTask
SparkSubmitTask GetJobJobSettingsSettingsTaskSparkSubmitTask
SqlTask GetJobJobSettingsSettingsTaskSqlTask
TimeoutSeconds int
WebhookNotifications GetJobJobSettingsSettingsTaskWebhookNotifications
retryOnTimeout This property is required. Boolean
taskKey This property is required. String
conditionTask GetJobJobSettingsSettingsTaskConditionTask
dbtTask GetJobJobSettingsSettingsTaskDbtTask
dependsOns List<GetJobJobSettingsSettingsTaskDependsOn>
description String
emailNotifications GetJobJobSettingsSettingsTaskEmailNotifications
environmentKey String
existingClusterId String
forEachTask GetJobJobSettingsSettingsTaskForEachTask
health GetJobJobSettingsSettingsTaskHealth
jobClusterKey String
libraries List<GetJobJobSettingsSettingsTaskLibrary>
maxRetries Integer
minRetryIntervalMillis Integer
newCluster GetJobJobSettingsSettingsTaskNewCluster
notebookTask GetJobJobSettingsSettingsTaskNotebookTask
notificationSettings GetJobJobSettingsSettingsTaskNotificationSettings
pipelineTask GetJobJobSettingsSettingsTaskPipelineTask
pythonWheelTask GetJobJobSettingsSettingsTaskPythonWheelTask
runIf String
runJobTask GetJobJobSettingsSettingsTaskRunJobTask
sparkJarTask GetJobJobSettingsSettingsTaskSparkJarTask
sparkPythonTask GetJobJobSettingsSettingsTaskSparkPythonTask
sparkSubmitTask GetJobJobSettingsSettingsTaskSparkSubmitTask
sqlTask GetJobJobSettingsSettingsTaskSqlTask
timeoutSeconds Integer
webhookNotifications GetJobJobSettingsSettingsTaskWebhookNotifications
retry_on_timeout This property is required. bool
task_key This property is required. str
condition_task GetJobJobSettingsSettingsTaskConditionTask
dbt_task GetJobJobSettingsSettingsTaskDbtTask
depends_ons Sequence[GetJobJobSettingsSettingsTaskDependsOn]
description str
email_notifications GetJobJobSettingsSettingsTaskEmailNotifications
environment_key str
existing_cluster_id str
for_each_task GetJobJobSettingsSettingsTaskForEachTask
health GetJobJobSettingsSettingsTaskHealth
job_cluster_key str
libraries Sequence[GetJobJobSettingsSettingsTaskLibrary]
max_retries int
min_retry_interval_millis int
new_cluster GetJobJobSettingsSettingsTaskNewCluster
notebook_task GetJobJobSettingsSettingsTaskNotebookTask
notification_settings GetJobJobSettingsSettingsTaskNotificationSettings
pipeline_task GetJobJobSettingsSettingsTaskPipelineTask
python_wheel_task GetJobJobSettingsSettingsTaskPythonWheelTask
run_if str
run_job_task GetJobJobSettingsSettingsTaskRunJobTask
spark_jar_task GetJobJobSettingsSettingsTaskSparkJarTask
spark_python_task GetJobJobSettingsSettingsTaskSparkPythonTask
spark_submit_task GetJobJobSettingsSettingsTaskSparkSubmitTask
sql_task GetJobJobSettingsSettingsTaskSqlTask
timeout_seconds int
webhook_notifications GetJobJobSettingsSettingsTaskWebhookNotifications

GetJobJobSettingsSettingsTaskConditionTask

Left This property is required. string
Op This property is required. string
Right This property is required. string
Left This property is required. string
Op This property is required. string
Right This property is required. string
left This property is required. String
op This property is required. String
right This property is required. String
left This property is required. string
op This property is required. string
right This property is required. string
left This property is required. str
op This property is required. str
right This property is required. str
left This property is required. String
op This property is required. String
right This property is required. String

GetJobJobSettingsSettingsTaskDbtTask

Commands This property is required. List<string>
Catalog string
ProfilesDirectory string
ProjectDirectory string
Schema string
Source string
WarehouseId string
Commands This property is required. []string
Catalog string
ProfilesDirectory string
ProjectDirectory string
Schema string
Source string
WarehouseId string
commands This property is required. List<String>
catalog String
profilesDirectory String
projectDirectory String
schema String
source String
warehouseId String
commands This property is required. string[]
catalog string
profilesDirectory string
projectDirectory string
schema string
source string
warehouseId string
commands This property is required. Sequence[str]
catalog str
profiles_directory str
project_directory str
schema str
source str
warehouse_id str
commands This property is required. List<String>
catalog String
profilesDirectory String
projectDirectory String
schema String
source String
warehouseId String

GetJobJobSettingsSettingsTaskDependsOn

TaskKey This property is required. string
Outcome string
TaskKey This property is required. string
Outcome string
taskKey This property is required. String
outcome String
taskKey This property is required. string
outcome string
task_key This property is required. str
outcome str
taskKey This property is required. String
outcome String

GetJobJobSettingsSettingsTaskEmailNotifications

GetJobJobSettingsSettingsTaskForEachTask

Inputs This property is required. string
Task This property is required. GetJobJobSettingsSettingsTaskForEachTaskTask
Concurrency int
Inputs This property is required. string
Task This property is required. GetJobJobSettingsSettingsTaskForEachTaskTask
Concurrency int
inputs This property is required. String
task This property is required. GetJobJobSettingsSettingsTaskForEachTaskTask
concurrency Integer
inputs This property is required. string
task This property is required. GetJobJobSettingsSettingsTaskForEachTaskTask
concurrency number
inputs This property is required. str
task This property is required. GetJobJobSettingsSettingsTaskForEachTaskTask
concurrency int
inputs This property is required. String
task This property is required. Property Map
concurrency Number

GetJobJobSettingsSettingsTaskForEachTaskTask

RetryOnTimeout This property is required. bool
TaskKey This property is required. string
ConditionTask GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask
DbtTask GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask
DependsOns List<GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOn>
Description string
EmailNotifications GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications
EnvironmentKey string
ExistingClusterId string
Health GetJobJobSettingsSettingsTaskForEachTaskTaskHealth
JobClusterKey string
Libraries List<GetJobJobSettingsSettingsTaskForEachTaskTaskLibrary>
MaxRetries int
MinRetryIntervalMillis int
NewCluster GetJobJobSettingsSettingsTaskForEachTaskTaskNewCluster
NotebookTask GetJobJobSettingsSettingsTaskForEachTaskTaskNotebookTask
NotificationSettings GetJobJobSettingsSettingsTaskForEachTaskTaskNotificationSettings
PipelineTask GetJobJobSettingsSettingsTaskForEachTaskTaskPipelineTask
PythonWheelTask GetJobJobSettingsSettingsTaskForEachTaskTaskPythonWheelTask
RunIf string
RunJobTask GetJobJobSettingsSettingsTaskForEachTaskTaskRunJobTask
SparkJarTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkJarTask
SparkPythonTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkPythonTask
SparkSubmitTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkSubmitTask
SqlTask GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask
TimeoutSeconds int
WebhookNotifications GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotifications
RetryOnTimeout This property is required. bool
TaskKey This property is required. string
ConditionTask GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask
DbtTask GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask
DependsOns []GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOn
Description string
EmailNotifications GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications
EnvironmentKey string
ExistingClusterId string
Health GetJobJobSettingsSettingsTaskForEachTaskTaskHealth
JobClusterKey string
Libraries []GetJobJobSettingsSettingsTaskForEachTaskTaskLibrary
MaxRetries int
MinRetryIntervalMillis int
NewCluster GetJobJobSettingsSettingsTaskForEachTaskTaskNewCluster
NotebookTask GetJobJobSettingsSettingsTaskForEachTaskTaskNotebookTask
NotificationSettings GetJobJobSettingsSettingsTaskForEachTaskTaskNotificationSettings
PipelineTask GetJobJobSettingsSettingsTaskForEachTaskTaskPipelineTask
PythonWheelTask GetJobJobSettingsSettingsTaskForEachTaskTaskPythonWheelTask
RunIf string
RunJobTask GetJobJobSettingsSettingsTaskForEachTaskTaskRunJobTask
SparkJarTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkJarTask
SparkPythonTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkPythonTask
SparkSubmitTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkSubmitTask
SqlTask GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask
TimeoutSeconds int
WebhookNotifications GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotifications
retryOnTimeout This property is required. Boolean
taskKey This property is required. String
conditionTask GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask
dbtTask GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask
dependsOns List<GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOn>
description String
emailNotifications GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications
environmentKey String
existingClusterId String
health GetJobJobSettingsSettingsTaskForEachTaskTaskHealth
jobClusterKey String
libraries List<GetJobJobSettingsSettingsTaskForEachTaskTaskLibrary>
maxRetries Integer
minRetryIntervalMillis Integer
newCluster GetJobJobSettingsSettingsTaskForEachTaskTaskNewCluster
notebookTask GetJobJobSettingsSettingsTaskForEachTaskTaskNotebookTask
notificationSettings GetJobJobSettingsSettingsTaskForEachTaskTaskNotificationSettings
pipelineTask GetJobJobSettingsSettingsTaskForEachTaskTaskPipelineTask
pythonWheelTask GetJobJobSettingsSettingsTaskForEachTaskTaskPythonWheelTask
runIf String
runJobTask GetJobJobSettingsSettingsTaskForEachTaskTaskRunJobTask
sparkJarTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkJarTask
sparkPythonTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkPythonTask
sparkSubmitTask GetJobJobSettingsSettingsTaskForEachTaskTaskSparkSubmitTask
sqlTask GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask
timeoutSeconds Integer
webhookNotifications GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotifications
retry_on_timeout This property is required. bool
task_key This property is required. str
condition_task GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask
dbt_task GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask
depends_ons Sequence[GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOn]
description str
email_notifications GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications
environment_key str
existing_cluster_id str
health GetJobJobSettingsSettingsTaskForEachTaskTaskHealth
job_cluster_key str
libraries Sequence[GetJobJobSettingsSettingsTaskForEachTaskTaskLibrary]
max_retries int
min_retry_interval_millis int
new_cluster GetJobJobSettingsSettingsTaskForEachTaskTaskNewCluster
notebook_task GetJobJobSettingsSettingsTaskForEachTaskTaskNotebookTask
notification_settings GetJobJobSettingsSettingsTaskForEachTaskTaskNotificationSettings
pipeline_task GetJobJobSettingsSettingsTaskForEachTaskTaskPipelineTask
python_wheel_task GetJobJobSettingsSettingsTaskForEachTaskTaskPythonWheelTask
run_if str
run_job_task GetJobJobSettingsSettingsTaskForEachTaskTaskRunJobTask
spark_jar_task GetJobJobSettingsSettingsTaskForEachTaskTaskSparkJarTask
spark_python_task GetJobJobSettingsSettingsTaskForEachTaskTaskSparkPythonTask
spark_submit_task GetJobJobSettingsSettingsTaskForEachTaskTaskSparkSubmitTask
sql_task GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask
timeout_seconds int
webhook_notifications GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotifications

GetJobJobSettingsSettingsTaskForEachTaskTaskConditionTask

Left This property is required. string
Op This property is required. string
Right This property is required. string
Left This property is required. string
Op This property is required. string
Right This property is required. string
left This property is required. String
op This property is required. String
right This property is required. String
left This property is required. string
op This property is required. string
right This property is required. string
left This property is required. str
op This property is required. str
right This property is required. str
left This property is required. String
op This property is required. String
right This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskDbtTask

Commands This property is required. List<string>
Catalog string
ProfilesDirectory string
ProjectDirectory string
Schema string
Source string
WarehouseId string
Commands This property is required. []string
Catalog string
ProfilesDirectory string
ProjectDirectory string
Schema string
Source string
WarehouseId string
commands This property is required. List<String>
catalog String
profilesDirectory String
projectDirectory String
schema String
source String
warehouseId String
commands This property is required. string[]
catalog string
profilesDirectory string
projectDirectory string
schema string
source string
warehouseId string
commands This property is required. Sequence[str]
catalog str
profiles_directory str
project_directory str
schema str
source str
warehouse_id str
commands This property is required. List<String>
catalog String
profilesDirectory String
projectDirectory String
schema String
source String
warehouseId String

GetJobJobSettingsSettingsTaskForEachTaskTaskDependsOn

TaskKey This property is required. string
Outcome string
TaskKey This property is required. string
Outcome string
taskKey This property is required. String
outcome String
taskKey This property is required. string
outcome string
task_key This property is required. str
outcome str
taskKey This property is required. String
outcome String

GetJobJobSettingsSettingsTaskForEachTaskTaskEmailNotifications

GetJobJobSettingsSettingsTaskForEachTaskTaskHealth

rules This property is required. List<Property Map>

GetJobJobSettingsSettingsTaskForEachTaskTaskHealthRule

Metric This property is required. string
Op This property is required. string
Value This property is required. int
Metric This property is required. string
Op This property is required. string
Value This property is required. int
metric This property is required. String
op This property is required. String
value This property is required. Integer
metric This property is required. string
op This property is required. string
value This property is required. number
metric This property is required. str
op This property is required. str
value This property is required. int
metric This property is required. String
op This property is required. String
value This property is required. Number

GetJobJobSettingsSettingsTaskForEachTaskTaskLibrary

GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryCran

Package This property is required. string
Repo string
Package This property is required. string
Repo string
package_ This property is required. String
repo String
package This property is required. string
repo string
package This property is required. str
repo str
package This property is required. String
repo String

GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryMaven

Coordinates This property is required. string
Exclusions List<string>
Repo string
Coordinates This property is required. string
Exclusions []string
Repo string
coordinates This property is required. String
exclusions List<String>
repo String
coordinates This property is required. string
exclusions string[]
repo string
coordinates This property is required. str
exclusions Sequence[str]
repo str
coordinates This property is required. String
exclusions List<String>
repo String

GetJobJobSettingsSettingsTaskForEachTaskTaskLibraryPypi

Package This property is required. string
Repo string
Package This property is required. string
Repo string
package_ This property is required. String
repo String
package This property is required. string
repo string
package This property is required. str
repo str
package This property is required. String
repo String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewCluster

DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConf
ClusterMountInfos List<GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfo>
ClusterName string
CustomTags Dictionary<string, string>
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterGcpAttributes
IdempotencyToken string
InitScripts List<GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScript>
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf Dictionary<string, string>
SparkEnvVars Dictionary<string, string>
SshPublicKeys List<string>
WorkloadType GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadType
DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConf
ClusterMountInfos []GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfo
ClusterName string
CustomTags map[string]string
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterGcpAttributes
IdempotencyToken string
InitScripts []GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScript
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf map[string]string
SparkEnvVars map[string]string
SshPublicKeys []string
WorkloadType GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Integer
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAutoscale
autoterminationMinutes Integer
awsAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAwsAttributes
azureAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAzureAttributes
clusterId String
clusterLogConf GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConf
clusterMountInfos List<GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfo>
clusterName String
customTags Map<String,String>
dataSecurityMode String
dockerImage GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImage
gcpAttributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterGcpAttributes
idempotencyToken String
initScripts List<GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScript>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String,String>
sparkEnvVars Map<String,String>
sshPublicKeys List<String>
workloadType GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadType
driver_instance_pool_id This property is required. str
driver_node_type_id This property is required. str
enable_elastic_disk This property is required. bool
enable_local_disk_encryption This property is required. bool
node_type_id This property is required. str
num_workers This property is required. int
spark_version This property is required. str
apply_policy_default_values bool
autoscale GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAutoscale
autotermination_minutes int
aws_attributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAwsAttributes
azure_attributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAzureAttributes
cluster_id str
cluster_log_conf GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConf
cluster_mount_infos Sequence[GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfo]
cluster_name str
custom_tags Mapping[str, str]
data_security_mode str
docker_image GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImage
gcp_attributes GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterGcpAttributes
idempotency_token str
init_scripts Sequence[GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScript]
instance_pool_id str
policy_id str
runtime_engine str
single_user_name str
spark_conf Mapping[str, str]
spark_env_vars Mapping[str, str]
ssh_public_keys Sequence[str]
workload_type GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Number
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale Property Map
autoterminationMinutes Number
awsAttributes Property Map
azureAttributes Property Map
clusterId String
clusterLogConf Property Map
clusterMountInfos List<Property Map>
clusterName String
customTags Map<String>
dataSecurityMode String
dockerImage Property Map
gcpAttributes Property Map
idempotencyToken String
initScripts List<Property Map>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String>
sparkEnvVars Map<String>
sshPublicKeys List<String>
workloadType Property Map

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAutoscale

maxWorkers Integer
minWorkers Integer
maxWorkers number
minWorkers number
maxWorkers Number
minWorkers Number

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAwsAttributes

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterAzureAttributes

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConf

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConfDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterLogConfS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfo

localMountDirPath This property is required. String
networkFilesystemInfo This property is required. Property Map
remoteMountDirPath String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterClusterMountInfoNetworkFilesystemInfo

ServerAddress This property is required. string
MountOptions string
ServerAddress This property is required. string
MountOptions string
serverAddress This property is required. String
mountOptions String
serverAddress This property is required. string
mountOptions string
server_address This property is required. str
mount_options str
serverAddress This property is required. String
mountOptions String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImage

url This property is required. String
basicAuth Property Map

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterDockerImageBasicAuth

Password This property is required. string
Username This property is required. string
Password This property is required. string
Username This property is required. string
password This property is required. String
username This property is required. String
password This property is required. string
username This property is required. string
password This property is required. str
username This property is required. str
password This property is required. String
username This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterGcpAttributes

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScript

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptAbfss

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptFile

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptGcs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptVolumes

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterInitScriptWorkspace

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadType

clients This property is required. Property Map

GetJobJobSettingsSettingsTaskForEachTaskTaskNewClusterWorkloadTypeClients

Jobs bool
Notebooks bool
Jobs bool
Notebooks bool
jobs Boolean
notebooks Boolean
jobs boolean
notebooks boolean
jobs bool
notebooks bool
jobs Boolean
notebooks Boolean

GetJobJobSettingsSettingsTaskForEachTaskTaskNotebookTask

NotebookPath This property is required. string
BaseParameters Dictionary<string, string>
Source string
WarehouseId string
NotebookPath This property is required. string
BaseParameters map[string]string
Source string
WarehouseId string
notebookPath This property is required. String
baseParameters Map<String,String>
source String
warehouseId String
notebookPath This property is required. string
baseParameters {[key: string]: string}
source string
warehouseId string
notebook_path This property is required. str
base_parameters Mapping[str, str]
source str
warehouse_id str
notebookPath This property is required. String
baseParameters Map<String>
source String
warehouseId String

GetJobJobSettingsSettingsTaskForEachTaskTaskNotificationSettings

GetJobJobSettingsSettingsTaskForEachTaskTaskPipelineTask

PipelineId This property is required. string
FullRefresh bool
PipelineId This property is required. string
FullRefresh bool
pipelineId This property is required. String
fullRefresh Boolean
pipelineId This property is required. string
fullRefresh boolean
pipeline_id This property is required. str
full_refresh bool
pipelineId This property is required. String
fullRefresh Boolean

GetJobJobSettingsSettingsTaskForEachTaskTaskPythonWheelTask

EntryPoint string
NamedParameters Dictionary<string, string>
PackageName string
Parameters List<string>
EntryPoint string
NamedParameters map[string]string
PackageName string
Parameters []string
entryPoint String
namedParameters Map<String,String>
packageName String
parameters List<String>
entryPoint string
namedParameters {[key: string]: string}
packageName string
parameters string[]
entry_point str
named_parameters Mapping[str, str]
package_name str
parameters Sequence[str]
entryPoint String
namedParameters Map<String>
packageName String
parameters List<String>

GetJobJobSettingsSettingsTaskForEachTaskTaskRunJobTask

JobId This property is required. int
JobParameters Dictionary<string, string>
JobId This property is required. int
JobParameters map[string]string
jobId This property is required. Integer
jobParameters Map<String,String>
jobId This property is required. number
jobParameters {[key: string]: string}
job_id This property is required. int
job_parameters Mapping[str, str]
jobId This property is required. Number
jobParameters Map<String>

GetJobJobSettingsSettingsTaskForEachTaskTaskSparkJarTask

JarUri string
MainClassName string
Parameters List<string>
JarUri string
MainClassName string
Parameters []string
jarUri String
mainClassName String
parameters List<String>
jarUri string
mainClassName string
parameters string[]
jar_uri str
main_class_name str
parameters Sequence[str]
jarUri String
mainClassName String
parameters List<String>

GetJobJobSettingsSettingsTaskForEachTaskTaskSparkPythonTask

PythonFile This property is required. string
Parameters List<string>
Source string
PythonFile This property is required. string
Parameters []string
Source string
pythonFile This property is required. String
parameters List<String>
source String
pythonFile This property is required. string
parameters string[]
source string
python_file This property is required. str
parameters Sequence[str]
source str
pythonFile This property is required. String
parameters List<String>
source String

GetJobJobSettingsSettingsTaskForEachTaskTaskSparkSubmitTask

Parameters List<string>
Parameters []string
parameters List<String>
parameters string[]
parameters Sequence[str]
parameters List<String>

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTask

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlert

alertId This property is required. String
pauseSubscriptions Boolean
subscriptions List<Property Map>

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskAlertSubscription

DestinationId string
UserName string
DestinationId string
UserName string
destinationId String
userName String
destinationId string
userName string
destinationId String
userName String

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskDashboard

dashboardId This property is required. String
customSubject String
pauseSubscriptions Boolean
subscriptions List<Property Map>

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskDashboardSubscription

DestinationId string
UserName string
DestinationId string
UserName string
destinationId String
userName String
destinationId string
userName string
destinationId String
userName String

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskFile

Path This property is required. string
Source string
Path This property is required. string
Source string
path This property is required. String
source String
path This property is required. string
source string
path This property is required. str
source str
path This property is required. String
source String

GetJobJobSettingsSettingsTaskForEachTaskTaskSqlTaskQuery

QueryId This property is required. string
QueryId This property is required. string
queryId This property is required. String
queryId This property is required. string
query_id This property is required. str
queryId This property is required. String

GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotifications

GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnDurationWarningThresholdExceeded

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnFailure

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnStart

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnStreamingBacklogExceeded

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskForEachTaskTaskWebhookNotificationsOnSuccess

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskHealth

rules This property is required. List<Property Map>

GetJobJobSettingsSettingsTaskHealthRule

Metric This property is required. string
Op This property is required. string
Value This property is required. int
Metric This property is required. string
Op This property is required. string
Value This property is required. int
metric This property is required. String
op This property is required. String
value This property is required. Integer
metric This property is required. string
op This property is required. string
value This property is required. number
metric This property is required. str
op This property is required. str
value This property is required. int
metric This property is required. String
op This property is required. String
value This property is required. Number

GetJobJobSettingsSettingsTaskLibrary

GetJobJobSettingsSettingsTaskLibraryCran

Package This property is required. string
Repo string
Package This property is required. string
Repo string
package_ This property is required. String
repo String
package This property is required. string
repo string
package This property is required. str
repo str
package This property is required. String
repo String

GetJobJobSettingsSettingsTaskLibraryMaven

Coordinates This property is required. string
Exclusions List<string>
Repo string
Coordinates This property is required. string
Exclusions []string
Repo string
coordinates This property is required. String
exclusions List<String>
repo String
coordinates This property is required. string
exclusions string[]
repo string
coordinates This property is required. str
exclusions Sequence[str]
repo str
coordinates This property is required. String
exclusions List<String>
repo String

GetJobJobSettingsSettingsTaskLibraryPypi

Package This property is required. string
Repo string
Package This property is required. string
Repo string
package_ This property is required. String
repo String
package This property is required. string
repo string
package This property is required. str
repo str
package This property is required. String
repo String

GetJobJobSettingsSettingsTaskNewCluster

DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsTaskNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsTaskNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsTaskNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsTaskNewClusterClusterLogConf
ClusterMountInfos List<GetJobJobSettingsSettingsTaskNewClusterClusterMountInfo>
ClusterName string
CustomTags Dictionary<string, string>
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsTaskNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsTaskNewClusterGcpAttributes
IdempotencyToken string
InitScripts List<GetJobJobSettingsSettingsTaskNewClusterInitScript>
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf Dictionary<string, string>
SparkEnvVars Dictionary<string, string>
SshPublicKeys List<string>
WorkloadType GetJobJobSettingsSettingsTaskNewClusterWorkloadType
DriverInstancePoolId This property is required. string
DriverNodeTypeId This property is required. string
EnableElasticDisk This property is required. bool
EnableLocalDiskEncryption This property is required. bool
NodeTypeId This property is required. string
NumWorkers This property is required. int
SparkVersion This property is required. string
ApplyPolicyDefaultValues bool
Autoscale GetJobJobSettingsSettingsTaskNewClusterAutoscale
AutoterminationMinutes int
AwsAttributes GetJobJobSettingsSettingsTaskNewClusterAwsAttributes
AzureAttributes GetJobJobSettingsSettingsTaskNewClusterAzureAttributes
ClusterId string
ClusterLogConf GetJobJobSettingsSettingsTaskNewClusterClusterLogConf
ClusterMountInfos []GetJobJobSettingsSettingsTaskNewClusterClusterMountInfo
ClusterName string
CustomTags map[string]string
DataSecurityMode string
DockerImage GetJobJobSettingsSettingsTaskNewClusterDockerImage
GcpAttributes GetJobJobSettingsSettingsTaskNewClusterGcpAttributes
IdempotencyToken string
InitScripts []GetJobJobSettingsSettingsTaskNewClusterInitScript
InstancePoolId string
PolicyId string
RuntimeEngine string
SingleUserName string
SparkConf map[string]string
SparkEnvVars map[string]string
SshPublicKeys []string
WorkloadType GetJobJobSettingsSettingsTaskNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Integer
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale GetJobJobSettingsSettingsTaskNewClusterAutoscale
autoterminationMinutes Integer
awsAttributes GetJobJobSettingsSettingsTaskNewClusterAwsAttributes
azureAttributes GetJobJobSettingsSettingsTaskNewClusterAzureAttributes
clusterId String
clusterLogConf GetJobJobSettingsSettingsTaskNewClusterClusterLogConf
clusterMountInfos List<GetJobJobSettingsSettingsTaskNewClusterClusterMountInfo>
clusterName String
customTags Map<String,String>
dataSecurityMode String
dockerImage GetJobJobSettingsSettingsTaskNewClusterDockerImage
gcpAttributes GetJobJobSettingsSettingsTaskNewClusterGcpAttributes
idempotencyToken String
initScripts List<GetJobJobSettingsSettingsTaskNewClusterInitScript>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String,String>
sparkEnvVars Map<String,String>
sshPublicKeys List<String>
workloadType GetJobJobSettingsSettingsTaskNewClusterWorkloadType
driver_instance_pool_id This property is required. str
driver_node_type_id This property is required. str
enable_elastic_disk This property is required. bool
enable_local_disk_encryption This property is required. bool
node_type_id This property is required. str
num_workers This property is required. int
spark_version This property is required. str
apply_policy_default_values bool
autoscale GetJobJobSettingsSettingsTaskNewClusterAutoscale
autotermination_minutes int
aws_attributes GetJobJobSettingsSettingsTaskNewClusterAwsAttributes
azure_attributes GetJobJobSettingsSettingsTaskNewClusterAzureAttributes
cluster_id str
cluster_log_conf GetJobJobSettingsSettingsTaskNewClusterClusterLogConf
cluster_mount_infos Sequence[GetJobJobSettingsSettingsTaskNewClusterClusterMountInfo]
cluster_name str
custom_tags Mapping[str, str]
data_security_mode str
docker_image GetJobJobSettingsSettingsTaskNewClusterDockerImage
gcp_attributes GetJobJobSettingsSettingsTaskNewClusterGcpAttributes
idempotency_token str
init_scripts Sequence[GetJobJobSettingsSettingsTaskNewClusterInitScript]
instance_pool_id str
policy_id str
runtime_engine str
single_user_name str
spark_conf Mapping[str, str]
spark_env_vars Mapping[str, str]
ssh_public_keys Sequence[str]
workload_type GetJobJobSettingsSettingsTaskNewClusterWorkloadType
driverInstancePoolId This property is required. String
driverNodeTypeId This property is required. String
enableElasticDisk This property is required. Boolean
enableLocalDiskEncryption This property is required. Boolean
nodeTypeId This property is required. String
numWorkers This property is required. Number
sparkVersion This property is required. String
applyPolicyDefaultValues Boolean
autoscale Property Map
autoterminationMinutes Number
awsAttributes Property Map
azureAttributes Property Map
clusterId String
clusterLogConf Property Map
clusterMountInfos List<Property Map>
clusterName String
customTags Map<String>
dataSecurityMode String
dockerImage Property Map
gcpAttributes Property Map
idempotencyToken String
initScripts List<Property Map>
instancePoolId String
policyId String
runtimeEngine String
singleUserName String
sparkConf Map<String>
sparkEnvVars Map<String>
sshPublicKeys List<String>
workloadType Property Map

GetJobJobSettingsSettingsTaskNewClusterAutoscale

maxWorkers Integer
minWorkers Integer
maxWorkers number
minWorkers number
maxWorkers Number
minWorkers Number

GetJobJobSettingsSettingsTaskNewClusterAwsAttributes

GetJobJobSettingsSettingsTaskNewClusterAzureAttributes

GetJobJobSettingsSettingsTaskNewClusterClusterLogConf

GetJobJobSettingsSettingsTaskNewClusterClusterLogConfDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterClusterLogConfS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsTaskNewClusterClusterMountInfo

localMountDirPath This property is required. String
networkFilesystemInfo This property is required. Property Map
remoteMountDirPath String

GetJobJobSettingsSettingsTaskNewClusterClusterMountInfoNetworkFilesystemInfo

ServerAddress This property is required. string
MountOptions string
ServerAddress This property is required. string
MountOptions string
serverAddress This property is required. String
mountOptions String
serverAddress This property is required. string
mountOptions string
server_address This property is required. str
mount_options str
serverAddress This property is required. String
mountOptions String

GetJobJobSettingsSettingsTaskNewClusterDockerImage

url This property is required. String
basicAuth Property Map

GetJobJobSettingsSettingsTaskNewClusterDockerImageBasicAuth

Password This property is required. string
Username This property is required. string
Password This property is required. string
Username This property is required. string
password This property is required. String
username This property is required. String
password This property is required. string
username This property is required. string
password This property is required. str
username This property is required. str
password This property is required. String
username This property is required. String

GetJobJobSettingsSettingsTaskNewClusterGcpAttributes

GetJobJobSettingsSettingsTaskNewClusterInitScript

GetJobJobSettingsSettingsTaskNewClusterInitScriptAbfss

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterInitScriptDbfs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterInitScriptFile

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterInitScriptGcs

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterInitScriptS3

Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
Destination This property is required. string
CannedAcl string
EnableEncryption bool
EncryptionType string
Endpoint string
KmsKey string
Region string
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String
destination This property is required. string
cannedAcl string
enableEncryption boolean
encryptionType string
endpoint string
kmsKey string
region string
destination This property is required. str
canned_acl str
enable_encryption bool
encryption_type str
endpoint str
kms_key str
region str
destination This property is required. String
cannedAcl String
enableEncryption Boolean
encryptionType String
endpoint String
kmsKey String
region String

GetJobJobSettingsSettingsTaskNewClusterInitScriptVolumes

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterInitScriptWorkspace

Destination This property is required. string
Destination This property is required. string
destination This property is required. String
destination This property is required. string
destination This property is required. str
destination This property is required. String

GetJobJobSettingsSettingsTaskNewClusterWorkloadType

clients This property is required. Property Map

GetJobJobSettingsSettingsTaskNewClusterWorkloadTypeClients

Jobs bool
Notebooks bool
Jobs bool
Notebooks bool
jobs Boolean
notebooks Boolean
jobs boolean
notebooks boolean
jobs bool
notebooks bool
jobs Boolean
notebooks Boolean

GetJobJobSettingsSettingsTaskNotebookTask

NotebookPath This property is required. string
BaseParameters Dictionary<string, string>
Source string
WarehouseId string
NotebookPath This property is required. string
BaseParameters map[string]string
Source string
WarehouseId string
notebookPath This property is required. String
baseParameters Map<String,String>
source String
warehouseId String
notebookPath This property is required. string
baseParameters {[key: string]: string}
source string
warehouseId string
notebook_path This property is required. str
base_parameters Mapping[str, str]
source str
warehouse_id str
notebookPath This property is required. String
baseParameters Map<String>
source String
warehouseId String

GetJobJobSettingsSettingsTaskNotificationSettings

GetJobJobSettingsSettingsTaskPipelineTask

PipelineId This property is required. string
FullRefresh bool
PipelineId This property is required. string
FullRefresh bool
pipelineId This property is required. String
fullRefresh Boolean
pipelineId This property is required. string
fullRefresh boolean
pipeline_id This property is required. str
full_refresh bool
pipelineId This property is required. String
fullRefresh Boolean

GetJobJobSettingsSettingsTaskPythonWheelTask

EntryPoint string
NamedParameters Dictionary<string, string>
PackageName string
Parameters List<string>
EntryPoint string
NamedParameters map[string]string
PackageName string
Parameters []string
entryPoint String
namedParameters Map<String,String>
packageName String
parameters List<String>
entryPoint string
namedParameters {[key: string]: string}
packageName string
parameters string[]
entry_point str
named_parameters Mapping[str, str]
package_name str
parameters Sequence[str]
entryPoint String
namedParameters Map<String>
packageName String
parameters List<String>

GetJobJobSettingsSettingsTaskRunJobTask

JobId This property is required. int
JobParameters Dictionary<string, string>
JobId This property is required. int
JobParameters map[string]string
jobId This property is required. Integer
jobParameters Map<String,String>
jobId This property is required. number
jobParameters {[key: string]: string}
job_id This property is required. int
job_parameters Mapping[str, str]
jobId This property is required. Number
jobParameters Map<String>

GetJobJobSettingsSettingsTaskSparkJarTask

JarUri string
MainClassName string
Parameters List<string>
JarUri string
MainClassName string
Parameters []string
jarUri String
mainClassName String
parameters List<String>
jarUri string
mainClassName string
parameters string[]
jar_uri str
main_class_name str
parameters Sequence[str]
jarUri String
mainClassName String
parameters List<String>

GetJobJobSettingsSettingsTaskSparkPythonTask

PythonFile This property is required. string
Parameters List<string>
Source string
PythonFile This property is required. string
Parameters []string
Source string
pythonFile This property is required. String
parameters List<String>
source String
pythonFile This property is required. string
parameters string[]
source string
python_file This property is required. str
parameters Sequence[str]
source str
pythonFile This property is required. String
parameters List<String>
source String

GetJobJobSettingsSettingsTaskSparkSubmitTask

Parameters List<string>
Parameters []string
parameters List<String>
parameters string[]
parameters Sequence[str]
parameters List<String>

GetJobJobSettingsSettingsTaskSqlTask

GetJobJobSettingsSettingsTaskSqlTaskAlert

alertId This property is required. String
pauseSubscriptions Boolean
subscriptions List<Property Map>

GetJobJobSettingsSettingsTaskSqlTaskAlertSubscription

DestinationId string
UserName string
DestinationId string
UserName string
destinationId String
userName String
destinationId string
userName string
destinationId String
userName String

GetJobJobSettingsSettingsTaskSqlTaskDashboard

dashboardId This property is required. String
customSubject String
pauseSubscriptions Boolean
subscriptions List<Property Map>

GetJobJobSettingsSettingsTaskSqlTaskDashboardSubscription

DestinationId string
UserName string
DestinationId string
UserName string
destinationId String
userName String
destinationId string
userName string
destinationId String
userName String

GetJobJobSettingsSettingsTaskSqlTaskFile

Path This property is required. string
Source string
Path This property is required. string
Source string
path This property is required. String
source String
path This property is required. string
source string
path This property is required. str
source str
path This property is required. String
source String

GetJobJobSettingsSettingsTaskSqlTaskQuery

QueryId This property is required. string
QueryId This property is required. string
queryId This property is required. String
queryId This property is required. string
query_id This property is required. str
queryId This property is required. String

GetJobJobSettingsSettingsTaskWebhookNotifications

GetJobJobSettingsSettingsTaskWebhookNotificationsOnDurationWarningThresholdExceeded

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskWebhookNotificationsOnFailure

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskWebhookNotificationsOnStart

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskWebhookNotificationsOnStreamingBacklogExceeded

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTaskWebhookNotificationsOnSuccess

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsTrigger

GetJobJobSettingsSettingsTriggerFileArrival

Url This property is required. string
MinTimeBetweenTriggersSeconds int
WaitAfterLastChangeSeconds int
Url This property is required. string
MinTimeBetweenTriggersSeconds int
WaitAfterLastChangeSeconds int
url This property is required. String
minTimeBetweenTriggersSeconds Integer
waitAfterLastChangeSeconds Integer
url This property is required. string
minTimeBetweenTriggersSeconds number
waitAfterLastChangeSeconds number
url This property is required. String
minTimeBetweenTriggersSeconds Number
waitAfterLastChangeSeconds Number

GetJobJobSettingsSettingsTriggerPeriodic

Interval This property is required. int
Unit This property is required. string
Interval This property is required. int
Unit This property is required. string
interval This property is required. Integer
unit This property is required. String
interval This property is required. number
unit This property is required. string
interval This property is required. int
unit This property is required. str
interval This property is required. Number
unit This property is required. String

GetJobJobSettingsSettingsTriggerTableUpdate

TableNames This property is required. List<string>
Condition string
MinTimeBetweenTriggersSeconds int
WaitAfterLastChangeSeconds int
TableNames This property is required. []string
Condition string
MinTimeBetweenTriggersSeconds int
WaitAfterLastChangeSeconds int
tableNames This property is required. List<String>
condition String
minTimeBetweenTriggersSeconds Integer
waitAfterLastChangeSeconds Integer
tableNames This property is required. string[]
condition string
minTimeBetweenTriggersSeconds number
waitAfterLastChangeSeconds number
tableNames This property is required. List<String>
condition String
minTimeBetweenTriggersSeconds Number
waitAfterLastChangeSeconds Number

GetJobJobSettingsSettingsWebhookNotifications

GetJobJobSettingsSettingsWebhookNotificationsOnDurationWarningThresholdExceeded

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsWebhookNotificationsOnFailure

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsWebhookNotificationsOnStart

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsWebhookNotificationsOnStreamingBacklogExceeded

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.

GetJobJobSettingsSettingsWebhookNotificationsOnSuccess

Id This property is required. string
the id of databricks.Job if the resource was matched by name.
Id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. String
the id of databricks.Job if the resource was matched by name.
id This property is required. string
the id of databricks.Job if the resource was matched by name.
id This property is required. str
the id of databricks.Job if the resource was matched by name.
id This property is required. 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 databricks Terraform Provider.
Databricks v1.65.0 published on Wednesday, Apr 9, 2025 by Pulumi