ComputeExtensions.GetVirtualMachineImage Method

Definition

Gets a virtual machine image. <item> Mocking. To mock this method, please mock GetVirtualMachineImage(AzureLocation, String, String, String, String, CancellationToken) instead. </item>

public static Azure.Response<Azure.ResourceManager.Compute.Models.VirtualMachineImage> GetVirtualMachineImage(this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, Azure.Core.AzureLocation location, string publisherName, string offer, string skus, string version, System.Threading.CancellationToken cancellationToken = default);
static member GetVirtualMachineImage : Azure.ResourceManager.Resources.SubscriptionResource * Azure.Core.AzureLocation * string * string * string * string * System.Threading.CancellationToken -> Azure.Response<Azure.ResourceManager.Compute.Models.VirtualMachineImage>
<Extension()>
Public Function GetVirtualMachineImage (subscriptionResource As SubscriptionResource, location As AzureLocation, publisherName As String, offer As String, skus As String, version As String, Optional cancellationToken As CancellationToken = Nothing) As Response(Of VirtualMachineImage)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource the method will execute against.

location
AzureLocation

The name of the Azure region.

publisherName
String

A valid image publisher.

offer
String

A valid image publisher offer.

skus
String

A valid image SKU.

version
String

A valid image SKU version.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Exceptions

publisherName, offer, skus or version is an empty string, and was expected to be non-empty.

subscriptionResource is null.

Applies to