VirtualMachineExtensionImage Interface

Implements

public interface VirtualMachineExtensionImage
extends HasInnerModel<VirtualMachineExtensionImageInner>

An immutable client-side representation of an Azure virtual machine extension image.

Note: Azure virtual machine extension image is also referred as virtual machine extension handler.

Method Summary

Modifier and Type Method and Description
abstract ComputeRoles computeRole()
abstract String handlerSchema()
abstract String id()
abstract OperatingSystemTypes osType()
abstract String publisherName()
abstract String regionName()
abstract boolean supportsMultipleExtensions()
abstract boolean supportsVirtualMachineScaleSets()
abstract String typeName()
abstract VirtualMachineExtensionImageVersion version()
abstract String versionName()

Method Details

computeRole

public abstract ComputeRoles computeRole()

Returns:

the type of role this virtual machine extension image supports

handlerSchema

public abstract String handlerSchema()

Returns:

the schema defined by publisher, where extension consumers should provide settings in a matching schema

id

public abstract String id()

Returns:

the resource ID of the extension image

osType

public abstract OperatingSystemTypes osType()

Returns:

the operating system this virtual machine extension image supports

publisherName

public abstract String publisherName()

Returns:

the name of the publisher of the virtual machine extension image

regionName

public abstract String regionName()

Returns:

the region in which virtual machine extension image is available

supportsMultipleExtensions

public abstract boolean supportsMultipleExtensions()

Returns:

true if the handler can support multiple extensions

supportsVirtualMachineScaleSets

public abstract boolean supportsVirtualMachineScaleSets()

Returns:

true if the extension can be used with virtual machine scale sets, false otherwise

typeName

public abstract String typeName()

Returns:

the name of the virtual machine extension image type this image belongs to

version

public abstract VirtualMachineExtensionImageVersion version()

Returns:

the virtual machine extension image version this image belongs to

versionName

public abstract String versionName()

Returns:

the name of the virtual machine extension image version this image represents

Applies to