Update PowerShell SDK docs: 16633294545

This commit is contained in:
developer-relations-sp
2025-07-30 20:42:10 +00:00
parent cdd71d1f37
commit 5d76be1d9d
35 changed files with 1335 additions and 495 deletions

View File

@@ -16,17 +16,25 @@ tags: ['SDK', 'Software Development Kit', 'ApprovalIdentity', 'V2025ApprovalIden
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The identity ID | [optional]
**Type** | **Enum** [ "IDENTITY" ] | Indication of what group the identity belongs to. Ie, IDENTITY, GOVERNANCE_GROUP, etc | [optional]
**Name** | **String** | Name of the identity | [optional]
**Email** | **String** | Email address. | [optional]
**IdentityID** | **String** | Identity ID. | [optional]
**Members** | [**[]ApprovalIdentityMembersInner**](approval-identity-members-inner) | List of members of a governance group. Will be omitted if the identity is not a governance group. | [optional]
**Name** | **String** | Name of the identity. | [optional]
**OwnerOf** | [**[]ApprovalIdentityOwnerOfInner**](approval-identity-owner-of-inner) | List of owned items. For example, will show the items in which a ROLE_OWNER owns. Omitted if not an owner of anything. | [optional]
**SerialOrder** | **Int64** | The 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]
**Type** | **Enum** [ "IDENTITY", "MANAGER_OF", "GOVERNANCE_GROUP", "SOURCE_OWNER", "ROLE_OWNER", "ACCESS_PROFILE_OWNER", "ENTITLEMENT_OWNER", "APPLICATION_OWNER" ] | Type of identity. | [optional]
## Examples
- Prepare the resource
```powershell
$ApprovalIdentity = Initialize-V2025ApprovalIdentity -Id 85d173e7d57e496569df763231d6deb6a `
-Type IDENTITY `
-Name John Doe
$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