Create a Role in Your Organization
Role and right objects are local to an organization. An organization is initially granted a set of rights derived from the rights contained in the predefined roles, and includes a copy of each predefined role. A system administrator can grant additional rights to an organization. See Edit Organization Rights.
Prerequisites
This operation requires the rights included in the predefined Organization Administrator role or an equivalent set of rights.
Procedure
Results
Example: Create a Role
This example adds a role named
vAppWrangler
to the organization with id
21
. The new role is created in this organization, but
not in any other organizations in the system. You must be a system
administrator or an administrator of this organization to make this request.
The rights associated with this new role are less comprehensive than those
associated with the built-in
vApp
Author role, but still include rights to perform many common vApp
operations. This example uses
href
attributes that contain actual UUID values for specific rights, since these are
invariant across
VMware Cloud
Director
installations and releases.
POST https://vcloud.example.com/api/admin/org/21/roles Accept: application/*;version=29.0 Content-Type: application/vnd.vmware.admin.role+xml ... <?xml version="1.0" encoding="UTF-8"?> <Role name="vAppWrangler" xmlns="http://www.vmware.com/vcloud/v1.5"> <Description>Create and manage vApps</Description> <RightReferences> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Copy" href="https://vcloud.example.com/api/admin/org/21/right/4965b0e7-9ed8-371d-8b08-fc716d20bf4b" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Create / Reconfigure" href="https://vcloud.example.com/api/admin/org/21/right/2dc8abec-2e0d-3789-a5f9-ce0453160b53" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Delete" href="https://vcloud.example.com/api/admin/org/21/right/df05c07f-c537-3777-8d9b-a9cfe8d49014" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Edit Properties" href="https://vcloud.example.com/api/admin/org/21/right/c2a29357-1b2a-3f9d-9cd6-de3d525d49f3" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Edit VM CPU" href="https://vcloud.example.com/api/admin/org/21/right/729a3828-8b63-31b2-88db-f56612a06722" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Edit VM Hard Disk" href="https://vcloud.example.com/api/admin/org/21/right/cd02b5f8-c54a-334a-b782-5d31a1d77d85" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Edit VM Memory" href="https://vcloud.example.com/api/admin/org/21/right/c6c827dc-fc42-33a8-844f-8ab5a91f8a6c" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Edit VM Network" href="https://vcloud.example.com/api/admin/org/21/right/f24fffde-f953-3976-9f2b-8b355b25881d" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Edit VM Properties" href="https://vcloud.example.com/api/admin/org/21/right/5250ab79-8f50-33f9-8af5-015cb39c380b" /> <RightReference type="application/vnd.vmware.admin.right+xml" name="vApp: Power Operations" href="https://vcloud.example.com/api/admin/org/21/right/580860cd-55bc-322d-ac39-4f9d8e3e1cd2" /> </RightReferences> </Role>
The response is a Role element, most of which does not appear in this excerpt. The response includes links that an administrator can use to edit or remove the role.
201 Created Content-Type: application/vnd.vmware.admin.role+xml ... <Role name="vAppWrangler" ... href="https://vcloud.example.com/api/admin/org/21/role/102" ...> <Link rel="edit" type="application/vnd.vmware.admin.role+xml" href="https://vcloud.example.com/api/admin/org/21/role/102"/> <Link rel="remove" href="https://vcloud.example.com/api/admin/org/21/role/102"/> <Description>Create and manage vApps</Description> <RightReferences> ... </RightReferences> </Role>