Skip to main content

EventDocument

Properties

NameTypeDescriptionNotes
IdStringID of the entitlement.[optional]
NameStringName of the entitlement.[optional]
CreatedSystem.DateTimeISO-8601 date-time referring to the time when the object was created.[optional]
SyncedStringISO-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]
ActionStringName of the event as it's displayed in audit reports.[optional]
TypeStringEvent type. Refer to Event Types for a list of event types and their meanings.[optional]
ActorEventActor[optional]
TargetEventTarget[optional]
StackStringThe event's stack.[optional]
TrackingNumberStringID of the group of events.[optional]
IpAddressStringTarget system's IP address.[optional]
DetailsStringID of event's details.[optional]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4Attributes involved in the event.[optional]
Objects[]StringObjects the event is happening to.[optional]
OperationStringOperation, or action, performed during the event.[optional]
StatusStringEvent status. Refer to Event Statuses for a list of event statuses and their meanings.[optional]
TechnicalNameStringEvent's normalized name. This normalized name always follows the pattern of 'objects_operation_status'.[optional]

Examples

  • Prepare the resource
$EventDocument = Initialize-PSSailpoint.V3EventDocument  -Id 2c91808375d8e80a0175e1f88a575222 `
-Name Add Entitlement Passed `
-Created 2018-06-25T20:22:28.104Z `
-Synced 2018-06-25T20:22:28.104Z `
-Action AddEntitlement `
-Type ACCESS_ITEM `
-Actor null `
-Target null `
-Stack tpe `
-TrackingNumber 63f891e0735f4cc8bf1968144a1e7440 `
-IpAddress 52.52.97.85 `
-Details 73b65dfbed1842548c207432a18c84b0 `
-Attributes {pod=stg03-useast1, org=acme, sourceName=SailPoint} `
-Objects null `
-Operation ADD `
-Status PASSED `
-TechnicalName ENTITLEMENT_ADD_PASSED
  • Convert the resource to JSON
$EventDocument | ConvertTo-JSON

[Back to top]