Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookSoftwareConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1NotebookSoftwareConfig
- 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.
Instance Attribute Summary collapse
-
#env ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnvVar>
Optional.
-
#post_startup_script_config ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PostStartupScriptConfig
Post startup script config.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookSoftwareConfig
constructor
A new instance of GoogleCloudAiplatformV1NotebookSoftwareConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1NotebookSoftwareConfig
Returns a new instance of GoogleCloudAiplatformV1NotebookSoftwareConfig.
20036 20037 20038 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20036 def initialize(**args) update!(**args) end |
Instance Attribute Details
#env ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1EnvVar>
Optional. Environment variables to be passed to the container. Maximum limit
is 100.
Corresponds to the JSON property env
20029 20030 20031 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20029 def env @env end |
#post_startup_script_config ⇒ Google::Apis::AiplatformV1::GoogleCloudAiplatformV1PostStartupScriptConfig
Post startup script config.
Corresponds to the JSON property postStartupScriptConfig
20034 20035 20036 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20034 def post_startup_script_config @post_startup_script_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
20041 20042 20043 20044 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 20041 def update!(**args) @env = args[:env] if args.key?(:env) @post_startup_script_config = args[:post_startup_script_config] if args.key?(:post_startup_script_config) end |