Class: Google::Apis::ContainerV1beta1::CloudRunConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::CloudRunConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/representations.rb
Overview
Configuration options for the Cloud Run feature.
Instance Attribute Summary collapse
-
#disabled ⇒ Boolean
(also: #disabled?)
Whether Cloud Run addon is enabled for this cluster.
-
#load_balancer_type ⇒ String
Which load balancer type is installed for Cloud Run.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CloudRunConfig
constructor
A new instance of CloudRunConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CloudRunConfig
Returns a new instance of CloudRunConfig.
459 460 461 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 459 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disabled ⇒ Boolean Also known as: disabled?
Whether Cloud Run addon is enabled for this cluster.
Corresponds to the JSON property disabled
451 452 453 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 451 def disabled @disabled end |
#load_balancer_type ⇒ String
Which load balancer type is installed for Cloud Run.
Corresponds to the JSON property loadBalancerType
457 458 459 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 457 def load_balancer_type @load_balancer_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
464 465 466 467 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 464 def update!(**args) @disabled = args[:disabled] if args.key?(:disabled) @load_balancer_type = args[:load_balancer_type] if args.key?(:load_balancer_type) end |