Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookSoftwareConfig

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

Notebook Software Config. This is passed to the backend when user makes software configurations in UI.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookSoftwareConfig

Returns a new instance of GoogleCloudAiplatformV1NotebookSoftwareConfig.



25399
25400
25401
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25399

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

Instance Attribute Details

#colab_imageGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ColabImage

Colab image of the runtime. Corresponds to the JSON property colabImage



25386
25387
25388
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25386

def colab_image
  @colab_image
end

#envArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnvVar>

Optional. Environment variables to be passed to the container. Maximum limit is 100. Corresponds to the JSON property env



25392
25393
25394
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25392

def env
  @env
end

#post_startup_script_configGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1PostStartupScriptConfig

Post startup script config. Corresponds to the JSON property postStartupScriptConfig



25397
25398
25399
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25397

def post_startup_script_config
  @post_startup_script_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



25404
25405
25406
25407
25408
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 25404

def update!(**args)
  @colab_image = args[:colab_image] if args.key?(:colab_image)
  @env = args[:env] if args.key?(:env)
  @post_startup_script_config = args[:post_startup_script_config] if args.key?(:post_startup_script_config)
end