Granting Permissions to Users or Groups
se the post /v1/cckm/sap/ekm/keystores/{id}/update-acls
API to grant permissions to users or groups to perform specific actions on the SAP keystore.
For the first time users or groups, actions are permitted as configured by the CCKM administrator. However, if the permissions of a user or group needs to be modified later, for example, a new action is to be permitted or an existing action is to be revoked, the CCKM administrator needs to set that particular action to true
or false
.
For example, a user or group is permitted actions, hyokkeycreate
, hyokkeyupdate
, and hyokkeydelete
. Now, to permit one more action hyokkeyblockunblock
to the user or group, set "permit":true
and "actions": "hyokkeyblockunblock"
, and run the API. Similarly, now to deny permission to the action hyokkeycreate
, set "permit":false
, "actions": "hyokkeycreate"
, and run the API.
Syntax
Here, {id}
represents the keystore ID.
Request Parameters
Parameter | Type | Description |
---|---|---|
AUTHTOKEN | string | Authorization token. |
actions | array of strings | Permitted actions on the SAP keys. The actions can be: • hyokkeycreate • viewhyokkey • hyokkeyupdate • hyokkeydelete • hyokkeyblockunblock • hyokkeyrotate • hyokkeyarchiverecover Refer to APIs and Action Mapping for the supported actions and details. |
group | string | Name of the user group to be granted permissions. User ID and group are mutually exclusive – specify either. |
permit | boolean | Whether to permit users to perform specific operations. Set true to permit, false to deny. |
user_id | string | ID of the user to be granted permissions. User ID and group are mutually exclusive – specify either. |
APIs and Action Mapping
The following table lists the mapping of APIs and actions required to call these APIs.
APIs | Actions Required | Description |
---|---|---|
List | viewhyokkey | Permission to view groups and their keys. |
Create | hyokkeycreate | Permission to create external keys in SAP KeyStores. |
Update | hyokkeyupdate | Permission to updates the SAP External key attributes. |
Delete | hyokkeydelete | Permission to deletes an SAP External key and its versions. |
Block | hyokkeyblockunblock | Permission to blocks all the proxy operations on the SAP external key. |
Unblock | hyokkeyblockunblock | Permission to unblocks all the proxy operations on the SAP external key. |
Enable/Disable | hyokkeyupdate | Permission to enable/disable the SAP External key. |
Enable/Disable Auto Rotation | hyokkeyupdate | Permission to enable/disable the SAP External key rotation |
Add Version | hyokkeyrotate | Permission to add versions on SAP External key. |
Archive | hyokkeyarchiverecover | Permission to archive the SAP External key. |
Recover | hyokkeyarchiverecover | Permission to recover the SAP External key. |
Example Request
Example Response
Response Codes
Response Code | Description |
---|---|
2xx | Success |
4xx | Client errors |
5xx | Server errors |
Refer to HTTP status codes for details.