Class: Google::Cloud::Container::V1::SandboxConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::SandboxConfig
- 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
-
#type ⇒ ::Google::Cloud::Container::V1::SandboxConfig::Type
Type of the sandbox to use for the node.
Instance Attribute Details
#type ⇒ ::Google::Cloud::Container::V1::SandboxConfig::Type
Returns Type of the sandbox to use for the node.
560 561 562 563 564 565 566 567 568 569 570 571 572 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 560 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 |