Class: Google::Cloud::Container::V1::GatewayAPIConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::GatewayAPIConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
GatewayAPIConfig contains the desired config of Gateway API on this cluster.
Defined Under Namespace
Modules: Channel
Instance Attribute Summary collapse
-
#channel ⇒ ::Google::Cloud::Container::V1::GatewayAPIConfig::Channel
The Gateway API release channel to use for Gateway API.
Instance Attribute Details
#channel ⇒ ::Google::Cloud::Container::V1::GatewayAPIConfig::Channel
Returns The Gateway API release channel to use for Gateway API.
4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 4595 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 # Deprecated: use CHANNEL_STANDARD instead. # 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 |