Authorization Manager Retrieve Role Permissions

Authorization Manager Retrieve Role Permissions

Finds all the permissions that use a particular role.

The result is restricted to managed entities that are visible to the user making the call.

Required privileges: System.View

Request
URI
POST
https://{vcenter-host}/sdk/vim25/{release}/AuthorizationManager/{moId}/RetrieveRolePermissions
COPY
Path Parameters
string
moId
Required

The unique identifier for the managed object to which the method attaches; the serialized managed object reference for a request has the form moType/moId, in this case AuthorizationManager/{moId}.

string
release
Required

The vSphere release schema. The current specification covers vSphere 8.0.2.0 APIs.


Request Body
RetrieveRolePermissionsRequestType of type(s) application/json
Required
{
    "roleId": 0
}
integer As int32 As int32
roleId
Required

roleId

Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns Array of Permission of type(s) application/json
[
    {
        "_typeName": "string",
        "entity": {
            "type": "string",
            "value": "string"
        },
        "principal": "string",
        "group": false,
        "roleId": 0,
        "propagate": false
    }
]

500

NotFound: if the role does not exist.

Returns NotFound of type(s) application/json
This response body class contains all of the following: VimFault
{
    "_typeName": "string",
    "faultCause": "MethodFault Object",
    "faultMessage": [
        {
            "_typeName": "string",
            "key": "string",
            "arg": [
                {
                    "_typeName": "string",
                    "key": "string",
                    "value": {
                        "_typeName": "string"
                    }
                }
            ],
            "message": "string"
        }
    ]
}