VertexAIParametersArgs

data class VertexAIParametersArgs(val env: Output<Map<String, String>>? = null, val network: Output<String>? = null) : ConvertibleToJava<VertexAIParametersArgs>

Parameters used in Vertex AI JobType executions.

Constructors

Link copied to clipboard
constructor(env: Output<Map<String, String>>? = null, network: Output<String>? = null)

Properties

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

Environment variables. At most 100 environment variables can be specified and unique. Example: GCP_BUCKET=gs://my-bucket/samples/

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

The full name of the Compute Engine network to which the Job should be peered. For example, projects/12345/global/networks/myVPC. Format is of the form projects/{project}/global/networks/{network}. Where {project} is a project number, as in 12345, and {network} is a network name. Private services access must already be configured for the network. If left unspecified, the job is not peered with any network.

Functions

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