An administrator can update an existing virtual datacenter to change its name or description.
Prerequisites
-
This operation requires the rights included in the predefined Organization Administrator role or an equivalent set of rights. Verify that you are logged in to the vCloud Air Compute Service as an Account Administrator.
- Retrieve the VDC whose name or description you want to change. If you don't know the URL of the VDC, you can use a query like this one to retrieve a list of references all VDCs in your organization.
GET https://vcloud.example.com/api/query?type=adminOrgVdc&format=references
Procedure
Example: Change the Name and Description of an Existing VDC
This example changes the name and description of the VDC created in Create a VDC From a Template.
Request:
PUT https://vcloud.example.com/api/vdc/130 Content-Type: application/vnd.vmware.vcloud.vdc+xml ... <?xml version="1.0" encoding="UTF-8"?> <Vdc xmlns="http://www.vmware.com/vcloud/v1.5" name="NewVdcName" type="application/vnd.vmware.vcloud.vdc+xml"> <Description>New VDC description</Description> </Vdc>
The response is a
Task.
202 Accepted Content-Type: application/vnd.vmware.vcloud.task+xml <Task name="task" status="running" operation="Updating Virtual Datacenter templateVdc (130)" ... ... </Task>