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.compute.implementation.VirtualMachineExtensionImageInner; import com.microsoft.azure.management.resources.fluentcore.arm.models.HasName; import com.microsoft.azure.management.resources.fluentcore.model.HasInner;
An immutable client-side representation of an Azure virtual machine extension image type.
/** * An immutable client-side representation of an Azure virtual machine extension image type. */
@Fluent public interface VirtualMachineExtensionImageType extends HasInner<VirtualMachineExtensionImageInner>, HasName {
Returns:the resource ID of the virtual machine extension image type
/** * @return the resource ID of the virtual machine extension image type */
String id();
Returns:the region in which virtual machine extension image type is available
/** * @return the region in which virtual machine extension image type is available */
String regionName();
Returns:the publisher of this virtual machine extension image type
/** * @return the publisher of this virtual machine extension image type */
VirtualMachinePublisher publisher();
Returns:Virtual machine image extension versions available in this type
/** * @return Virtual machine image extension versions available in this type */
VirtualMachineExtensionImageVersions versions(); }