Update PowerShell SDK docs: 16507204442

This commit is contained in:
developer-relations-sp
2025-07-24 20:31:57 +00:00
parent 076fc2761f
commit ba44ba0234
76 changed files with 950 additions and 721 deletions

View File

@@ -16,49 +16,47 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAssociatedAccessItem', 'V20
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**AccessType** | **String** | the access item type. role in this case | [optional]
**Id** | **String** | the access item id | [optional]
**Name** | **String** | the access profile name | [optional]
**AccessType** | **String** | the access item type. entitlement in this case | [optional]
**DisplayName** | **String** | the access item display name | [optional]
**SourceName** | **String** | the associated source name if it exists | [optional]
**SourceId** | **String** | the id of the source | [optional]
**Attribute** | **String** | the entitlement attribute | [required]
**Value** | **String** | the associated value | [required]
**Type** | **String** | the type of entitlement | [required]
**Description** | **String** | the description for the role | [optional]
**DisplayName** | **String** | the role display name | [optional]
**EntitlementCount** | **String** | the number of entitlements the account will create | [optional]
**AppDisplayName** | **String** | the name of | [optional]
**RemoveDate** | **String** | the date the role is no longer assigned to the specified identity | [optional]
**Standalone** | **Boolean** | indicates whether the entitlement is standalone | [required]
**Revocable** | **Boolean** | indicates whether the role is revocable | [required]
**NativeIdentity** | **String** | the native identifier used to uniquely identify an acccount | [optional]
**AppRoleId** | **String** | the app role id | [optional]
**Attribute** | **String** | the entitlement attribute | [optional]
**Value** | **String** | the associated value | [optional]
**EntitlementType** | **String** | the type of entitlement | [optional]
**SourceId** | **String** | the id of the source | [optional]
**Standalone** | **Boolean** | indicates whether the access profile is standalone | [required]
**Privileged** | **Boolean** | indicates whether the entitlement is privileged | [required]
**CloudGoverned** | **Boolean** | indicates whether the entitlement is cloud governed | [required]
**EntitlementCount** | **Int32** | the number of entitlements the account will create | [required]
**AppRefs** | [**[]AccessItemAccessProfileResponseAppRefsInner**](access-item-access-profile-response-app-refs-inner) | the list of app ids associated with the access profile | [required]
**RemoveDate** | **String** | the date the role is no longer assigned to the specified identity | [optional]
**Revocable** | **Boolean** | indicates whether the role is revocable | [required]
**NativeIdentity** | **String** | the native identifier used to uniquely identify an acccount | [required]
**AppRoleId** | **String** | the app role id | [required]
## Examples
- Prepare the resource
```powershell
$AccessItemAssociatedAccessItem = Initialize-V2024AccessItemAssociatedAccessItem -AccessType role `
-Id 2c918087763e69d901763e72e97f006f `
-Name sample `
-SourceName Source Name `
-SourceId 2793o32dwd `
-Description Role - Workday/Citizenship access `
-DisplayName sample `
-EntitlementCount 12 `
-AppDisplayName AppName `
-RemoveDate 2024-07-01T06:00:00.00Z `
-Standalone true `
-Revocable true `
-NativeIdentity dr.arden.ogahn.d `
-AppRoleId 2c918087763e69d901763e72e97f006f `
$AccessItemAssociatedAccessItem = Initialize-V2024AccessItemAssociatedAccessItem -Id 2c918087763e69d901763e72e97f006f `
-AccessType app `
-DisplayName Display Name `
-SourceName appName `
-Attribute groups `
-Value Upward mobility access `
-EntitlementType entitlement `
-Type ENTITLEMENT `
-Description Role - Workday/Citizenship access `
-SourceId 2793o32dwd `
-Standalone false `
-Privileged false `
-CloudGoverned true
-CloudGoverned true `
-EntitlementCount 12 `
-AppRefs [{cloudAppId=8c190e6787aa4ed9a90bd9d5344523fb, cloudAppName=Sample App}, {cloudAppId=2c91808a77ff216301782327a50f09bf, cloudAppName=Another App}] `
-RemoveDate 2024-07-01T06:00:00.00Z `
-Revocable true `
-NativeIdentity dr.arden.ogahn.d `
-AppRoleId 2c918087763e69d901763e72e97f006f
```
- Convert the resource to JSON