SparkJobResponse

data class SparkJobResponse(val archives: List<String>? = null, val args: String? = null, val codeId: String, val componentId: String? = null, val computeId: String? = null, val conf: Map<String, String>? = null, val description: String? = null, val displayName: String? = null, val entry: Either<SparkJobPythonEntryResponse, SparkJobScalaEntryResponse>, val environmentId: String? = null, val environmentVariables: Map<String, String>? = null, val experimentName: String? = null, val files: List<String>? = null, val identity: Any? = null, val inputs: Map<String, Any>? = null, val isArchived: Boolean? = null, val jars: List<String>? = null, val jobType: String, val notificationSetting: NotificationSettingResponse? = null, val outputs: Map<String, Any>? = null, val properties: Map<String, String>? = null, val pyFiles: List<String>? = null, val queueSettings: QueueSettingsResponse? = null, val resources: SparkResourceConfigurationResponse? = null, val services: Map<String, JobServiceResponse>? = null, val status: String, val tags: Map<String, String>? = null)

Spark job definition.

Constructors

Link copied to clipboard
constructor(archives: List<String>? = null, args: String? = null, codeId: String, componentId: String? = null, computeId: String? = null, conf: Map<String, String>? = null, description: String? = null, displayName: String? = null, entry: Either<SparkJobPythonEntryResponse, SparkJobScalaEntryResponse>, environmentId: String? = null, environmentVariables: Map<String, String>? = null, experimentName: String? = null, files: List<String>? = null, identity: Any? = null, inputs: Map<String, Any>? = null, isArchived: Boolean? = null, jars: List<String>? = null, jobType: String, notificationSetting: NotificationSettingResponse? = null, outputs: Map<String, Any>? = null, properties: Map<String, String>? = null, pyFiles: List<String>? = null, queueSettings: QueueSettingsResponse? = null, resources: SparkResourceConfigurationResponse? = null, services: Map<String, JobServiceResponse>? = null, status: String, tags: Map<String, String>? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val archives: List<String>? = null

Archive files used in the job.

Link copied to clipboard
val args: String? = null

Arguments for the job.

Link copied to clipboard

Required arm-id of the code asset.

Link copied to clipboard
val componentId: String? = null

ARM resource ID of the component resource.

Link copied to clipboard
val computeId: String? = null

ARM resource ID of the compute resource.

Link copied to clipboard
val conf: Map<String, String>? = null

Spark configured properties.

Link copied to clipboard
val description: String? = null

The asset description text.

Link copied to clipboard
val displayName: String? = null

Display name of job.

Link copied to clipboard

Required The entry to execute on startup of the job.

Link copied to clipboard
val environmentId: String? = null

The ARM resource ID of the Environment specification for the job.

Link copied to clipboard

Environment variables included in the job.

Link copied to clipboard
val experimentName: String? = null

The name of the experiment the job belongs to. If not set, the job is placed in the "Default" experiment.

Link copied to clipboard
val files: List<String>? = null

Files used in the job.

Link copied to clipboard
val identity: Any? = null

Identity configuration. If set, this should be one of AmlToken, ManagedIdentity, UserIdentity or null. Defaults to AmlToken if null.

Link copied to clipboard
val inputs: Map<String, Any>? = null

Mapping of input data bindings used in the job.

Link copied to clipboard
val isArchived: Boolean? = null

Is the asset archived?

Link copied to clipboard
val jars: List<String>? = null

Jar files used in the job.

Link copied to clipboard

Enum to determine the type of job. Expected value is 'Spark'.

Link copied to clipboard

Notification setting for the job

Link copied to clipboard
val outputs: Map<String, Any>? = null

Mapping of output data bindings used in the job.

Link copied to clipboard
val properties: Map<String, String>? = null

The asset property dictionary.

Link copied to clipboard
val pyFiles: List<String>? = null

Python files used in the job.

Link copied to clipboard

Queue settings for the job

Link copied to clipboard

Compute Resource configuration for the job.

Link copied to clipboard

List of JobEndpoints. For local jobs, a job endpoint will have an endpoint value of FileStreamObject.

Link copied to clipboard

Status of the job.

Link copied to clipboard
val tags: Map<String, String>? = null

Tag dictionary. Tags can be added, removed, and updated.