BatchEndpointArgs

data class BatchEndpointArgs(val authMode: Output<Either<String, EndpointAuthMode>>, val defaults: Output<BatchEndpointDefaultsArgs>? = null, val description: Output<String>? = null, val keys: Output<EndpointAuthKeysArgs>? = null, val properties: Output<Map<String, String>>? = null) : ConvertibleToJava<BatchEndpointArgs>

Batch endpoint configuration.

Constructors

Link copied to clipboard
constructor(authMode: Output<Either<String, EndpointAuthMode>>, defaults: Output<BatchEndpointDefaultsArgs>? = null, description: Output<String>? = null, keys: Output<EndpointAuthKeysArgs>? = null, properties: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val authMode: Output<Either<String, EndpointAuthMode>>

Required Use 'Key' for key based authentication and 'AMLToken' for Azure Machine Learning token-based authentication. 'Key' doesn't expire but 'AMLToken' does.

Link copied to clipboard
val defaults: Output<BatchEndpointDefaultsArgs>? = null

Default values for Batch Endpoint

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

Description of the inference endpoint.

Link copied to clipboard
val keys: Output<EndpointAuthKeysArgs>? = null

EndpointAuthKeys to set initially on an Endpoint. This property will always be returned as null. AuthKey values must be retrieved using the ListKeys API.

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

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

Functions

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