Class: Google::Cloud::Container::V1beta1::DataplaneV2Config
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::DataplaneV2Config
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/cluster_service.rb
Overview
DataplaneV2Config is the configuration for DPv2.
Defined Under Namespace
Modules: ScalabilityMode
Instance Attribute Summary collapse
-
#scalability_mode ⇒ ::Google::Cloud::Container::V1beta1::DataplaneV2Config::ScalabilityMode
Optional.
Instance Attribute Details
#scalability_mode ⇒ ::Google::Cloud::Container::V1beta1::DataplaneV2Config::ScalabilityMode
Returns Optional. Scalability mode for the cluster.
8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 8504 class DataplaneV2Config include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Options on how to scale the cluster. module ScalabilityMode # Default value. SCALABILITY_MODE_UNSPECIFIED = 0 # Disables the scale optimized mode for DPv2. DISABLED = 3 # Enables the scale optimized mode for DPv2. SCALE_OPTIMIZED = 4 end end |