Skip to main content

AccessProfileDocument

Properties

NameTypeDescriptionNotes
DescriptionStringAccess item's description.[optional]
CreatedSystem.DateTimeISO-8601 date-time referring to the time when the object was created.[optional]
ModifiedSystem.DateTimeISO-8601 date-time referring to the time when the object was last modified.[optional]
SyncedSystem.DateTimeISO-8601 date-time referring to the date-time when object was queued to be synced into search database for use in the search API. This date-time changes anytime there is an update to the object, which triggers a synchronization event being sent to the search database. There may be some delay between the synced time and the time when the updated data is actually available in the search API.[optional]
EnabledBooleanIndicates whether the access item is currently enabled.[optional] [default to $false]
RequestableBooleanIndicates whether the access item can be requested.[optional] [default to $true]
RequestCommentsRequiredBooleanIndicates whether comments are required for requests to access the item.[optional] [default to $false]
OwnerBaseAccessOwner[optional]
IdStringAccess profile's ID.[required]
NameStringAccess profile's name.[required]
SourceAccessProfileDocumentAllOfSource[optional]
Entitlements[]BaseEntitlementEntitlements the access profile has access to.[optional]
EntitlementCountInt32Number of entitlements.[optional]
Segments[]BaseSegmentSegments with the access profile.[optional]
SegmentCountInt32Number of segments with the access profile.[optional]
Tags[]StringTags that have been applied to the object.[optional]
Apps[]AccessAppsApplications with the access profile[optional]

Examples

  • Prepare the resource
$AccessProfileDocument = Initialize-PSSailpoint.V3AccessProfileDocument  -Description Admin access `
-Created 2018-06-25T20:22:28.104Z `
-Modified 2018-06-25T20:22:28.104Z `
-Synced 2018-06-25T20:22:33.104Z `
-Enabled true `
-Requestable true `
-RequestCommentsRequired false `
-Owner null `
-Id 2c9180825a6c1adc015a71c9023f0818 `
-Name Cloud Eng `
-Source null `
-Entitlements null `
-EntitlementCount 5 `
-Segments null `
-SegmentCount 1 `
-Tags [TAG_1, TAG_2] `
-Apps null
  • Convert the resource to JSON
$AccessProfileDocument | ConvertTo-JSON

[Back to top]