Package-level declarations

Types

Link copied to clipboard
class EngineModel : KotlinCustomResource

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
Link copied to clipboard
object EngineModelMapper : ResourceMapper<EngineModel>
Link copied to clipboard

Functions

Link copied to clipboard
suspend fun engineModel(name: String, block: suspend EngineModelResourceBuilder.() -> Unit): EngineModel