Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.96 KB

File metadata and controls

39 lines (30 loc) · 1.96 KB

CreateUARInfo

Information needed to start a user access review.

Properties

Name Type Description Notes
name str The name of the UAR.
reviewer_assignment_policy UARReviewerAssignmentPolicyEnum
send_reviewer_assignment_notification bool A bool representing whether to send a notification to reviewers when they're assigned a new review. Default is False.
deadline datetime The last day for reviewers to complete their access reviews.
time_zone str The time zone name (as defined by the IANA Time Zone database) used in the access review deadline and exported audit report. Default is America/Los_Angeles.
self_review_allowed bool A bool representing whether to present a warning when a user is the only reviewer for themself. Default is False.
instantly_action_reviews bool A bool representing whether to instantly action changes when reviewers submit their decision. Default is False. [optional]
reminder_schedule List[int] [optional]
reminder_include_manager bool [optional]
uar_scope UARScope [optional]

Example

from opal_security.models.create_uar_info import CreateUARInfo

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

# convert the object into a dict
create_uar_info_dict = create_uar_info_instance.to_dict()
# create an instance of CreateUARInfo from a dict
create_uar_info_from_dict = CreateUARInfo.from_dict(create_uar_info_dict)

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