Skip to main content

Accessitemaccessprofileresponse

Properties

NameTypeDescriptionNotes
IdStringthe access item id[optional]
AccessTypeStringthe access item type. accessProfile in this case[optional]
DisplayNameStringthe display name of the identity[optional]
SourceNameStringthe name of the source[optional]
EntitlementCountInt32the number of entitlements the access profile will create[required]
DescriptionStringthe description for the access profile[optional]
SourceIdStringthe id of the source[optional]
AppRefs[]AccessitemaccessprofileresponseAppRefsInnerthe list of app ids associated with the access profile[required]
StartDateStringthe date the access profile will be assigned to the specified identity, in case requested with a future start date[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 revocable[required]

Examples

  • Prepare the resource
$Accessitemaccessprofileresponse = Initialize-Accessitemaccessprofileresponse  -Id 2c918087763e69d901763e72e97f006f `
-AccessType accessProfile `
-DisplayName Dr. Arden Rogahn MD `
-SourceName DataScienceDataset `
-EntitlementCount 12 `
-Description AccessProfile - Workday/Citizenship access `
-SourceId 2793o32dwd `
-AppRefs [{"cloudAppId":"8c190e6787aa4ed9a90bd9d5344523fb","cloudAppName":"Sample App"},{"cloudAppId":"2c91808a77ff216301782327a50f09bf","cloudAppName":"Another App"}] `
-StartDate 2024-07-01T05:00:00.00Z `
-RemoveDate 2024-07-01T06:00:00.00Z `
-Standalone false `
-Revocable true
  • Convert the resource to JSON
$Accessitemaccessprofileresponse | ConvertTo-JSON

[Back to top]