Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.21 KB

File metadata and controls

32 lines (23 loc) · 1.21 KB

CreateUpdateRbacRolePayload

Properties

Name Type Description Notes
description str Description of the role.
name str Name of the RBAC role.
permissions List[int] [optional]
policies List[int] [optional]

Example

from hyperstack.models.create_update_rbac_role_payload import CreateUpdateRbacRolePayload

# TODO update the JSON string below
json = "{}"
# create an instance of CreateUpdateRbacRolePayload from a JSON string
create_update_rbac_role_payload_instance = CreateUpdateRbacRolePayload.from_json(json)
# print the JSON string representation of the object
print(CreateUpdateRbacRolePayload.to_json())

# convert the object into a dict
create_update_rbac_role_payload_dict = create_update_rbac_role_payload_instance.to_dict()
# create an instance of CreateUpdateRbacRolePayload from a dict
create_update_rbac_role_payload_from_dict = CreateUpdateRbacRolePayload.from_dict(create_update_rbac_role_payload_dict)

[Back to Model list] [Back to API list] [Back to README]