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.
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 924 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.
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 |
# File 'proto_docs/google/container/v1/cluster_service.rb', line 924 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 |