Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateDefaultContainerEnvironment

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

The default sandbox runtime environment for default container workloads.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1SandboxEnvironmentTemplateDefaultContainerEnvironment

Returns a new instance of GoogleCloudAiplatformV1SandboxEnvironmentTemplateDefaultContainerEnvironment.



36677
36678
36679
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 36677

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

Instance Attribute Details

#default_container_categoryString

Required. The category of the default container image. Corresponds to the JSON property defaultContainerCategory

Returns:

  • (String)


36669
36670
36671
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 36669

def default_container_category
  @default_container_category
end

#resourcesGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1SandboxEnvironmentTemplateResourceRequirements

Message to define resource requests and limits (mirroring Kubernetes) for each sandbox instance created from this template. Corresponds to the JSON property resources



36675
36676
36677
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 36675

def resources
  @resources
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



36682
36683
36684
36685
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 36682

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