ComputeExtensions.GetVirtualMachineImagesEdgeZones Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
GetVirtualMachineImagesEdgeZones(SubscriptionResource, SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions, CancellationToken) |
Gets a list of all virtual machine image versions for the specified location, edge zone, publisher, offer, and SKU.
|
GetVirtualMachineImagesEdgeZones(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.
|
GetVirtualMachineImagesEdgeZones(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-07-01
public static Azure.Pageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase> GetVirtualMachineImagesEdgeZones (this Azure.ResourceManager.Resources.SubscriptionResource subscriptionResource, Azure.ResourceManager.Compute.Models.SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions options, System.Threading.CancellationToken cancellationToken = default);
static member GetVirtualMachineImagesEdgeZones : Azure.ResourceManager.Resources.SubscriptionResource * Azure.ResourceManager.Compute.Models.SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase>
<Extension()>
Public Function GetVirtualMachineImagesEdgeZones (subscriptionResource As SubscriptionResource, options As SubscriptionResourceGetVirtualMachineImagesEdgeZonesOptions, Optional cancellationToken As CancellationToken = Nothing) As Pageable(Of VirtualMachineImageBase)
Parameters
- subscriptionResource
- SubscriptionResource
The SubscriptionResource instance the method will execute against.
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
A collection of VirtualMachineImageBase that may take multiple service requests to iterate over.
Exceptions
subscriptionResource
or options
is null.
Applies to
GetVirtualMachineImagesEdgeZones(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.Pageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase> GetVirtualMachineImagesEdgeZones (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 GetVirtualMachineImagesEdgeZones : Azure.ResourceManager.Resources.SubscriptionResource * Azure.Core.AzureLocation * string * string * string * string * string * Nullable<int> * string * System.Threading.CancellationToken -> Azure.Pageable<Azure.ResourceManager.Compute.Models.VirtualMachineImageBase>
<Extension()>
Public Function GetVirtualMachineImagesEdgeZones (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 Pageable(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.
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
A 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
Azure SDK for .NET