srmdocs's Posts

you need to install the vCloud Director product to use the vCloud API
no plug-in is required
Not sure what plug-in you are referring to, but the procedure in Update the NetworkConnectionSection of a Virtual Machine does not require any plug-ins to be installed
Thanks for posting this. It works for me as well. The example in the documentation also works for me, though it doesn't do exactly the same thing as the sample you posted here. We'll take a close... See more...
Thanks for posting this. It works for me as well. The example in the documentation also works for me, though it doesn't do exactly the same thing as the sample you posted here. We'll take a closer look at how our example could be improved, sine we really want to documentation to be trustworthy (and correct).
I think you need the <ovf:Info> element, as shown here (from Create a vApp From a Template) <NetworkConfigSection> <ovf:Info>Configuration parameters for logical networks</ovf:Info>   <N... See more...
I think you need the <ovf:Info> element, as shown here (from Create a vApp From a Template) <NetworkConfigSection> <ovf:Info>Configuration parameters for logical networks</ovf:Info>   <NetworkConfig networkName="vAppNetwork">   <Configuration>   <ParentNetwork href="https://vcloud.example.com/api/network/54"/>   <FenceMode>bridged</FenceMode>   </Configuration>   </NetworkConfig>   </NetworkConfigSection>
The VimServerRef needs to look more like this. href="https://vcloud.example.com/api/admin/extension/vimServer/{id}" see Create a Provider VDC
Hi... I looked up vCloud REST API - InstantiationParamsType in the VMware docs and it does include a NetworkConnectionSection. Where were you seeing that this element is not part of Instantiation... See more...
Hi... I looked up vCloud REST API - InstantiationParamsType in the VMware docs and it does include a NetworkConnectionSection. Where were you seeing that this element is not part of InstantiationParams?
The VirtualSystemIdentifier is contained in the ovf:System element, as shown in this request fragment. -------------------------- POST https://vcloud.example.com/api/vApp/vm-4/action/reconfig... See more...
The VirtualSystemIdentifier is contained in the ovf:System element, as shown in this request fragment. -------------------------- POST https://vcloud.example.com/api/vApp/vm-4/action/reconfigureVm Content-Type: application/vnd.vmware.vcloud.vm+xml ... <?xml version="1.0" encoding="UTF-8"?> <Vm ...>    ...    <ovf:VirtualHardwareSection ...>       <ovf:Info>Virtual hardware requirements</ovf:Info>       <ovf:System>          <vssd:ElementName>Virtual Hardware Family</vssd:ElementName>          <vssd:InstanceID>0</vssd:InstanceID>          <vssd:VirtualSystemIdentifier>ABCDEFG</vssd:VirtualSystemIdentifier>          <vssd:VirtualSystemType>vmx-07</vssd:VirtualSystemType>       </ovf:System>          ...    </ovf:VirtualHardwareSection>       ... </Vm> ---------------------------
The vCloud API supports only XML in requests and responses.
If you're using v5.1 of the REST API, you can take advantage of the reconfigureVm action to change the name, Description, and other config details of a Vm. See Update Multiple Sections of a Virtu... See more...
If you're using v5.1 of the REST API, you can take advantage of the reconfigureVm action to change the name, Description, and other config details of a Vm. See Update Multiple Sections of a Virtual Machine
There's an example at Update the NetworkConnectionSection of a Virtual Machine that might help.
In addition to the downloadable vCloud API schema reference zipfile at https://www.vmware.com/support/vcd/doc/rest-api-doc-1.5-html.zip, we now have an unzipped "live" version at https://www.vmwa... See more...
In addition to the downloadable vCloud API schema reference zipfile at https://www.vmware.com/support/vcd/doc/rest-api-doc-1.5-html.zip, we now have an unzipped "live" version at https://www.vmware.com/support/vcd/doc/rest-api-doc-1.5-html/index.html. The contents are the same. Navigation help for the schema reference is available at http://pubs.vmware.com/vcloud-api-1-5/api_prog/GUID-1883BA0C-0277-48B2-BA9A-7E28C759669D.html.
vCloud API Migration Guide. This technical note summarizes changes made in the vCloud API between version 1.0 and version 1.5.
Summary of differences between vCloud API versions 1.0 and 1.5
If this is an AllocationPool vDC, then CPU Used and Overhead values are always shown as 0, since all VMs in the vDC get what amounts to an equal distribution of  CPU resources (the 6370 in your e... See more...
If this is an AllocationPool vDC, then CPU Used and Overhead values are always shown as 0, since all VMs in the vDC get what amounts to an equal distribution of  CPU resources (the 6370 in your example, which is what was allocated when the vDC was created).