Class: Google::Cloud::Container::V1::DataplaneV2Config

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

Overview

DataplaneV2Config is the configuration for DPv2.

Defined Under Namespace

Modules: ScalabilityMode

Instance Attribute Summary collapse

Instance Attribute Details

#scalability_mode::Google::Cloud::Container::V1::DataplaneV2Config::ScalabilityMode

Returns Optional. Scalability mode for the cluster.

Returns:



7701
7702
7703
7704
7705
7706
7707
7708
7709
7710
7711
7712
7713
7714
7715
7716
# File 'proto_docs/google/container/v1/cluster_service.rb', line 7701

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