Class: Google::Apis::NotebooksV1::VertexAiParameters
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::VertexAiParameters
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Parameters used in Vertex AI JobType executions.
Instance Attribute Summary collapse
-
#env ⇒ Hash<String,String>
Environment variables.
-
#network ⇒ String
The full name of the Compute Engine network to which the Job should be peered.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VertexAiParameters
constructor
A new instance of VertexAiParameters.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VertexAiParameters
Returns a new instance of VertexAiParameters.
3297 3298 3299 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 3297 def initialize(**args) update!(**args) end |
Instance Attribute Details
#env ⇒ Hash<String,String>
Environment variables. At most 100 environment variables can be specified and
unique. Example: GCP_BUCKET=gs://my-bucket/samples/
Corresponds to the JSON property env
3283 3284 3285 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 3283 def env @env end |
#network ⇒ String
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
projectis 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.
Corresponds to the JSON property
network`
3295 3296 3297 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 3295 def network @network end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3302 3303 3304 3305 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 3302 def update!(**args) @env = args[:env] if args.key?(:env) @network = args[:network] if args.key?(:network) end |