Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.compute; import com.fasterxml.jackson.annotation.JsonProperty;
The health status of the VM.
/** * The health status of the VM. */
public class VirtualMachineHealthStatus {
The health status information for the VM.
/** * The health status information for the VM. */
@JsonProperty(value = "status", access = JsonProperty.Access.WRITE_ONLY) private InstanceViewStatus status;
Get the health status information for the VM.
Returns:the status value
/** * Get the health status information for the VM. * * @return the status value */
public InstanceViewStatus status() { return this.status; } }