Initial project's source code check-in.

This commit is contained in:
ptsurbeleu 2011-07-13 16:07:32 -07:00
commit b03b0b373f
4573 changed files with 981205 additions and 0 deletions

View file

@ -0,0 +1,45 @@
using System;
namespace WebsitePanel.Providers.Virtualization
{
public enum VMComputerSystemStateInfo : int
{
CheckpointFailed = 213,
CreatingCheckpoint = 210,
CreationFailed = 101,
CustomizationFailed = 105,
Deleting = 13,
DeletingCheckpoint = 211,
DiscardingDrives = 80,
DiscardSavedState = 10,
FinishingCheckpointOperation = 215,
HostNotResponding = 221,
IncompleteVMConfig = 223,
InitializingCheckpointOperation = 214,
MergingDrives = 12,
MigrationFailed = 201,
Missing = 220,
P2VCreationFailed = 240,
Paused = 6,
Pausing = 81,
PoweringOff = 2,
PowerOff = 1,
RecoveringCheckpoint = 212,
Restoring = 5,
Running = 0,
Saved = 3,
Saving = 4,
Starting = 11,
Stored = 102,
TemplateCreationFailed = 104,
UnderCreation = 100,
UnderMigration = 200,
UnderTemplateCreation = 103,
UnderUpdate = 106,
Unsupported = 222,
UnsupportedCluster = 225,
UnsupportedSharedFiles = 224,
UpdateFailed = 107,
V2VCreationFailed = 250
}
}