Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Notebook Software Config. This is passed to the backend when user makes software configurations in UI.
Instance Attribute Summary collapse
-
#colab_image ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ColabImage
Colab image of the runtime.
-
#env ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar>
Optional.
-
#post_startup_script_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PostStartupScriptConfig
Post startup script config.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1NotebookSoftwareConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1NotebookSoftwareConfig
Returns a new instance of GoogleCloudAiplatformV1beta1NotebookSoftwareConfig.
31913 31914 31915 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31913 def initialize(**args) update!(**args) end |
Instance Attribute Details
#colab_image ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ColabImage
Colab image of the runtime.
Corresponds to the JSON property colabImage
31900 31901 31902 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31900 def colab_image @colab_image end |
#env ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1EnvVar>
Optional. Environment variables to be passed to the container. Maximum limit
is 100.
Corresponds to the JSON property env
31906 31907 31908 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31906 def env @env end |
#post_startup_script_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1PostStartupScriptConfig
Post startup script config.
Corresponds to the JSON property postStartupScriptConfig
31911 31912 31913 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31911 def post_startup_script_config @post_startup_script_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31918 31919 31920 31921 31922 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31918 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 |