Merge branch 'fix' of https://github.com/grkvlt/jclouds into vcloud-director-admin-refactor

* 'fix' of https://github.com/grkvlt/jclouds:
  Issue 830: Remove wrong exception parser
  Issue 830: Add some Javadoc for UndeployVAppParams
This commit is contained in:
Adrian Cole 2012-03-30 09:48:40 -07:00
commit 5b19e25582
1 changed files with 15 additions and 1 deletions

View File

@ -79,7 +79,21 @@ public class UndeployVAppParams {
protected String undeployPowerAction;
/**
* Gets the value of the undeployPowerAction property.
* The specified action is applied to all VMs in the vApp.
*
* All values other than {@code default} ignore actions, order, and delay specified in the StartupSection. One of:
* <ul>
* <li>{@code powerOff} (Power off the VMs. This is the default action if this attribute is missing or empty)
* <li>{@code suspend} (Suspend the VMs)
* <li>{@code shutdown} (Shut down the VMs)
* <li>{@code force} (Attempt to power off the VMs.
* </ul>
* Failures in undeploying the VM or associated networks are ignored. All references to the vApp and its VMs are
* removed from the database), default (Use the actions, order, and delay specified in the StartupSection).
*
* TODO add an enumeration for these values
*
* @since 1.5
*/
public String getUndeployPowerAction() {
return undeployPowerAction;