Prepare Data History Provider 2.7 integration update
- modularize Citrix and agent integrations and add remote desktop endpoints - extend ticket overview, ticket links, token validation, and staged relation handling - update configuration, licensing, project, signing, and publish artifacts
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
using C4IT.Configuration;
|
||||
using C4IT.FASD.Base;
|
||||
using C4IT.FASD.Base;
|
||||
using C4IT.Logging;
|
||||
using C4IT.Security;
|
||||
using C4IT.XML;
|
||||
using C4IT_DataHistoryProvider;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Reflection;
|
||||
using System.Xml;
|
||||
|
||||
using C4IT.DataHistoryProvider.Base.Modules.Citrix;
|
||||
|
||||
using static C4IT.Logging.cLogManager;
|
||||
using static C4IT_DataHistoryProvider.cDataHistoryConfigCitrix;
|
||||
|
||||
namespace C4IT.DataHistoryProvider
|
||||
{
|
||||
@@ -32,13 +32,14 @@ namespace C4IT.DataHistoryProvider
|
||||
public cDataHistoryConfigClientAgent ClientAgent { get; private set; } = null;
|
||||
|
||||
public cDataHistoryConfigM42Wpm M42Wpm { get; private set; } = null;
|
||||
|
||||
public cDataHistoryConfigCitrix Citrix { get; private set; } = null;
|
||||
public Dictionary<string, cDataHistoryCitrixTenant> CitrixTenants { get; private set; } = null;
|
||||
|
||||
public cDataHistoryConfigNexthink Nexthink { get; private set; } = null;
|
||||
|
||||
public cDataHistoryConfigActiveDirectory ActiveDirectory { get; private set; } = null;
|
||||
|
||||
public Dictionary<string, cDataHistoryAzureTenant> AzureTenants { get; private set; } = null;
|
||||
public Dictionary<string, cDataHistoryAzureTenant> AzureTenants { get; private set; } = null; //ToDo: create a class for the azure configuration instead of only the tenants
|
||||
|
||||
public cF4SDAuthorisation Authorisation { get; private set; } = null;
|
||||
|
||||
@@ -81,7 +82,6 @@ namespace C4IT.DataHistoryProvider
|
||||
ActiveDirectory = _ad;
|
||||
|
||||
AzureTenants = cDataHistoryAzureTenant.LoadFromXml(XRoot, Credentials, Parser);
|
||||
CitrixTenants = cDataHistoryCitrixTenant.LoadFromXml(XRoot, Credentials, Parser);
|
||||
|
||||
// get the client agent config
|
||||
var _cla = new cDataHistoryConfigClientAgent(XRoot, Credentials, Conns, Parser);
|
||||
|
||||
Reference in New Issue
Block a user