Getting Associated RAM Managed Permissions
Function
This API is used to get the details of RAM managed permissions associated with a resource share.
Request Parameters
Parameter |
Mandatory |
Type |
Description |
---|---|---|---|
X-Security-Token |
No |
String |
Security token (session token) for temporary security credentials. This parameter is mandatory when you make an API call using temporary security credentials. |
Response Parameters
Status code: 200
Parameter |
Type |
Description |
---|---|---|
associated_permissions |
Array of AssociatedPermission objects |
List of RAM managed permissions associated with the resource share. |
page_info |
PageInfo object |
Pagination details. |
Parameter |
Type |
Description |
---|---|---|
permission_id |
String |
Permission ID. |
permission_name |
String |
Name of the RAM managed permission. |
resource_type |
String |
Resource type to which the permission applies. |
status |
String |
Status of the permission. |
created_at |
String |
Time when the permission was created. |
updated_at |
String |
Time when the permission was last updated. |
Example Requests
Getting the details of resource sharing permissions associated with a resource share
GET https://{endpoint}/v1/resource-shares/{resource_share_id}/associated-permissions
Example Responses
Status code: 200
Request succeeded.
{ "associated_permissions" : [ { "permission_id" : "string", "permission_name" : "string", "resource_type" : "string", "status" : "string", "created_at" : "2022-09-19T02:12:30.736Z", "updated_at" : "2022-09-19T02:12:30.736Z" } ], "page_info" : { "previous_marker" : "string", "next_marker" : "string", "current_count" : 2000 } }
Status Codes
Status Code |
Description |
---|---|
200 |
Request succeeded. |
Error Codes
See Error Codes.
Feedback
Was this page helpful?
Provide feedbackThank you very much for your feedback. We will continue working to improve the documentation.