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
Overview
Parameters used in Vertex AI JobType executions.
Instance Attribute Summary collapse
-
#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.
2718 2719 2720 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2718 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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`. Whereprojectis a project number, as in12345, and
networkis 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 propertynetwork`
2716 2717 2718 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2716 def network @network end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2723 2724 2725 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2723 def update!(**args) @network = args[:network] if args.key?(:network) end |