https://github.com/panoramicdata/dell.cloudiq.api
API client for the Dell CloudIQ REST API
https://github.com/panoramicdata/dell.cloudiq.api
Last synced: 4 months ago
JSON representation
API client for the Dell CloudIQ REST API
- Host: GitHub
- URL: https://github.com/panoramicdata/dell.cloudiq.api
- Owner: panoramicdata
- License: mit
- Created: 2023-04-27T10:16:32.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-08T15:24:38.000Z (over 1 year ago)
- Last Synced: 2025-03-26T21:37:44.833Z (about 1 year ago)
- Language: C#
- Size: 283 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# Dell.CloudIq.Api
[](https://www.nuget.org/packages/Dell.CloudIq.Api/)
[](https://www.nuget.org/packages/Dell.CloudIq.Api/)
[](https://opensource.org/licenses/MIT)
[](https://app.codacy.com?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
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):
``` C#
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:
- [CloudIQ API Documentation v1](https://developer.dell.com/apis/d1d6171c-cf6b-49c8-a3de-7994b6069d1a/versions/v1/docs/01-Introduction.md)