Package | Description |
---|---|
com.vmware.esx.settings.clusters.configuration |
The
com.vmware.esx.settings.clusters.configuration package provides
interfaces to manage the configuration of an ESX cluster. |
Modifier and Type | Field and Description |
---|---|
static ClusterPrecheckResult.Status |
ClusterPrecheckResult.Status.ERROR
The operation failed with errors.
|
static ClusterPrecheckResult.Status |
ClusterPrecheckResult.Status.OK
The operation completed successfully.
|
static ClusterPrecheckResult.Status |
ClusterPrecheckResult.Status.RUNNING
The task is in-progress.
|
Modifier and Type | Method and Description |
---|---|
ClusterPrecheckResult.Status |
ClusterPrecheckResult.getStatus()
Overall status of precheck on the cluster.
|
static ClusterPrecheckResult.Status |
ClusterPrecheckResult.Status.valueOf(java.lang.String name)
Returns the enumeration constant for the specified name.
|
static ClusterPrecheckResult.Status[] |
ClusterPrecheckResult.Status.values()
Retrieve all enumeration constants pre-defined by this enumeration class.
|
Modifier and Type | Method and Description |
---|---|
void |
ClusterPrecheckResult.setStatus(ClusterPrecheckResult.Status status)
Overall status of precheck on the cluster.
|
Constructor and Description |
---|
Builder(ClusterPrecheckResult.Status status,
java.lang.String softwareCommit,
java.util.Calendar endTime,
LocalizableMessage summary,
java.util.List<LocalizableMessage> remediationSummary,
java.util.List<LocalizableMessage> remediationNotes,
java.util.Map<java.lang.String,HostInfo> hostInfo,
java.util.Map<java.lang.String,HostPrecheckResult> hostPrecheck,
java.util.Set<java.lang.String> successfulHosts,
java.util.Set<java.lang.String> failedHosts,
java.util.Set<java.lang.String> skippedHosts)
Constructor with parameters for the required properties of
ClusterPrecheckResult . |