Class: Google::Apis::ContainerV1beta1::CloudRunConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

Configuration options for the Cloud Run feature.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CloudRunConfig

Returns a new instance of CloudRunConfig.



1260
1261
1262
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1260

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#disabledBoolean Also known as: disabled?

Whether Cloud Run addon is enabled for this cluster. Corresponds to the JSON property disabled

Returns:

  • (Boolean)


1252
1253
1254
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1252

def disabled
  @disabled
end

#load_balancer_typeString

Which load balancer type is installed for Cloud Run. Corresponds to the JSON property loadBalancerType

Returns:

  • (String)


1258
1259
1260
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1258

def load_balancer_type
  @load_balancer_type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1265
1266
1267
1268
# File 'lib/google/apis/container_v1beta1/classes.rb', line 1265

def update!(**args)
  @disabled = args[:disabled] if args.key?(:disabled)
  @load_balancer_type = args[:load_balancer_type] if args.key?(:load_balancer_type)
end