class Google::Apis::ContainerV1beta1::SandboxConfig

SandboxConfig contains configurations of the sandbox to use for the node.

Attributes

sandbox_type[RW]

Type of the sandbox to use for the node (e.g. 'gvisor') Corresponds to the JSON property `sandboxType` @return [String]

type[RW]

Type of the sandbox to use for the node. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1beta1/classes.rb, line 4189
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1beta1/classes.rb, line 4194
def update!(**args)
  @sandbox_type = args[:sandbox_type] if args.key?(:sandbox_type)
  @type = args[:type] if args.key?(:type)
end