Package com.google.container.v1
Interface NodeManagementOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
NodeManagement
,NodeManagement.Builder
public interface NodeManagementOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAutoRepair()
A flag that specifies whether the node auto-repair is enabled for the node pool.boolean
getAutoUpgrade()
A flag that specifies whether node auto-upgrade is enabled for the node pool.AutoUpgradeOptions
getUpgradeOptions()
Specifies the Auto Upgrade knobs for the node pool.AutoUpgradeOptionsOrBuilder
getUpgradeOptionsOrBuilder()
Specifies the Auto Upgrade knobs for the node pool.boolean
hasUpgradeOptions()
Specifies the Auto Upgrade knobs for the node pool.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getAutoUpgrade
boolean getAutoUpgrade()
A flag that specifies whether node auto-upgrade is enabled for the node pool. If enabled, node auto-upgrade helps keep the nodes in your node pool up to date with the latest release version of Kubernetes.
bool auto_upgrade = 1;
- Returns:
- The autoUpgrade.
-
getAutoRepair
boolean getAutoRepair()
A flag that specifies whether the node auto-repair is enabled for the node pool. If enabled, the nodes in this node pool will be monitored and, if they fail health checks too many times, an automatic repair action will be triggered.
bool auto_repair = 2;
- Returns:
- The autoRepair.
-
hasUpgradeOptions
boolean hasUpgradeOptions()
Specifies the Auto Upgrade knobs for the node pool.
.google.container.v1.AutoUpgradeOptions upgrade_options = 10;
- Returns:
- Whether the upgradeOptions field is set.
-
getUpgradeOptions
AutoUpgradeOptions getUpgradeOptions()
Specifies the Auto Upgrade knobs for the node pool.
.google.container.v1.AutoUpgradeOptions upgrade_options = 10;
- Returns:
- The upgradeOptions.
-
getUpgradeOptionsOrBuilder
AutoUpgradeOptionsOrBuilder getUpgradeOptionsOrBuilder()
Specifies the Auto Upgrade knobs for the node pool.
.google.container.v1.AutoUpgradeOptions upgrade_options = 10;
-
-