Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

File metadata and controls

31 lines (22 loc) · 1.16 KB

CreateIamRoleRequest

Properties

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.

Example

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]