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 java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
Extensions summary for virtual machines of a virtual machine scale set.
/** * Extensions summary for virtual machines of a virtual machine scale set. */
public class VirtualMachineScaleSetVMExtensionsSummary {
The extension name.
/** * The extension name. */
@JsonProperty(value = "name", access = JsonProperty.Access.WRITE_ONLY) private String name;
The extensions information.
/** * The extensions information. */
@JsonProperty(value = "statusesSummary", access = JsonProperty.Access.WRITE_ONLY) private List<VirtualMachineStatusCodeCount> statusesSummary;
Get the extension name.
Returns:the name value
/** * Get the extension name. * * @return the name value */
public String name() { return this.name; }
Get the extensions information.
Returns:the statusesSummary value
/** * Get the extensions information. * * @return the statusesSummary value */
public List<VirtualMachineStatusCodeCount> statusesSummary() { return this.statusesSummary; } }