mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 04:19:37 +00:00
Update PowerShell SDK docs: 16507204442
This commit is contained in:
@@ -16,32 +16,30 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAccessProfileResponse', 'Be
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessType** | **String** | the access item type. accessProfile in this case | [optional]
|
||||
**Id** | **String** | the access item id | [optional]
|
||||
**Name** | **String** | the access profile name | [optional]
|
||||
**SourceName** | **String** | the name of the source | [optional]
|
||||
**SourceId** | **String** | the id of the source | [optional]
|
||||
**Description** | **String** | the description for the access profile | [optional]
|
||||
**AccessType** | **String** | the access item type. accessProfile in this case | [optional]
|
||||
**DisplayName** | **String** | the display name of the identity | [optional]
|
||||
**EntitlementCount** | **String** | the number of entitlements the access profile will create | [optional]
|
||||
**AppDisplayName** | **String** | the name of | [optional]
|
||||
**SourceName** | **String** | the name of the source | [optional]
|
||||
**EntitlementCount** | **Int32** | the number of entitlements the access profile will create | [required]
|
||||
**Description** | **String** | the description for the access profile | [optional]
|
||||
**SourceId** | **String** | the id of the source | [optional]
|
||||
**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 access profile is no longer assigned to the specified identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the access profile is standalone | [required]
|
||||
**Revocable** | **Boolean** | indicates whether the access profile is | [required]
|
||||
**Revocable** | **Boolean** | indicates whether the access profile is revocable | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$AccessItemAccessProfileResponse = Initialize-BetaAccessItemAccessProfileResponse -AccessType accessProfile `
|
||||
-Id 2c918087763e69d901763e72e97f006f `
|
||||
-Name sample `
|
||||
-SourceName DataScienceDataset `
|
||||
-SourceId 2793o32dwd `
|
||||
-Description AccessProfile - Workday/Citizenship access `
|
||||
$AccessItemAccessProfileResponse = Initialize-BetaAccessItemAccessProfileResponse -Id 2c918087763e69d901763e72e97f006f `
|
||||
-AccessType accessProfile `
|
||||
-DisplayName Dr. Arden Rogahn MD `
|
||||
-SourceName DataScienceDataset `
|
||||
-EntitlementCount 12 `
|
||||
-AppDisplayName AppName `
|
||||
-Description AccessProfile - Workday/Citizenship access `
|
||||
-SourceId 2793o32dwd `
|
||||
-AppRefs [{cloudAppId=8c190e6787aa4ed9a90bd9d5344523fb, cloudAppName=Sample App}, {cloudAppId=2c91808a77ff216301782327a50f09bf, cloudAppName=Another App}] `
|
||||
-RemoveDate 2024-07-01T06:00:00.00Z `
|
||||
-Standalone false `
|
||||
-Revocable true
|
||||
|
||||
Reference in New Issue
Block a user