Class: Google::Cloud::Container::V1::SecondaryBootDisk
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::SecondaryBootDisk
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
SecondaryBootDisk represents a persistent disk attached to a node with special configurations based on its mode.
Defined Under Namespace
Modules: Mode
Instance Attribute Summary collapse
-
#disk_image ⇒ ::String
Fully-qualified resource ID for an existing disk image.
-
#mode ⇒ ::Google::Cloud::Container::V1::SecondaryBootDisk::Mode
Disk mode (container image cache, etc.).
Instance Attribute Details
#disk_image ⇒ ::String
5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 5553 class SecondaryBootDisk include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Mode specifies how the secondary boot disk will be used. # This triggers mode-specified logic in the control plane. module Mode # MODE_UNSPECIFIED is when mode is not set. MODE_UNSPECIFIED = 0 # CONTAINER_IMAGE_CACHE is for using the secondary boot disk as # a container image cache. CONTAINER_IMAGE_CACHE = 1 end end |
#mode ⇒ ::Google::Cloud::Container::V1::SecondaryBootDisk::Mode
5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 5553 class SecondaryBootDisk include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Mode specifies how the secondary boot disk will be used. # This triggers mode-specified logic in the control plane. module Mode # MODE_UNSPECIFIED is when mode is not set. MODE_UNSPECIFIED = 0 # CONTAINER_IMAGE_CACHE is for using the secondary boot disk as # a container image cache. CONTAINER_IMAGE_CACHE = 1 end end |