class Google::Apis::ContainerV1beta1::NodeManagement

NodeManagement defines the set of node management services turned on for the node pool.

Attributes

auto_repair[RW]

Whether the nodes will be automatically repaired. Corresponds to the JSON property `autoRepair` @return [Boolean]

auto_repair?[RW]

Whether the nodes will be automatically repaired. Corresponds to the JSON property `autoRepair` @return [Boolean]

auto_upgrade[RW]

Whether the nodes will be automatically upgraded. Corresponds to the JSON property `autoUpgrade` @return [Boolean]

auto_upgrade?[RW]

Whether the nodes will be automatically upgraded. Corresponds to the JSON property `autoUpgrade` @return [Boolean]

upgrade_options[RW]

AutoUpgradeOptions defines the set of options for the user to control how the Auto Upgrades will proceed. Corresponds to the JSON property `upgradeOptions` @return [Google::Apis::ContainerV1beta1::AutoUpgradeOptions]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1beta1/classes.rb, line 3302
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_v1beta1/classes.rb, line 3307
def update!(**args)
  @auto_repair = args[:auto_repair] if args.key?(:auto_repair)
  @auto_upgrade = args[:auto_upgrade] if args.key?(:auto_upgrade)
  @upgrade_options = args[:upgrade_options] if args.key?(:upgrade_options)
end