JobResourceConfigurationResponse

data class JobResourceConfigurationResponse(val dockerArgs: String? = null, val instanceCount: Int? = null, val instanceType: String? = null, val properties: Map<String, Any>? = null, val shmSize: String? = null)

Constructors

Link copied to clipboard
constructor(dockerArgs: String? = null, instanceCount: Int? = null, instanceType: String? = null, properties: Map<String, Any>? = null, shmSize: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val dockerArgs: String? = null

Extra arguments to pass to the Docker run command. This would override any parameters that have already been set by the system, or in this section. This parameter is only supported for Azure ML compute types.

Link copied to clipboard
val instanceCount: Int? = null

Optional number of instances or nodes used by the compute target.

Link copied to clipboard
val instanceType: String? = null

Optional type of VM used as supported by the compute target.

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

Additional properties bag.

Link copied to clipboard
val shmSize: String? = null

Size of the docker container's shared memory block. This should be in the format of (number)(unit) where number as to be greater than 0 and the unit can be one of b(bytes), k(kilobytes), m(megabytes), or g(gigabytes).