Class BackupExecAgentServer
- Namespace
- CENTREL.XIA.Configuration.Types
- Assembly
- CENTREL.XIA.Configuration.Types.dll
Represents a Backup Exec agent server.
public class BackupExecAgentServer : GlobalSerializableClassicBase, IComparable<BackupExecAgentServer>
- Inheritance
-
BackupExecAgentServer
- Implements
- Derived
Constructors
BackupExecAgentServer()
Initializes a new instance of the CENTREL.XIA.Configuration.Types.BackupExecAgentServer class.
public BackupExecAgentServer()
Properties
Description
Gets or sets the description of the agent server.
public string Description { get; set; }
Property Value
Id
Gets or sets the unique identifier of the agent server in GUID format.
public string Id { get; set; }
Property Value
LogonAccountName
Gets or sets the name of the default logon account used to backup this server.
public string LogonAccountName { get; set; }
Property Value
Name
Gets or sets the name of the agent server - for example "DEMO-SRV01".
public string Name { get; set; }
Property Value
ScheduleCredentialTest
Gets or sets whether the server should have it's credentials tested.
public BooleanOption ScheduleCredentialTest { get; set; }
Property Value
ServerType
Gets or sets the type of agent server.
public BackupExecAgentServerType ServerType { get; set; }
Property Value
ServerTypeString
Gets the type of agent server as a human readable string.
public string ServerTypeString { get; set; }
Property Value
Methods
CompareTo(BackupExecAgentServer)
Compares two CENTREL.XIA.Configuration.Types.BackupExecAgentServer objects to allow sorting alphabetically by name.
public int CompareTo(BackupExecAgentServer other)
Parameters
other
BackupExecAgentServerThe CENTREL.XIA.Configuration.Types.BackupExecAgentServer to compare to.
Returns
- int
The sort order of the two items.
CreateFromAgentServerType(BackupExecAgentServerType)
Creates a new CENTREL.XIA.Configuration.Types.BackupExecAgentServer given the specified type enumeration value.
public static BackupExecAgentServer CreateFromAgentServerType(BackupExecAgentServerType serverType)
Parameters
serverType
BackupExecAgentServerTypeThe CENTREL.XIA.Configuration.Types.BackupExecAgentServerType of the device to create.
Returns
- BackupExecAgentServer
A new CENTREL.XIA.Configuration.Types.BackupExecAgentServer.