OBJECT

HyperVLiveMount

Description

HyperV live mount.

link GraphQL Schema definition

  • type HyperVLiveMount {
  • # Describes if the live mount is ready.
  • isVmReady: Boolean!
  • # Name of the live mount.
  • name: String!
  • # Name of the source virtual machine.
  • sourceVm: String!
  • # Specification of the live mount in JSON string.
  • mountSpec: String!
  • # Host name of the server where Hyper-V virtual machine is live mounted.
  • serverName: String!
  • # Time when the snapshot was mounted.
  • mountTime: DateTime
  • # Describes if the mount is a disk mount.
  • isDiskLevelMount: Boolean!
  • # Name of the target virtual machine for disk mount.
  • targetVm: String
  • # Number of disks attached to the target virtual machine.
  • attachedDiskCount: Int!
  • # Power Status of HyperV Live Mount.
  • mountedVmStatus: HypervMountedVmStatusType!
  • # Fid of the live mount.
  • id: UUID!
  • # ID of the source virtual machine..
  • sourceVmFid: UUID!
  • # ID of the mounted virtual machine..
  • mountedVmFid: UUID!
  • # ID of the HyperV server.
  • serverFid: UUID!
  • # Source snapshot of the live mount.
  • sourceSnapshot: CdmSnapshot
  • # Cluster of the live mount.
  • cluster: Cluster!
  • # ID of the target virtual machine for disk mount.
  • targetVmFid: UUID
  • }