| Name |
Type |
Description |
Notes |
| description |
str |
Description of the role |
|
| label |
str |
Unique label for the role |
|
| permissions |
List[str] |
Array of permissions that the role grants. See Permissions. |
|
from okta.models.create_iam_role_request import CreateIamRoleRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CreateIamRoleRequest from a JSON string
create_iam_role_request_instance = CreateIamRoleRequest.from_json(json)
# print the JSON string representation of the object
print(CreateIamRoleRequest.to_json())
# convert the object into a dict
create_iam_role_request_dict = create_iam_role_request_instance.to_dict()
# create an instance of CreateIamRoleRequest from a dict
create_iam_role_request_from_dict = CreateIamRoleRequest.from_dict(create_iam_role_request_dict)
[Back to Model list] [Back to API list] [Back to README]