Class: Google::Cloud::Notebooks::V1::ExecutionTemplate::VertexAIParameters
- Inherits:
-
Object
- Object
- Google::Cloud::Notebooks::V1::ExecutionTemplate::VertexAIParameters
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/notebooks/v1/execution.rb
Overview
Parameters used in Vertex AI JobType executions.
Defined Under Namespace
Classes: EnvEntry
Instance Attribute Summary collapse
-
#env ⇒ ::Google::Protobuf::Map{::String => ::String}
Environment variables.
-
#network ⇒ ::String
The full name of the Compute Engine network to which the Job should be peered.
Instance Attribute Details
#env ⇒ ::Google::Protobuf::Map{::String => ::String}
Returns Environment variables.
At most 100 environment variables can be specified and unique.
Example: GCP_BUCKET=gs://my-bucket/samples/
.
196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'proto_docs/google/cloud/notebooks/v1/execution.rb', line 196 class VertexAIParameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class EnvEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |
#network ⇒ ::String
Returns 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.
196 197 198 199 200 201 202 203 204 205 206 207 208 |
# File 'proto_docs/google/cloud/notebooks/v1/execution.rb', line 196 class VertexAIParameters include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::String] class EnvEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |