Cisco.DnaCenter.Api
1.0.0
Чтобы использовать пакет nuget Cisco DNA Center:
using Cisco . DnaCenter . Api ;
using System ;
using System . Collections . Generic ;
using System . Threading . Tasks ;
namespace My . Project
{
public static class Program
{
public static async Task Main ( )
{
var dnaCenterClient = new DnaCenterClient ( new DnaCenterClientOptions
{
Uri = new Uri ( " https://mydnac.example.com/ " ) ,
Username = " username " ,
Password = " password "
} ) ;
var sites = await dnaCenterClient
. Sites
. GetAllAsync ( )
. ConfigureAwait ( false ) ;
var firstSite = sites . Response [ 0 ] ;
var devicesResponse = await dnaCenterClient
. Devices
. GetAllAsync ( locationName : new List < string > { firstSite . SiteNameHierarchy } )
. ConfigureAwait ( false ) ;
Console . WriteLine ( " Devices: " ) ;
foreach ( var device in devicesResponse . Response )
{
Console . WriteLine ( $" - { device . SerialNumber } : { device . Hostname } " ) ;
}
}
}
}
Документацию DNA Center Intent API можно найти здесь:
Вы можете проверить это с помощью песочницы DNA Center здесь:
После входа в систему найдите в нижней левой части страницы свой URL-адрес, имя пользователя и пароль.