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
Copy file name to clipboardExpand all lines: docs/CreateUARInfo.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
12
12
**deadline** | **datetime** | The last day for reviewers to complete their access reviews. |
13
13
**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. |
14
14
**self_review_allowed** | **bool** | A bool representing whether to present a warning when a user is the only reviewer for themself. Default is False. |
15
+
**instantly_action_reviews** | **bool** | A bool representing whether to instantly action changes when reviewers submit their decision. Default is False. | [optional]
Copy file name to clipboardExpand all lines: docs/UAR.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
13
13
**deadline** | **datetime** | The last day for reviewers to complete their access reviews. |
14
14
**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. |
15
15
**self_review_allowed** | **bool** | A bool representing whether to present a warning when a user is the only reviewer for themself. Default is False. |
16
+
**instantly_action_reviews** | **bool** | A bool representing whether to instantly action changes when reviewers submit their decision. Default is False. |
Copy file name to clipboardExpand all lines: opal_security/models/create_uar_info.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -36,11 +36,12 @@ class CreateUARInfo(BaseModel):
36
36
deadline: datetime=Field(description="The last day for reviewers to complete their access reviews.")
37
37
time_zone: StrictStr=Field(description="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.")
38
38
self_review_allowed: StrictBool=Field(description="A bool representing whether to present a warning when a user is the only reviewer for themself. Default is False.")
39
+
instantly_action_reviews: Optional[StrictBool] =Field(default=None, description="A bool representing whether to instantly action changes when reviewers submit their decision. Default is False.")
Copy file name to clipboardExpand all lines: opal_security/models/uar.py
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -37,9 +37,10 @@ class UAR(BaseModel):
37
37
deadline: datetime=Field(description="The last day for reviewers to complete their access reviews.")
38
38
time_zone: StrictStr=Field(description="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.")
39
39
self_review_allowed: StrictBool=Field(description="A bool representing whether to present a warning when a user is the only reviewer for themself. Default is False.")
40
+
instantly_action_reviews: StrictBool=Field(description="A bool representing whether to instantly action changes when reviewers submit their decision. Default is False.")
0 commit comments