Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ColabImage

Inherits:
Object
  • Object
show all
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

Colab image of the runtime.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ColabImage

Returns a new instance of GoogleCloudAiplatformV1ColabImage.



4183
4184
4185
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4183

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#descriptionString

Output only. A human-readable description of the specified colab image release, populated by the system. Example: "Python 3.10", "Latest - current Python 3. 11" Corresponds to the JSON property description

Returns:

  • (String)


4175
4176
4177
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4175

def description
  @description
end

#release_nameString

Optional. The release name of the NotebookRuntime Colab image, e.g. "py310". If not specified, detault to the latest release. Corresponds to the JSON property releaseName

Returns:

  • (String)


4181
4182
4183
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4181

def release_name
  @release_name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4188
4189
4190
4191
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4188

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @release_name = args[:release_name] if args.key?(:release_name)
end