Skip to main content

AccessItemAccessProfileResponse

Properties

NameTypeDescriptionNotes
AccessTypeStringthe access item type. accessProfile in this case[optional]
IdStringthe access item id[optional]
NameStringthe access profile name[optional]
SourceNameStringthe name of the source[optional]
SourceIdStringthe id of the source[optional]
DescriptionStringthe description for the access profile[optional]
DisplayNameStringthe display name of the identity[optional]
EntitlementCountStringthe number of entitlements the access profile will create[optional]
AppDisplayNameStringthe name of[optional]
RemoveDateStringthe date the access profile is no longer assigned to the specified identity[optional]
StandaloneBooleanindicates whether the access profile is standalone[required]
RevocableBooleanindicates whether the access profile is[required]

Examples

  • Prepare the resource
$AccessItemAccessProfileResponse = Initialize-PSSailpoint.BetaAccessItemAccessProfileResponse  -AccessType accessProfile `
-Id 2c918087763e69d901763e72e97f006f `
-Name sample `
-SourceName DataScienceDataset `
-SourceId 2793o32dwd `
-Description AccessProfile - Workday/Citizenship access `
-DisplayName Dr. Arden Rogahn MD `
-EntitlementCount 12 `
-AppDisplayName AppName `
-RemoveDate 2024-07-01T06:00:00.00Z `
-Standalone false `
-Revocable true
  • Convert the resource to JSON
$AccessItemAccessProfileResponse | ConvertTo-JSON

[Back to top]