accessReviewScheduleSettings 资源类型accessReviewScheduleSettings resource type
命名空间:microsoft.graphNamespace: microsoft.graph
重要
Microsoft Graph /beta
中版本下的 API 可能会更改。APIs under the /beta
version in Microsoft Graph are subject to change. 不支持在生产应用程序中使用这些 API。Use of these APIs in production applications is not supported. 若要确定 API 在 v1.0 中是否可用,请使用 版本选择 器。To determine whether an API is available in v1.0, use the Version selector.
accessReviewScheduleSettings 定义 accessReviewScheduleDefinition 的设置。The accessReviewScheduleSettings defines the settings of an accessReviewScheduleDefinition.
属性Properties
属性Property | 类型Type | 说明Description |
---|---|---|
mailNotificationsEnabledmailNotificationsEnabled | BooleanBoolean | 指示电子邮件是否已启用/禁用的标志。Flag to indicate whether emails are enabled/disabled. |
reminderNotificationsEnabledreminderNotificationsEnabled | BooleanBoolean | 指示是否启用/禁用提醒的标志。Flag to indicate whether reminders are enabled/disabled. |
justificationRequiredOnApprovaljustificationRequiredOnApproval | BooleanBoolean | 用于指示是否需要审阅者提供其决策理由的标志。Flag to indicate whether reviewers are required to provide justification with their decision. |
defaultDecisionEnableddefaultDecisionEnabled | BooleanBoolean | 指示在审阅者未响应时是否启用/禁用默认决策的标志。Flag to indicate whether default decision is enabled/disabled when reviewers do not respond. |
defaultDecisiondefaultDecision | 字符串String | 如果已启用, defaultDecisionEnabled 则选择决策。Decision chosen if defaultDecisionEnabled is enabled. 可以是"批准"、"拒绝"或"建议"之一。Can be one of "Approve", "Deny", or "Recommendation". |
instanceDurationInDaysinstanceDurationInDays | Int32Int32 | 每次重复审阅的持续时间 accessReviewInstance () 天数。Duration of each recurrence of review (accessReviewInstance ) in number of days. |
recurrencerecurrence | patternedRecurrencepatternedRecurrence | 定期的详细设置。Detailed settings for recurrence. 使用标准 Outlook 定期对象。Using standard Outlook recurrence object. |
autoApplyDecisionsEnabledautoApplyDecisionsEnabled | BooleanBoolean | 用于指示是否已启用自动应用功能的标志。Flag to indicate whether auto-apply feature is enabled. |
applyActionsapplyActions | accessReviewApplyAction 集合accessReviewApplyAction collection | 可选字段。Optional field. 介绍在审阅完成后要采取的操作。Describes the actions to take once a review is complete. 目前支持两种类型:默认 (removeAccessApplyAction 和 disableAndDeleteUserApplyAction ) 。There are two types that are currently supported: removeAccessApplyAction (default) and disableAndDeleteUserApplyAction . 字段只需要在 . disableAndDeleteUserApplyAction Field only needs to be specified in the case of disableAndDeleteUserApplyAction . 请参阅 accessReviewApplyAction。See accessReviewApplyAction. |
recommendationsEnabledrecommendationsEnabled | BooleanBoolean | 指示是否启用/禁用决策建议的标志。Flag to indicate whether decision recommendations are enabled/disabled. |
关系Relationships
无。None.
JSON 表示形式JSON representation
下面是资源的 JSON 表示形式。The following is a JSON representation of the resource.
{
"@odata.type": "#microsoft.graph.accessReviewScheduleSettings",
"mailNotificationsEnabled": "Boolean",
"reminderNotificationsEnabled": "Boolean",
"justificationRequiredOnApproval": "Boolean",
"defaultDecisionEnabled": "Boolean",
"defaultDecision": "String",
"instanceDurationInDays": "Integer",
"recurrence": {
"@odata.type": "microsoft.graph.patternedRecurrence"
},
"autoApplyDecisionsEnabled": "Boolean",
"applyActions": [
{
"@odata.type": "microsoft.graph.removeAccessApplyAction"
}
],
"recommendationsEnabled": "Boolean"
}