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; import com.microsoft.azure.management.resources.fluentcore.arm.Region; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasName;
Represents a virtual machine image offer.
/** * Represents a virtual machine image offer. */
@Fluent public interface VirtualMachineOffer extends HasName {
Returns:the region where this virtual machine image offer is available
/** * @return the region where this virtual machine image offer is available */
Region region();
Returns:the publisher of this virtual machine image offer
/** * @return the publisher of this virtual machine image offer */
VirtualMachinePublisher publisher();
Returns:virtual machine image SKUs available in this offer
/** * @return virtual machine image SKUs available in this offer */
VirtualMachineSkus skus(); }