BatchDeploymentArgs

data class BatchDeploymentArgs(val codeConfiguration: Output<CodeConfigurationArgs>? = null, val compute: Output<String>? = null, val description: Output<String>? = null, val environmentId: Output<String>? = null, val environmentVariables: Output<Map<String, String>>? = null, val errorThreshold: Output<Int>? = null, val loggingLevel: Output<Either<String, BatchLoggingLevel>>? = null, val maxConcurrencyPerInstance: Output<Int>? = null, val miniBatchSize: Output<Double>? = null, val model: Output<Any>? = null, val outputAction: Output<Either<String, BatchOutputAction>>? = null, val outputFileName: Output<String>? = null, val properties: Output<Map<String, String>>? = null, val resources: Output<DeploymentResourceConfigurationArgs>? = null, val retrySettings: Output<BatchRetrySettingsArgs>? = null) : ConvertibleToJava<BatchDeploymentArgs>

Batch inference settings per deployment.

Constructors

Link copied to clipboard
constructor(codeConfiguration: Output<CodeConfigurationArgs>? = null, compute: Output<String>? = null, description: Output<String>? = null, environmentId: Output<String>? = null, environmentVariables: Output<Map<String, String>>? = null, errorThreshold: Output<Int>? = null, loggingLevel: Output<Either<String, BatchLoggingLevel>>? = null, maxConcurrencyPerInstance: Output<Int>? = null, miniBatchSize: Output<Double>? = null, model: Output<Any>? = null, outputAction: Output<Either<String, BatchOutputAction>>? = null, outputFileName: Output<String>? = null, properties: Output<Map<String, String>>? = null, resources: Output<DeploymentResourceConfigurationArgs>? = null, retrySettings: Output<BatchRetrySettingsArgs>? = null)

Properties

Link copied to clipboard

Code configuration for the endpoint deployment.

Link copied to clipboard
val compute: Output<String>? = null

Compute target for batch inference operation.

Link copied to clipboard
val description: Output<String>? = null

Description of the endpoint deployment.

Link copied to clipboard
val environmentId: Output<String>? = null

ARM resource ID or AssetId of the environment specification for the endpoint deployment.

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

Environment variables configuration for the deployment.

Link copied to clipboard
val errorThreshold: Output<Int>? = null

Error threshold, if the error count for the entire input goes above this value, the batch inference will be aborted. Range is -1, int.MaxValue. For FileDataset, this value is the count of file failures. For TabularDataset, this value is the count of record failures. If set to -1 (the lower bound), all failures during batch inference will be ignored.

Link copied to clipboard
val loggingLevel: Output<Either<String, BatchLoggingLevel>>? = null

Logging level for batch inference operation.

Link copied to clipboard
val maxConcurrencyPerInstance: Output<Int>? = null

Indicates maximum number of parallelism per instance.

Link copied to clipboard
val miniBatchSize: Output<Double>? = null

Size of the mini-batch passed to each batch invocation. For FileDataset, this is the number of files per mini-batch. For TabularDataset, this is the size of the records in bytes, per mini-batch.

Link copied to clipboard
val model: Output<Any>? = null

Reference to the model asset for the endpoint deployment.

Link copied to clipboard
val outputAction: Output<Either<String, BatchOutputAction>>? = null

Indicates how the output will be organized.

Link copied to clipboard
val outputFileName: Output<String>? = null

Customized output file name for append_row output action.

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

Property dictionary. Properties can be added, but not removed or altered.

Link copied to clipboard

Indicates compute configuration for the job. If not provided, will default to the defaults defined in ResourceConfiguration.

Link copied to clipboard

Retry Settings for the batch inference operation. If not provided, will default to the defaults defined in BatchRetrySettings.

Functions

Link copied to clipboard
open override fun toJava(): BatchDeploymentArgs