Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 860 Bytes

README.md

File metadata and controls

29 lines (18 loc) · 860 Bytes

sdk-dotnet-ecloud

This is the official .NET SDK for UKFast eCloud

You should refer to the Getting Started section of the API documentation before proceeding below

Basic usage

To get started, we'll first instantiate an instance of IUKFastECloudClient:

IUKFastECloudClient client = new UKFastECloudClient(new ClientConnection("myapikey"));

Next, we'll obtain an instance of IVirtualMachineOperations to perform operations on virtual machines:

var vmOps = client.VirtualMachineOperations();

Finally, we'll retrieve all virtual machines using the instance of IVirtualMachineOperations:

IList<VirtualMachine> vms = await vmOps.GetVirtualMachinesAsync();

Operations

All operations available via the SDK are exposed via the client (IUKFastECloudClient)