Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. */
package com.microsoft.azure.management.compute; import com.microsoft.azure.management.apigeneration.Fluent;
A type representing a SKU available for virtual machines in a scale set.
/** * A type representing a SKU available for virtual machines in a scale set. */
@Fluent public interface VirtualMachineScaleSetSku {
Returns:the type of resource the SKU applies to
/** * @return the type of resource the SKU applies to */
String resourceType();
Returns:the SKU type
/** * @return the SKU type */
VirtualMachineScaleSetSkuTypes skuType();
Returns:available scaling information
/** * @return available scaling information */
VirtualMachineScaleSetSkuCapacity capacity(); }