|
From: <jc...@us...> - 2008-04-23 20:27:57
|
Revision: 583
http://omc.svn.sourceforge.net/omc/?rev=583&view=rev
Author: jcarey
Date: 2008-04-23 13:26:34 -0700 (Wed, 23 Apr 2008)
Log Message:
-----------
Clean up
Modified Paths:
--------------
contrib/xen-vm-builder/trunk/mof/XEN_VMBuilderService.mof
Modified: contrib/xen-vm-builder/trunk/mof/XEN_VMBuilderService.mof
===================================================================
--- contrib/xen-vm-builder/trunk/mof/XEN_VMBuilderService.mof 2008-04-23 17:45:50 UTC (rev 582)
+++ contrib/xen-vm-builder/trunk/mof/XEN_VMBuilderService.mof 2008-04-23 20:26:34 UTC (rev 583)
@@ -84,10 +84,10 @@
[Description("Cancel a vm installation job that was previously initiated.")]
- boolean CancelIncubationJob(
- [IN, Description("The jobID of the XEN_VMIncubationJob to cancel. "
+ boolean CancelBuildJob(
+ [IN, Description("The jobID of the XEN_VMBuilderJob to cancel. "
"Cancel will remove all remnants of the incubation job, leaving "
- "only an entry in the XEN_VMIncubationJobRecordLog.")]
+ "only an entry in the XEN_VMBuilderJobRecordLog.")]
string JobID,
[IN, Description("This flag applies to distributed incubation "
"environments. It indicates whether this request should be forced "
@@ -99,9 +99,9 @@
[Description("Delete a vm installation job that was previously initiated. "
"Delete will remove all remnants of the incubation job, leaving "
- "only an entry in the XEN_VMIncubationJobRecordLog.")]
- boolean DeleteIncubationJob(
- [IN, Description("The jobID of the XEN_VMIncubationJob to delete. ")]
+ "only an entry in the XEN_VMBuilderJobRecordLog.")]
+ boolean DeleteBuildJob(
+ [IN, Description("The jobID of the XEN_VMBuilderJob to delete. ")]
string JobID,
[IN, Description("This flag applies to distributed incubation "
"environments. It indicates whether this request should be forced "
@@ -114,16 +114,16 @@
[Description("Cancel a vm installation job that was previously initiated. "
"Detach will remove knowledge of the incubation job / incubated vm, "
"but it will leave the incubated vm on the system. It will also leave "
- "an entry in XEN_VMIncubationJobRecordLog.")]
- boolean DetachIncubationJob(
- [IN, Description("The jobID of the XEN_VMIncubationJob to detach. ")]
+ "an entry in XEN_VMBuilderJobRecordLog.")]
+ boolean DetachBuildJob(
+ [IN, Description("The jobID of the XEN_VMBuilderJob to detach. ")]
string JobID);
[Description("Retrieve the location (host:path) of the installation log "
"of the specified jobID.")]
string GetJobLogLocation(
- [IN, Description("The jobID of the XEN_VMIncubationJob.")]
+ [IN, Description("The jobID of the XEN_VMBuilderJob.")]
string JobID);
[Description("VM builder service version")]
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|