Retrieves the DLF roles assigned to a specific user.
Try it now
Test
RAM authorization
Action | Access level | Resource type | Condition key | Dependent action |
dlf:ListUserRoles | get | *All Resource
| None | None |
Request syntax
GET /api/metastore/auth/roles/userroles HTTP/1.1Request parameters
Parameter | Type | Required | Description | Example |
PrincipalArn | string | No | Uniquely identifies a RAM user or RAM role. The format is:
| acs:ram::1111:user/testuser |
PageSize | integer | No | The number of entries per page. The maximum value is 1000. | -1/100 |
RoleNamePattern | string | No | A regular expression that matches the role name. Fuzzy search is supported. | .*test.* |
NextPageToken | string | No | The token to retrieve the next page of results. If the response does not return this token, pass an empty string (""). | token! |
Response elements
Element | Type | Description | Example |
object | The response body. | ||
RequestId | string | The request ID. | B7F4B621-E41E-4C84-B97F-42B5380A32BB |
Code | string | The status code. | OK |
Message | string | The returned message. | . |
Success | boolean | Indicates whether the call was successful. Valid values:
| true |
UserRoles | The user roles. | 参考UserRoles结构 | |
NextPageToken | string | The token to retrieve the next page of results. | 2cb472ec1bf84f8d92f9c4baa0d21c19aa |
Examples
Success response
JSON format
{
"RequestId": "B7F4B621-E41E-4C84-B97F-42B5380A32BB",
"Code": "OK",
"Message": ".",
"Success": true,
"UserRoles": [
{
"Role": {
"Name": "role_name",
"Description": "role description",
"Users": [
{
"PrincipalArn": "acs:ram::[AliyunAccountId]:user/username_abc"
}
],
"DisplayName": "显示名称,允许中文",
"PrincipalArn": "acs:dlf::111:role/role_name",
"CreateTime": 1647323053,
"UpdateTime": 1647323053,
"IsPredefined": 1
},
"GrantTime": 0,
"User": {
"PrincipalArn": "acs:ram::[AliyunAccountId]:user/username_abc"
}
}
],
"NextPageToken": "2cb472ec1bf84f8d92f9c4baa0d21c19aa"
}Error codes
See Error Codes for a complete list.
Release notes
See Release Notes for a complete list.