Skyline.DataMiner.SDM.Registration.Common
2.0.5
Prefix Reserved
dotnet add package Skyline.DataMiner.SDM.Registration.Common --version 2.0.5
NuGet\Install-Package Skyline.DataMiner.SDM.Registration.Common -Version 2.0.5
<PackageReference Include="Skyline.DataMiner.SDM.Registration.Common" Version="2.0.5" />
<PackageVersion Include="Skyline.DataMiner.SDM.Registration.Common" Version="2.0.5" />
<PackageReference Include="Skyline.DataMiner.SDM.Registration.Common" />
paket add Skyline.DataMiner.SDM.Registration.Common --version 2.0.5
#r "nuget: Skyline.DataMiner.SDM.Registration.Common, 2.0.5"
#:package Skyline.DataMiner.SDM.Registration.Common@2.0.5
#addin nuget:?package=Skyline.DataMiner.SDM.Registration.Common&version=2.0.5
#tool nuget:?package=Skyline.DataMiner.SDM.Registration.Common&version=2.0.5
Skyline.DataMiner.SDM.Registration.Common
A comprehensive library for registering and managing DataMiner solutions and their data models across multiple environments. This package provides the core API for maintaining a central registry of your solution deployments, versions, and associated data types.
Features
- 🔍 Solution Registration - Register and track solution installations with version information
- 📊 Model Management - Register data models with API endpoints and visualization links
- ✅ Validation - Built-in validation middleware to ensure data integrity
- 🔄 Synchronization - Automatic synchronization between models and solutions
- 💾 DOM Integration - Seamless integration with DataMiner Object Model (DOM) storage
- 🎯 Type-Safe Queries - Strongly-typed repository pattern for efficient data access
Installation
Install via NuGet Package Manager:
Install-Package Skyline.DataMiner.SDM.Registration.Common
Or via .NET CLI:
dotnet add package Skyline.DataMiner.SDM.Registration.Common
Quick Start
Registering a Solution
using Skyline.DataMiner.SDM.Registration;
// Get the registrar from your connection
var registrar = new SdmRegistrar(connection);
// Create a solution registration
var solution = new SolutionRegistration
{
ID = "my_solution",
DisplayName = "My Solution",
Version = "1.0.0",
DefaultApiEndpoint = "/api/custom/my_solution",
DefaultApiScriptName = "MySolution.CRUD",
VisualizationEndpoint = "/app/e3210645-842d-49e5-bb4d-905e69a67cf3"
};
// Register the solution
registrar.Solutions.Create(solution);
Registering Models
// Create a model registration linked to your solution
var model = new ModelRegistration
{
Name = "customer",
DisplayName = "Customer",
Version = "1.0.0",
Solution = solution,
ApiEndpoint = "/api/custom/my_solution/customer",
ApiScriptName = "MySolution.Customer.CRUD",
VisualizationEndpoint = "/app/e3210645-842d-49e5-bb4d-905e69a67cf3/Customers"
};
// Register the model
registrar.Models.Create(model);
Querying Registrations
// Retrieve a solution by ID
var existingSolution = registrar.Solutions.GetSolutionById("my_solution");
// Query all models for a solution
var models = registrar.Models.Read(
ModelRegistrationExposers.Solution.Equal(solution.Identifier)
);
// Get all solutions
var allSolutions = registrar.Solutions.Read(new TRUEFilterElement<SolutionRegistration>());
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 exists. In addition, you can leverage DataMiner Development Packages to build your own connectors (also known as "protocols" or "drivers").
Note 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.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net48 is compatible. net481 was computed. |
-
.NETFramework 4.8
- Newtonsoft.Json (>= 13.0.3)
- Skyline.DataMiner.Dev.Common (>= 10.5.9.2)
- Skyline.DataMiner.SDM (>= 1.0.1)
NuGet packages (6)
Showing the top 5 NuGet packages that depend on Skyline.DataMiner.SDM.Registration.Common:
| Package | Downloads |
|---|---|
|
Skyline.DataMiner.Dev.Utils.Solutions.Categories
Provides an API and helper classes for the Categories DataMiner Standard Solution. |
|
|
Skyline.DataMiner.Dev.Utils.Solutions.MediaOps.Live
Provides an API and helper classes for MediaOps Live. |
|
|
Skyline.DataMiner.Dev.Utils.Solutions.MediaOps.Plan
Provides an internal API for MediaOps Plan. |
|
|
Skyline.DataMiner.SDM.Registration.Automation
Contains the helper classes and provider to register solutions and their models. |
|
|
Skyline.DataMiner.SDM.Registration.Protocol
Contains the helper classes and provider to register solutions and their models. |
GitHub repositories
This package is not used by any popular GitHub repositories.