OBJECT

VolumeGroupLiveMount

Description

Volume group live mount.

link GraphQL Schema definition

  • type VolumeGroupLiveMount {
  • # Name of the live mount.
  • name: String!
  • # Id of the source volume group in the live mount.
  • sourceVolumeGroupId: String!
  • # Id of the target host.
  • targetHostId: String
  • # Name of the target host.
  • targetHostName: String
  • # Timestamp when the mount was created.
  • mountTimestamp: DateTime
  • # Id of the mount request.
  • mountRequestId: String
  • # Id of the unmount request.
  • unmountRequestId: String
  • # Name of SMB share.
  • smbShareName: String
  • # Path of the bare-metal restore script.
  • restoreScriptPath: String
  • # Describes if the live mount is ready.
  • isReady: Boolean!
  • # Mounted volumes in the live mount.
  • mountedVolumes: [MountedVolume!]!
  • # Path where the live mount is mounted.
  • mountPath: String
  • # IP of the node in the live mount.
  • nodeIp: String
  • # Composite Id of the node in the live mount.
  • nodeCompositeId: String
  • # Source host of the live mount.
  • sourceHost: PhysicalHost!
  • # Fid of the live mount.
  • id: String!
  • # Source snapshot of the live mount.
  • sourceSnapshot: CdmSnapshot!
  • # Cluster of the live mount.
  • cluster: Cluster!
  • # Operations that the user is authorized to perform.
  • authorizedOperations: AuthorizedOperations!
  • }