You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Optional) A role description that the access-manager sees (for pre-defined roles, use translation text).
[optional]
icp_roles
List[str]
(Optional) An array of ICP roles that should be set for each user with this role.
[optional]
name
str
(Optional) A role name that the access-manager sees (for pre-defined roles, use translation text).
[optional]
removable
bool
(Optional) Some pre-defined roles are not removable.
[optional]
role_id
str
Permanent id of the role.
[optional]
Example
fromibm_gdsc_sdk_saas.models.tenantuserv3_update_role_requestimportTenantuserv3UpdateRoleRequest# TODO update the JSON string belowjson="{}"# create an instance of Tenantuserv3UpdateRoleRequest from a JSON stringtenantuserv3_update_role_request_instance=Tenantuserv3UpdateRoleRequest.from_json(json)
# print the JSON string representation of the objectprint(Tenantuserv3UpdateRoleRequest.to_json())
# convert the object into a dicttenantuserv3_update_role_request_dict=tenantuserv3_update_role_request_instance.to_dict()
# create an instance of Tenantuserv3UpdateRoleRequest from a dicttenantuserv3_update_role_request_from_dict=Tenantuserv3UpdateRoleRequest.from_dict(tenantuserv3_update_role_request_dict)