Condividi tramite


ComputeExtensions.GetVirtualMachineImagesEdgeZonesAsync Method

Definition

Overloads

GetVirtualMachineImagesEdgeZonesAsync(SubscriptionResource, SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions, CancellationToken)

Gets a list of all virtual machine image versions for the specified location, edge zone, publisher, offer, and SKU.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions
  • Operation Id: VirtualMachineImagesEdgeZone_List
  • Default Api Version: 2024-03-01
GetVirtualMachineImagesEdgeZonesAsync(SubscriptionResource, AzureLocation, String, String, String, String, String, Nullable<Int32>, String, CancellationToken)

Gets a list of all virtual machine image versions for the specified location, edge zone, publisher, offer, and SKU.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions
  • Operation Id: VirtualMachineImagesEdgeZone_List

GetVirtualMachineImagesEdgeZonesAsync(SubscriptionResource, SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions, CancellationToken)

Source:
ComputeExtensions.cs
Source:
ComputeExtensions.cs

Gets a list of all virtual machine image versions for the specified location, edge zone, publisher, offer, and SKU.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions
  • Operation Id: VirtualMachineImagesEdgeZone_List
  • Default Api Version: 2024-03-01
public static Azure.AsyncPageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase> GetVirtualMachineImagesEdgeZonesAsync (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, Azure.ResourceManager.Compute.Models.SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions options, System.Threading.CancellationToken cancellationToken = default);
static member GetVirtualMachineImagesEdgeZonesAsync : Azure.ResourceManager.Resources.SubscriptionResource * Azure.ResourceManager.Compute.Models.SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase>
<Extension()>
Public Function GetVirtualMachineImagesEdgeZonesAsync (subscriptionResource As SubscriptionResource, options As SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of VirtualMachineImageBase)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

options
SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions

A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of VirtualMachineImageBase that may take multiple service requests to iterate over.

Exceptions

subscriptionResource or options is null.

Applies to

GetVirtualMachineImagesEdgeZonesAsync(SubscriptionResource, AzureLocation, String, String, String, String, String, Nullable<Int32>, String, CancellationToken)

Source:
ComputeExtensions.cs
Source:
ComputeExtensions.cs

Gets a list of all virtual machine image versions for the specified location, edge zone, publisher, offer, and SKU.

  • Request Path: /subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/edgeZones/{edgeZone}/publishers/{publisherName}/artifacttypes/vmimage/offers/{offer}/skus/{skus}/versions
  • Operation Id: VirtualMachineImagesEdgeZone_List
public static Azure.AsyncPageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase> GetVirtualMachineImagesEdgeZonesAsync (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, Azure.Core.AzureLocation location, string edgeZone, string publisherName, string offer, string skus, string expand = default, int? top = default, string orderby = default, System.Threading.CancellationToken cancellationToken = default);
static member GetVirtualMachineImagesEdgeZonesAsync : Azure.ResourceManager.Resources.SubscriptionResource * Azure.Core.AzureLocation * string * string * string * string * string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.AsyncPageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase>
<Extension()>
Public Function GetVirtualMachineImagesEdgeZonesAsync (subscriptionResource As SubscriptionResource, location As AzureLocation, edgeZone As String, publisherName As String, offer As String, skus As String, Optional expand As String = Nothing, Optional top As Nullable(Of Integer) = Nothing, Optional orderby As String = Nothing, Optional cancellationToken As CancellationToken = Nothing) As AsyncPageable(Of VirtualMachineImageBase)

Parameters

subscriptionResource
SubscriptionResource

The SubscriptionResource instance the method will execute against.

location
AzureLocation

The name of a supported Azure region.

edgeZone
String

The name of the edge zone.

publisherName
String

A valid image publisher.

offer
String

A valid image publisher offer.

skus
String

A valid image SKU.

expand
String

The expand expression to apply on the operation.

top
Nullable<Int32>

An integer value specifying the number of images to return that matches supplied values.

orderby
String

Specifies the order of the results returned. Formatted as an OData query.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

An async collection of VirtualMachineImageBase that may take multiple service requests to iterate over.

Exceptions

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

edgeZone, publisherName, offer or skus is null.

Applies to