Class: Google::Cloud::Container::V1::EnterpriseConfig

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

Overview

EnterpriseConfig is the cluster enterprise configuration.

Defined Under Namespace

Modules: ClusterTier

Instance Attribute Summary collapse

Instance Attribute Details

#cluster_tier::Google::Cloud::Container::V1::EnterpriseConfig::ClusterTier (readonly)

Returns Output only. [Output only] cluster_tier specifies the premium tier of the cluster.

Returns:



5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
# File 'proto_docs/google/container/v1/cluster_service.rb', line 5433

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

  # Premium tiers for GKE Cluster.
  module ClusterTier
    # CLUSTER_TIER_UNSPECIFIED is when cluster_tier is not set.
    CLUSTER_TIER_UNSPECIFIED = 0

    # STANDARD indicates a standard GKE cluster.
    STANDARD = 1

    # ENTERPRISE indicates a GKE Enterprise cluster.
    ENTERPRISE = 2
  end
end