Class: Google::Cloud::Container::V1beta1::CloudRunConfig
- Inherits:
-
Object
- Object
- Google::Cloud::Container::V1beta1::CloudRunConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/container/v1beta1/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::V1beta1::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.
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 751 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::V1beta1::CloudRunConfig::LoadBalancerType
Returns Which load balancer type is installed for Cloud Run.
751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 |
# File 'proto_docs/google/container/v1beta1/cluster_service.rb', line 751 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 |