Class: Google::Cloud::Container::V1::SandboxConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/container/v1/cluster_service.rb

Overview

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

Defined Under Namespace

Modules: Type

Instance Attribute Summary collapse

Instance Attribute Details

#type::Google::Cloud::Container::V1::SandboxConfig::Type

Returns Type of the sandbox to use for the node.

Returns:



414
415
416
417
418
419
420
421
422
423
424
425
426
# File 'proto_docs/google/container/v1/cluster_service.rb', line 414

class SandboxConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Possible types of sandboxes.
  module Type
    # Default value. This should not be used.
    UNSPECIFIED = 0

    # Run sandbox using gvisor.
    GVISOR = 1
  end
end