Skip to main content

ApprovalIdentity

Properties

NameTypeDescriptionNotes
EmailStringEmail address.[optional]
IdentityIDStringIdentity ID.[optional]
Members[]ApprovalIdentityMembersInnerList of members of a governance group. Will be omitted if the identity is not a governance group.[optional]
NameStringName of the identity.[optional]
OwnerOf[]ApprovalIdentityOwnerOfInnerList of owned items. For example, will show the items in which a ROLE_OWNER owns. Omitted if not an owner of anything.[optional]
SerialOrderInt64The serial step of the identity in the approval. For example serialOrder 1 is the first identity to action in an approval request chain. Parallel approvals are set to 0.[optional]
TypeEnum [ "IDENTITY", "MANAGER_OF", "GOVERNANCE_GROUP", "SOURCE_OWNER", "ROLE_OWNER", "ACCESS_PROFILE_OWNER", "ENTITLEMENT_OWNER", "APPLICATION_OWNER" ]Type of identity.[optional]

Examples

  • Prepare the resource
$ApprovalIdentity = Initialize-V2025ApprovalIdentity  -Email mail@mail.com `
-IdentityID 17e633e7d57e481569df76323169deb6a `
-Members null `
-Name Jim Bob `
-OwnerOf null `
-SerialOrder 0 `
-Type IDENTITY
  • Convert the resource to JSON
$ApprovalIdentity | ConvertTo-JSON

[Back to top]