Skip to main content

Accessrequestconfigv2

Properties

NameTypeDescriptionNotes
ApprovalsMustBeExternalBooleanIf this is true, approvals must be processed by an external system. Also, if this is true, it blocks Request Center access requests and returns an error for any user who isn't an org admin.[optional] [default to $false]
ReauthorizationEnabledBooleanIf this is true, reauthorization will be enforced for appropriately configured access items. Enablement of this feature is currently in a limited state.[optional] [default to $false]
RequestOnBehalfOfConfigRequestonbehalfofconfigv2[optional]
EntitlementRequestConfigEntitlementrequestconfigv2[optional]
GovGroupVisibilityEnabledBooleanIf this is true, requesters and requested-for users will be able to see the names of governance group members when a request is awaiting the group's approval. Up to the first 10 members of the group will be listed.[optional] [default to $false]

Examples

  • Prepare the resource
$Accessrequestconfigv2 = Initialize-Accessrequestconfigv2  -ApprovalsMustBeExternal true `
-ReauthorizationEnabled true `
-RequestOnBehalfOfConfig null `
-EntitlementRequestConfig null `
-GovGroupVisibilityEnabled true
  • Convert the resource to JSON
$Accessrequestconfigv2 | ConvertTo-JSON

[Back to top]