API client for the Dell Cloud IQ REST API
To use the package, follow the instructions below:
-
Open your project in Visual Studio
-
Right-click on the project and click "Manage Nuget packages"
-
Find the package "Dell.CloudIq.Api" - install the latest version
using Dell.CloudIq.Api;
using System;
using System.Threading.Tasks;
namespace My.Project
{
public static class Program
{
public static async Task Main()
{
using var cloudIqClient = new CloudIqClient(new CloudIqClientOptions
{
ClientId = "xxx"
ClientSecret = "xxx"
BaseUri = "xxx"
});
var systems = await cloudIqClient
.System
.GetSystemsAsync()
.ConfigureAwait(false);
}
}
}
Remember to substitute your own ClientId, ClientSecret and BaseUri.
The CloudIQ API documentation can be found here: