Merge Commit
This commit is contained in:
commit
97d852e284
77 changed files with 3137 additions and 535 deletions
|
@ -9,7 +9,8 @@ namespace WebsitePanel.Providers.DomainLookup
|
|||
public class DnsRecordInfoChange
|
||||
{
|
||||
public string DnsServer { get; set; }
|
||||
public DnsRecordInfo Record { get; set; }
|
||||
public DnsRecordInfo OldRecord { get; set; }
|
||||
public DnsRecordInfo NewRecord { get; set; }
|
||||
public DomainDnsRecordStatuses Status { get; set; }
|
||||
public DnsRecordType Type { get; set; }
|
||||
}
|
||||
|
|
|
@ -8,6 +8,7 @@ namespace WebsitePanel.Providers.DomainLookup
|
|||
public class DomainDnsChanges
|
||||
{
|
||||
public string DomainName { get; set; }
|
||||
public int PackageId { get; set; }
|
||||
|
||||
public List<DnsRecordInfoChange> DnsChanges { get; set; }
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ namespace WebsitePanel.Providers.DomainLookup
|
|||
{
|
||||
NotChanged,
|
||||
Removed,
|
||||
Added
|
||||
Added,
|
||||
Updated
|
||||
}
|
||||
}
|
||||
|
|
|
@ -40,6 +40,7 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
|
|||
public interface IRemoteDesktopServices
|
||||
{
|
||||
bool CreateCollection(string organizationId, RdsCollection collection);
|
||||
bool AddRdsServersToDeployment(RdsServer[] servers);
|
||||
RdsCollection GetCollection(string collectionName);
|
||||
bool RemoveCollection(string organizationId, string collectionName);
|
||||
bool SetUsersInCollection(string organizationId, string collectionName, List<string> users);
|
||||
|
@ -60,5 +61,7 @@ namespace WebsitePanel.Providers.RemoteDesktopServices
|
|||
bool CheckSessionHostFeatureInstallation(string hostName);
|
||||
|
||||
bool CheckServerAvailability(string hostName);
|
||||
string[] GetApplicationUsers(string collectionName, string applicationName);
|
||||
bool SetApplicationUsers(string collectionName, RemoteApplication remoteApp, string[] users);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue