Skyline.DataMiner.ConnectorAPI.Aperi.Chassis
1.0.0.1
Prefix Reserved
See the version list below for details.
dotnet add package Skyline.DataMiner.ConnectorAPI.Aperi.Chassis --version 1.0.0.1
NuGet\Install-Package Skyline.DataMiner.ConnectorAPI.Aperi.Chassis -Version 1.0.0.1
<PackageReference Include="Skyline.DataMiner.ConnectorAPI.Aperi.Chassis" Version="1.0.0.1" />
paket add Skyline.DataMiner.ConnectorAPI.Aperi.Chassis --version 1.0.0.1
#r "nuget: Skyline.DataMiner.ConnectorAPI.Aperi.Chassis, 1.0.0.1"
// Install Skyline.DataMiner.ConnectorAPI.Aperi.Chassis as a Cake Addin #addin nuget:?package=Skyline.DataMiner.ConnectorAPI.Aperi.Chassis&version=1.0.0.1 // Install Skyline.DataMiner.ConnectorAPI.Aperi.Chassis as a Cake Tool #tool nuget:?package=Skyline.DataMiner.ConnectorAPI.Aperi.Chassis&version=1.0.0.1
Skyline.DataMiner.ConnectorAPI.Aperi.Chassis
About
About Skyline.DataMiner.ConnectorAPI.Aperi.Chassis
Skyline.DataMiner.ConnectorAPI.Aperi.Chassis is a package available in the public nuget store that contain assemblies to communicate with a Aperi Chassis switch in DataMiner.
This library will retrieve information from the DataMiner system to give information on the Aperi switch and provide functions to perform actions on the connector.
About DataMiner
DataMiner is a transformational platform that provides vendor-independent control and monitoring of devices and services. Out of the box and by design, it addresses key challenges such as security, complexity, multi-cloud, and much more. It has a pronounced open architecture and powerful capabilities enabling users to evolve easily and continuously.
The foundation of DataMiner is its powerful and versatile data acquisition and control layer. With DataMiner, there are no restrictions to what data users can access. Data sources may reside on premises, in the cloud, or in a hybrid setup.
A unique catalog of 7000+ connectors already exist. In addition, you can leverage DataMiner Development Packages to build you own connectors (also known as "protocols" or "drivers").
[!TIP] See also: About DataMiner
About Skyline Communications
At Skyline Communications, we deal in world-class solutions that are deployed by leading companies around the globe. Check out our proven track record and see how we make our customers' lives easier by empowering them to take their operations to the next level.
Requirements
The "DataMiner Integration Studio" Visual Studio extension is required for development of connectors and Automation scripts using NuGets.
See Installing DataMiner Integration Studio
[!IMPORTANT] NuGets are mandatory to be installed with PackageReferences. DIS was redesigned to work with PackageReferences and be future-proof.
For more information on how to migrate from packages.config to PackageReferences, see docs.microsoft.com.
Getting started in Automation
You will need to add the following NuGet packages to your automation project from the public nuget store:
- Skyline.DataMiner.ConnectorAPI.Aperi.Chassis
- Skyline.DataMiner.Core.DataMinerSystem.Automation
Example script could look as following:
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using Skyline.DataMiner.Automation;
using Skyline.DataMiner.Core.DataMinerSystem.Automation;
using Skyline.DataMiner.Core.DataMinerSystem.Common;
using Skyline.DataMiner.ConnectorAPI.Aperi.Chassis;
/// <summary>
/// DataMiner Script Class.
/// </summary>
public class Script
{
/// <summary>
/// The Script entry point.
/// </summary>
/// <param name="engine">Link with SLAutomation process.</param>
public void Run(Engine engine)
{
// Get the aperi chassis object for the Element with name 'mySwitch' from the DM system.
IDms thisDms = engine.GetDms();
IAperiChassis myAperi = thisDms.GetAperiChassis("mySwitch");
// Change settings on interface '1/0/13'
var myInterface = myAperi.Interfaces.First(i => i.Name == "1/0/13");
myInterface.Settings.AddVlan(200).SetAdminState(true).Push();
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net462 is compatible. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
.NETFramework 4.6.2
- Skyline.DataMiner.Utils.NetworkDevices (>= 1.0.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.