Skip to content

panoramicdata/Dell.CloudIq.Api

Repository files navigation

Dell.CloudIq.Api

Nuget Nuget License: MIT Codacy Badge

API client for the Dell Cloud IQ REST API

To use the package, follow the instructions below:

Visual Studio

  1. Open your project in Visual Studio

  2. Right-click on the project and click "Manage Nuget packages"

  3. Find the package "Dell.CloudIq.Api" - install the latest version

Example code (C# 11.0):

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.

API Documentation

The CloudIQ API documentation can be found here:

About

API client for the Dell CloudIQ REST API

Resources

License

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages