NetworkNetOpsInfo - LorenData/ECGrid-API GitHub Wiki
Back To Object Classes
public partial class NetworkNetOpsInfo {
public int BillingUserID {get;set;}
public string BillingContact {get;set;}
public string BillingEMail {get;set;}
public short BillingType {get;set;}
public string InvoiceContact {get;set;}
public string InvoiceEMail {get;set;}
public string SoftwareVersion {get;set;}
public DateTime Created {get;set;}
public DateTime Commissioned {get;set;}
public DateTime Decommissioned {get;set;}
public DateTime Modified {get;set;}
public string RunDir {get;set;}
public string InternalDirectory {get;set;}
public string ExternalDirectoryRoot {get;set;}
public string ExternalDirectoryIn {get;set;}
public string ExternalDirectoryOut {get;set;}
public short ArchiveDays {get;set;}
public string SupportURL {get;set;}
public short BlockSize {get;set;}
public short EnvPerMB {get;set;}
public short OutBoxTimeOut {get;set;}
public string MasterAccount {get;set;}
public int ProcessID {get;set;}
public string UserName {get;set;}
public string UserDomain {get;set;}
public string Server {get;set;}
public int AliasNetworkID {get;set;}
public int AliasMailboxID {get;set;}
public string InBoxPattern {get;set;}
public string OutBoxPattern {get;set;}
public bool X1256 {get;set;}
public short ArchiveDaysInternal {get;set;}
public short ArchiveDaysExternal {get;set;}
public short MaxBatch {get;set;}
public short dbOpenMaxCycles {get;set;}
public short dbOpenMaxSeconds {get;set;}
public NetworkGateway Gateway {get;set;}
public NetworkVPN VPN {get;set;}
public NetworkFTPInfo FTPServer {get;set;}
public NetworkFTPInfo FTPClient {get;set;}
}
Public Properties
- BillingUserID - Integer: The id assigned to a specific Billing User.
- BillingContact - String: The name of a contact person for billing.
- BillingEMail - String: The email address of a contact person for billing.
- BillingType - Short: The value assigned to a specific Billing Type for the entity.
- InvoiceContact - String: The name of a contact person for an Invoice.
- InvoiceEMail - String: The email address of a contact person for an Invoice.
- SoftwareVersion - String: The Software Version for this entry.
- Created - DateTime: The DateTime an entry was created in UTC.
- Commissioned - DateTime: The DateTime an entry was commissioned in UTC.
- Decommissioned - DateTime: The DateTime an entry was decommissioned in UTC.
- Modified - DateTime: The DateTime an entry was last modified in UTC.
- RunDir - String: The run directory for this entry.
- InternalDirectory - String: The internal directory for this entry.
- ExternalDirectoryRoot - String: The external root directory for this entry.
- ExternalDirectoryOut - String: The external outbound directory for this entry.
- ArchiveDays - Short: The number of archive days.
- SupportURL - String: Uniform Resource Locator: a specific web support page or file on the internet.
- BlockSize - Short: The value assigned to the Block Size for the entity.
- EnvPerMB - Short: The value assigned to the MB per Environment for the entity.
- OutBoxTimeOut - Short: The value assigned to the outbox timeout for the entity.
- MasterAccount - String: A Master Account for this entity.
- ProcessID - Integer: The value assigned to a specific Process entity.
- UserName - String: The username assigned to this entity.
- UserDomain - String: The user domain assigned to this entity.
- Server - String: The server assigned to this entity.
- AliasNetworkID - Integer: The alias NetworkID assigned on ECGrid.
- AliasMailboxID - Integer: The alias MailboxID assigned to a within a Network on ECGrid.
- InBoxPattern - String: The InBox Pattern assigned to this entity.
- OutBoxPattern - String: The OutBox Pattern assigned to this entity.
- X1256 - Boolean: If an entity uses X1256 or not.
- ArchiveDaysInternal - Short: The number of internal archive days.
- ArchiveDaysExternal - Short: The number of external archive days.
- MaxBatch - Short: The Maximum Batches for this entity.
- dbOpenMaxCycles - Short: The Database Maximum Open Cycles for this entity.
- dbOpenMaxSeconds - Short: The Database Maximum Open Seconds for this entity.
- Gateway - Object NetworkGateway: A Network Gateway Object to represent of this entity.
- VPN - Object NetworkVPN: The VPN object for this entity.
- FTPServer - Object NetworkFTPInfo: The NetworkFTPInfo Server object for this entity.
- FTPClient - Object NetworkFTPInfo: The NetworkFTPInfo Client object for this entity.
Back To Object Classes