OBJECT

FailoverGroupHost

Description

Information about a host in a failover group.

link GraphQL Schema definition

  • type FailoverGroupHost {
  • # Active cluster UUID where this host is currently active.
  • activeClusterUuid: UUID!
  • # List of counterpart host IDs on other clusters.
  • counterpartIds: [UUID!]!
  • # Host ID.
  • hostId: UUID!
  • # Name of the host.
  • hostName: String!
  • # Status of the host.
  • hostStatus: FailoverGroupStatus!
  • # Type of the host.
  • hostType: HostRegisterOsType!
  • # Number of workloads under this host.
  • numberOfObjects: Int!
  • }