Cisco.DnaCenter.Api
1.0.0
Cisco DNA Center nuget パッケージを使用するには、次の手順を実行します。
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、ユーザー名、パスワードを確認してください。