Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Overview
Azure Edge Hardware Center is an Azure service that lets you order a variety of first party Azure hardware and discover third party hardware offered by our partners. Edge Hardware Center lets you see and track all your order related information at one place.
Management APIs
Create and manage Azure Edge Hardware Center orders.
Install the NuGet package directly from the Visual Studio Package Manager console or with the .NET CLI.
Visual Studio Package Manager
Install-Package Azure.ResourceManager.EdgeOrder -IncludePrerelease
.NET CLI
dotnet add package Azure.ResourceManager.EdgeOrder --prerelease
Code example
The following example gets an order item.
var armClient = new ArmClient(new DefaultAzureCredential());
Subscription subscription = armClient.GetDefaultSubscription();
ResourceGroup resourceGroup = subscription.GetResourceGroups().Get(resourceGroupName);
OrderItemResourceCollection orderItemResourceCollection = resourceGroup.GetOrderItemResources();
OrderItemResource orderItemResource = orderItemResourceCollection.Get(orderItemName);
Azure SDK for .NET