class Google::Apis::ContainerV1beta1::NodeManagement
NodeManagement
defines the set of node management services turned on for the node pool.
Attributes
Whether the nodes will be automatically repaired. Corresponds to the JSON property `autoRepair` @return [Boolean]
Whether the nodes will be automatically repaired. Corresponds to the JSON property `autoRepair` @return [Boolean]
Whether the nodes will be automatically upgraded. Corresponds to the JSON property `autoUpgrade` @return [Boolean]
Whether the nodes will be automatically upgraded. Corresponds to the JSON property `autoUpgrade` @return [Boolean]
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
# File lib/google/apis/container_v1beta1/classes.rb, line 3302 def initialize(**args) update!(**args) end
Public Instance Methods
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