Package-level declarations
Types
Link copied to clipboard
Represents a machine learning solution. A model can have multiple versions, each of which is a deployed, trained model ready to receive prediction requests. The model itself is just a container. To get more information about Model, see:
Link copied to clipboard
data class EngineModelArgs(val defaultVersion: Output<EngineModelDefaultVersionArgs>? = null, val description: Output<String>? = null, val labels: Output<Map<String, String>>? = null, val name: Output<String>? = null, val onlinePredictionConsoleLogging: Output<Boolean>? = null, val onlinePredictionLogging: Output<Boolean>? = null, val project: Output<String>? = null, val regions: Output<String>? = null) : ConvertibleToJava<EngineModelArgs>
Represents a machine learning solution. A model can have multiple versions, each of which is a deployed, trained model ready to receive prediction requests. The model itself is just a container. To get more information about Model, see:
Link copied to clipboard
class EngineModelArgsBuilder
Builder for EngineModelArgs.
Link copied to clipboard
Link copied to clipboard
Builder for EngineModel.
Functions
Link copied to clipboard
suspend fun engineModel(name: String, block: suspend EngineModelResourceBuilder.() -> Unit): EngineModel