Package version:

Store the fabric details specific to the VMware fabric.

interface VMwareDetails {
    agentCount?: string;
    agentExpiryDate?: any;
    agentVersion?: string;
    agentVersionDetails?: VersionDetails;
    availableMemoryInBytes?: number;
    availableSpaceInBytes?: number;
    cpuLoad?: string;
    cpuLoadStatus?: string;
    csServiceStatus?: string;
    databaseServerLoad?: string;
    databaseServerLoadStatus?: string;
    hostName?: string;
    instanceType: "VMware";
    ipAddress?: string;
    lastHeartbeat?: any;
    masterTargetServers?: MasterTargetServer[];
    memoryUsageStatus?: string;
    processServerCount?: string;
    processServers?: ProcessServer[];
    protectedServers?: string;
    psTemplateVersion?: string;
    replicationPairCount?: string;
    runAsAccounts?: RunAsAccount[];
    spaceUsageStatus?: string;
    sslCertExpiryDate?: any;
    sslCertExpiryRemainingDays?: number;
    switchProviderBlockingErrorDetails?: InMageFabricSwitchProviderBlockingErrorDetails[];
    systemLoad?: string;
    systemLoadStatus?: string;
    totalMemoryInBytes?: number;
    totalSpaceInBytes?: number;
    versionStatus?: string;
    webLoad?: string;
    webLoadStatus?: string;
}

Hierarchy (view full)

Properties

agentCount?: string

The number of source and target servers configured to talk to this CS.

agentExpiryDate?: any

Agent expiry date.

agentVersion?: string

The agent Version.

agentVersionDetails?: VersionDetails

The agent version details.

availableMemoryInBytes?: number

The available memory.

availableSpaceInBytes?: number

The available space.

cpuLoad?: string

The percentage of the CPU load.

cpuLoadStatus?: string

The CPU load status.

csServiceStatus?: string

The CS service status.

databaseServerLoad?: string

The database server load.

databaseServerLoadStatus?: string

The database server load status.

hostName?: string

The host name.

instanceType

Polymorphic discriminator, which specifies the different types this object can be

ipAddress?: string

The IP address.

lastHeartbeat?: any

The last heartbeat received from CS server.

masterTargetServers?: MasterTargetServer[]

The list of Master Target servers associated with the fabric.

memoryUsageStatus?: string

The memory usage status.

processServerCount?: string

The number of process servers.

processServers?: ProcessServer[]

The list of Process Servers associated with the fabric.

protectedServers?: string

The number of protected servers.

psTemplateVersion?: string

PS template version.

replicationPairCount?: string

The number of replication pairs configured in this CS.

runAsAccounts?: RunAsAccount[]

The list of run as accounts created on the server.

spaceUsageStatus?: string

The space usage status.

sslCertExpiryDate?: any

CS SSL cert expiry date.

sslCertExpiryRemainingDays?: number

CS SSL cert expiry date.

switchProviderBlockingErrorDetails?: InMageFabricSwitchProviderBlockingErrorDetails[]

The switch provider blocking error information.

systemLoad?: string

The percentage of the system load.

systemLoadStatus?: string

The system load status.

totalMemoryInBytes?: number

The total memory.

totalSpaceInBytes?: number

The total space.

versionStatus?: string

Version status.

webLoad?: string

The web load.

webLoadStatus?: string

The web load status.