Skip to content

Overglazed/sdk-dotnet-ecloud

 
 

Repository files navigation

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)

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%