Name |
Type |
Description |
Notes |
analytics_access |
str |
Allow this role to view analytics. Currently only 'none', 'own', 'all' values are supported, allowing associated auth methods to view reports produced by the same auth methods. |
[optional] |
audit_access |
str |
Allow this role to view audit logs. Currently only 'none', 'own' and 'all' values are supported, allowing associated auth methods to view audit logs produced by the same auth methods. |
[optional] |
delete_protection |
str |
Protection from accidental deletion of this object [true/false] |
[optional] |
description |
str |
Description of the object |
[optional] [default to 'default_comment'] |
event_center_access |
str |
Allow this role to view Event Center. Currently only 'none', 'own' and 'all' values are supported |
[optional] |
event_forwarder_access |
str |
Allow this role to manage Event Forwarders. Currently only 'none' and 'all' values are supported. |
[optional] |
gw_analytics_access |
str |
Allow this role to view gw analytics. Currently only 'none', 'own', 'all' values are supported, allowing associated auth methods to view reports produced by the same auth methods. |
[optional] |
var_json |
bool |
Set output format to JSON |
[optional] [default to False] |
name |
str |
Role name |
|
new_comment |
str |
Deprecated - use description |
[optional] [default to 'default_comment'] |
new_name |
str |
New Role name |
[optional] |
sra_reports_access |
str |
Allow this role to view SRA Clusters. Currently only 'none', 'own', 'all' values are supported. |
[optional] |
token |
str |
Authentication token (see `/auth` and `/configure`) |
[optional] |
uid_token |
str |
The universal identity token, Required only for universal_identity authentication |
[optional] |
usage_reports_access |
str |
Allow this role to view Usage Report. Currently only 'none' and 'all' values are supported. |
[optional] |
from akeyless.models.update_role import UpdateRole
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateRole from a JSON string
update_role_instance = UpdateRole.from_json(json)
# print the JSON string representation of the object
print(UpdateRole.to_json())
# convert the object into a dict
update_role_dict = update_role_instance.to_dict()
# create an instance of UpdateRole from a dict
update_role_from_dict = UpdateRole.from_dict(update_role_dict)
[Back to Model list] [Back to API list] [Back to README]