SettingsDefaultsClustersPoliciesApplyConfiguredPolicySpec

The Apply.ConfiguredPolicySpec structure contains fields that describe the policies configured to be used when the software and configuration specification documents are applied to ESXi clusters.


Properties

boolean
disable_dpm Optional

Disable DPM on the cluster. If unset, configured value would be unset.


boolean
disable_hac Optional

Disable HA Admission control on the cluster. If unset, configured value would be unset.


boolean
enable_quick_boot Optional

Enable Quick Boot during remediation in the cluster. If unset, configured value would be unset.


boolean
enforce_hcl_validation Optional

Enforce Hcl validation, when applicable, to prevent remediation if hardware compatibility issues are found. If unset, hardware compatibility issues will not prevent remediation.


boolean
evacuate_offline_vms Optional

Evacuate powered off/suspended VMs when attempting maintenance mode. If unset, configured value would be unset.


failure_action Optional

What action is to be taken if entering maintenance mode fails on a given host of the cluster. If unset, configured value would be unset.


parallel_remediation_action Optional

Enable parallel remediation of hosts in maintenance mode. Set max hosts when applicable. If unset, parallel remediation will not happen.


pre_remediation_power_action Optional

The Apply.ConfiguredPolicySpec.PreRemediationPowerAction enumerated type defines the possible actions to be taken on VMs before entering maintenance mode.
POWER_OFF_VMS : Power off VMs before entering maintenance mode.
SUSPEND_VMS : Suspend VMs before entering maintenance mode
DO_NOT_CHANGE_VMS_POWER_STATE : Do not change the VM power state
SUSPEND_VMS_TO_MEMORY : Suspend VMs to Memory before entering maintenance mode

Possible values are: POWER_OFF_VMSSUSPEND_VMSDO_NOT_CHANGE_VMS_POWER_STATESUSPEND_VMS_TO_MEMORY

JSON Example

{
	"disable_dpm": false,
	"disable_hac": false,
	"enable_quick_boot": false,
	"enforce_hcl_validation": false,
	"evacuate_offline_vms": false,
	"failure_action": {
		"action": "FAIL",
		"retry_count": 0,
		"retry_delay": 0
	},
	"parallel_remediation_action": {
		"enabled": false,
		"max_hosts": 0
	},
	"pre_remediation_power_action": "POWER_OFF_VMS"
}

Feedback

Was this page helpful?