ModelArgs

data class ModelArgs(val dataset: Output<String>? = null, val displayName: Output<String>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val project: Output<String>? = null) : ConvertibleToJava<ModelArgs>

Creates a Model.

Constructors

Link copied to clipboard
fun ModelArgs(dataset: Output<String>? = null, displayName: Output<String>? = null, location: Output<String>? = null, name: Output<String>? = null, project: Output<String>? = null)

Functions

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

Properties

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

The dataset from which the model is trained, in form of projects/{project-number-or-id}/locations/{location_id}/datasets/{dataset_id}

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

The name of the model to show in the interface. The name can be up to 32 characters long and can consist only of ASCII Latin letters A-Z and a-z, underscores (_), and ASCII digits 0-9.

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

The resource name of the model, in form of projects/{project-number-or-id}/locations/{location_id}/models/{model_id}

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