Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
The definition of a Compute Engine VM image to run the notebook execution on.
Mirrors google.cloud.notebooks.v2.VmImage.
Instance Attribute Summary collapse
-
#family ⇒ String
Use this VM image family to find the image; the newest image in this family is used.
-
#name ⇒ String
Use this VM image name to find the image.
-
#project ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage
constructor
A new instance of GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage
Returns a new instance of GoogleCloudAiplatformV1NotebookExecutionJobWorkbenchRuntimeVmImage.
28180 28181 28182 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28180 def initialize(**args) update!(**args) end |
Instance Attribute Details
#family ⇒ String
Use this VM image family to find the image; the newest image in this family is
used.
Corresponds to the JSON property family
28167 28168 28169 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28167 def family @family end |
#name ⇒ String
Use this VM image name to find the image.
Corresponds to the JSON property name
28172 28173 28174 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28172 def name @name end |
#project ⇒ String
Required. The name of the Google Cloud project that this VM image belongs to.
Format: project_id.
Corresponds to the JSON property project
28178 28179 28180 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28178 def project @project end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
28185 28186 28187 28188 28189 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 28185 def update!(**args) @family = args[:family] if args.key?(:family) @name = args[:name] if args.key?(:name) @project = args[:project] if args.key?(:project) end |