Partial Commit Hyper-V 2012 R2 provider

This commit is contained in:
robvde 2014-09-08 15:01:05 +08:00
parent 70bd6c5172
commit 2b4460eac2
8 changed files with 288 additions and 68 deletions

View file

@ -40,5 +40,15 @@ namespace WebsitePanel.Providers.Virtualization
public long MaxInternalSize { get; set; }
public string ParentPath { get; set; }
public VirtualHardDiskType DiskType { get; set; }
public bool SupportPersistentReservations { get; set; }
public long MaximumIOPS { get; set; }
public long MinimumIOPS { get; set; }
public ControllerType VHDControllerType { get; set; }
public int ControllerNumber { get; set; }
public int ControllerLocation { get; set; }
public string Name { get; set; }
public string Path { get; set; }
public VirtualHardDiskFormat DiskFormat { get; set; }
public bool Attached { get; set; }
}
}