I'm creating a virtual application clone. The CloneVApp_Task method takes a VAppCloneSpecProvisioningType Enum as argument. This has the following description:
The cloned VMs can either be provisioned the same way as the VMs they are a clone of, thin provisioned or thick provisioned, or linked clones (i.e., using delta disks).
Problem is that is only has 3 valid values: sameAsSource, thin, thick
It lists 4 options, but only 3 values?
How do I go about using 'delta disks?
-randy