Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec
- 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
The specification of a SandboxEnvironment.
Instance Attribute Summary collapse
-
#code_execution_environment ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment
The code execution environment with customized settings.
-
#computer_use_environment ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecComputerUseEnvironment
The computer use environment with customized settings.
-
#shell_environment ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecShellEnvironment
The shell environment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec
constructor
A new instance of GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec
Returns a new instance of GoogleCloudAiplatformV1beta1SandboxEnvironmentSpec.
52311 52312 52313 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 52311 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code_execution_environment ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecCodeExecutionEnvironment
The code execution environment with customized settings.
Corresponds to the JSON property codeExecutionEnvironment
52299 52300 52301 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 52299 def code_execution_environment @code_execution_environment end |
#computer_use_environment ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecComputerUseEnvironment
The computer use environment with customized settings.
Corresponds to the JSON property computerUseEnvironment
52304 52305 52306 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 52304 def computer_use_environment @computer_use_environment end |
#shell_environment ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1SandboxEnvironmentSpecShellEnvironment
The shell environment.
Corresponds to the JSON property shellEnvironment
52309 52310 52311 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 52309 def shell_environment @shell_environment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
52316 52317 52318 52319 52320 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 52316 def update!(**args) @code_execution_environment = args[:code_execution_environment] if args.key?(:code_execution_environment) @computer_use_environment = args[:computer_use_environment] if args.key?(:computer_use_environment) @shell_environment = args[:shell_environment] if args.key?(:shell_environment) end |