Associating Principals and Resources
Function
This API is used to associate a list of specified principals or resources with a resource share. If a resource is associated, the principals that have the permission to access the resource share will gain the permission to access that resource in the resource share. If a principal is associated, the principal will have the permission to access the shared resources in the 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. |
| Parameter | Mandatory | Type | Description |
|---|---|---|---|
| principals | No | Array of strings | List of one or more principals associated with the resource share. |
| resource_urns | No | Array of strings | List of URNs of one or more resources associated with the resource share. |
Response Parameters
Status code: 200
| Parameter | Type | Description |
|---|---|---|
| resource_share_associations | Array of ResourceShareAssociation objects | Details about the principals or resources associated with a resource share. |
| Parameter | Type | Description |
|---|---|---|
| associated_entity | String | Associated entity. It can be the resource URN, account ID, URN of the root OU, or URN of another OU. |
| association_type | String | Entity type in the association. |
| created_at | String | Time when the association was created. |
| updated_at | String | Time when the association was last updated. |
| external | Boolean | Whether the principle is in the same organization as the resource owner. |
| resource_share_id | String | ID of the resource share. |
| resource_share_name | String | Name of the resource share. |
| status | String | Status of the association. |
| status_message | String | Description of the status to the association. |
Example Requests
Associating a list of specified principals or resources with a resource share
POST /v1/resource-shares/{resource_share_id}/associate
{
"principals" : [ "string" ],
"resource_urns" : [ "string" ]
} Example Responses
Status code: 200
Request succeeded.
{
"resource_share_associations" : [ {
"associated_entity" : "string",
"association_type" : "string",
"created_at" : "2022-08-22T11:50:25.639Z",
"updated_at" : "2022-08-22T11:50:25.639Z",
"external" : true,
"resource_share_id" : "string",
"resource_share_name" : "string",
"status" : "string",
"status_message" : "string"
} ]
} 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.