Class: Google::Cloud::Container::V1beta1::GatewayAPIConfig

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

Overview

GatewayAPIConfig contains the desired config of Gateway API on this cluster.

Defined Under Namespace

Modules: Channel

Instance Attribute Summary collapse

Instance Attribute Details

#channel::Google::Cloud::Container::V1beta1::GatewayAPIConfig::Channel

Returns The Gateway API release channel to use for Gateway API.

Returns:



4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 4322

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

  # Channel describes if/how Gateway API should be installed and implemented in
  # a cluster.
  module Channel
    # Default value.
    CHANNEL_UNSPECIFIED = 0

    # Gateway API support is disabled
    CHANNEL_DISABLED = 1

    # Gateway API support is enabled, experimental CRDs are installed
    CHANNEL_EXPERIMENTAL = 3

    # Gateway API support is enabled, standard CRDs are installed
    CHANNEL_STANDARD = 4
  end
end