Class: Google::Apis::GkeonpremV1::VmwareAutoRepairConfig

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

Overview

Specifies config to enable/disable auto repair. The cluster-health-controller is deployed only if Enabled is true.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmwareAutoRepairConfig

Returns a new instance of VmwareAutoRepairConfig.



4711
4712
4713
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4711

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

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Whether auto repair is enabled. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


4708
4709
4710
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4708

def enabled
  @enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4716
4717
4718
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4716

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