[PATCH] Document the Type values in MSD's schema

# HG changeset patch # User Dan Smith <danms@us.ibm.com> # Date 1206044037 25200 # Node ID 594c9195e59c8025ea18b3d6b5ca43b322db55e1 # Parent 205b3e4958957713fd45a211c6229f09af19e243 Document the Type values in MSD's schema Signed-off-by: Dan Smith <danms@us.ibm.com> diff -r 205b3e495895 -r 594c9195e59c schema/VSMigrationSettingData.mof --- a/schema/VSMigrationSettingData.mof Thu Mar 20 11:28:31 2008 -0700 +++ b/schema/VSMigrationSettingData.mof Thu Mar 20 13:13:57 2008 -0700 @@ -1,6 +1,20 @@ // Copyright IBM Corp. 2007 class CIM_VirtualSystemMigrationSettingData : CIM_SettingData { + [ Description( + "MigrationType describes a type of migration operation " + "to be performed.\n" + "A value of 2 - Virtual System is to be migrated in a 'live' " + "manner such that the running of the Virtual System is " + "minimally impacted during the move.\n" + "A value of 3 - Virtual System will be temporarily paused " + "prior to migration and then resume running after it is " + "moved.\n" + "A value of 4 - The Virtual System will be quiesced to a " + "stopped state prior to migration and then restarted after " + "it is moved."), + ValueMap {"0","1","2","3","4"}, + Values { "Unknown", "Other", "Live", "Resume", "Restart" }] uint16 MigrationType; uint16 Priority;
participants (1)
-
Dan Smith