wsp-10323 Convert the VSP provider into one utilizing PowerShell. Step 1.
This commit is contained in:
parent
eb50917965
commit
3fd05f6851
17 changed files with 3621 additions and 10 deletions
|
@ -34,8 +34,9 @@ namespace WebsitePanel.Providers.Virtualization
|
|||
{
|
||||
public enum VirtualMachineState
|
||||
{
|
||||
/*
|
||||
Unknown = 0,
|
||||
Started = 2, // start
|
||||
Running = 2, // start
|
||||
Off = 3, // turn off
|
||||
Reset = 10, // reset
|
||||
Paused = 32768, // pause
|
||||
|
@ -47,5 +48,33 @@ namespace WebsitePanel.Providers.Virtualization
|
|||
Stopping = 32774,
|
||||
Deleted = 32775,
|
||||
Pausing = 32776
|
||||
*/
|
||||
|
||||
Unknown = 0,
|
||||
Other = 1,
|
||||
Running = 2,
|
||||
Off = 3,
|
||||
Stopping = 4,
|
||||
Saved = 6,
|
||||
Paused = 9,
|
||||
Starting = 10,
|
||||
Reset = 11,
|
||||
Saving = 32773,
|
||||
Pausing = 32776,
|
||||
Resuming = 32777,
|
||||
FastSaved = 32779,
|
||||
FastSaving = 32780,
|
||||
RunningCritical = 32781,
|
||||
OffCritical = 32782,
|
||||
StoppingCritical = 32783,
|
||||
SavedCritical = 32784,
|
||||
PausedCritical = 32785,
|
||||
StartingCritical = 32786,
|
||||
ResetCritical = 32787,
|
||||
SavingCritical = 32788,
|
||||
PausingCritical = 32789,
|
||||
ResumingCritical = 32790,
|
||||
FastSavedCritical = 32791,
|
||||
FastSavingCritical = 32792
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue