class Google::Apis::ContainerV1::CloudRunConfig

Configuration options for the Cloud Run feature.

Attributes

disabled[RW]

Whether Cloud Run addon is enabled for this cluster. Corresponds to the JSON property `disabled` @return [Boolean]

disabled?[RW]

Whether Cloud Run addon is enabled for this cluster. Corresponds to the JSON property `disabled` @return [Boolean]

load_balancer_type[RW]

Which load balancer type is installed for Cloud Run. Corresponds to the JSON property `loadBalancerType` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1/classes.rb, line 452
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1/classes.rb, line 457
def update!(**args)
  @disabled = args[:disabled] if args.key?(:disabled)
  @load_balancer_type = args[:load_balancer_type] if args.key?(:load_balancer_type)
end