Class: Google::Cloud::Container::V1::CloudRunConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1::CloudRunConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1/cluster_service.rb
Overview
Configuration options for the Cloud Run feature.
Defined Under Namespace
Modules: LoadBalancerType
Instance Attribute Summary collapse
-
#disabled ⇒ ::Boolean
Whether Cloud Run addon is enabled for this cluster.
-
#load_balancer_type ⇒ ::Google::Cloud::Container::V1::CloudRunConfig::LoadBalancerType
Which load balancer type is installed for Cloud Run.
Instance Attribute Details
#disabled ⇒ ::Boolean
Returns Whether Cloud Run addon is enabled for this cluster.
985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 985 class CloudRunConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Load balancer type of ingress service of Cloud Run. module LoadBalancerType # Load balancer type for Cloud Run is unspecified. LOAD_BALANCER_TYPE_UNSPECIFIED = 0 # Install external load balancer for Cloud Run. LOAD_BALANCER_TYPE_EXTERNAL = 1 # Install internal load balancer for Cloud Run. LOAD_BALANCER_TYPE_INTERNAL = 2 end end |
#load_balancer_type ⇒ ::Google::Cloud::Container::V1::CloudRunConfig::LoadBalancerType
Returns Which load balancer type is installed for Cloud Run.
985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 985 class CloudRunConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Load balancer type of ingress service of Cloud Run. module LoadBalancerType # Load balancer type for Cloud Run is unspecified. LOAD_BALANCER_TYPE_UNSPECIFIED = 0 # Install external load balancer for Cloud Run. LOAD_BALANCER_TYPE_EXTERNAL = 1 # Install internal load balancer for Cloud Run. LOAD_BALANCER_TYPE_INTERNAL = 2 end end |