Skip to main content

TriggerExampleInput

Properties

NameTypeDescriptionNotes
AccessRequestIdStringThe unique ID of the access request.[required]
RequestedFor[]AccessItemRequestedForDtoIdentities access was requested for.[required]
RequestedItems[]AccessRequestPreApprovalRequestedItemsInnerDetails of the access items being requested.[required]
RequestedByAccessItemRequesterDto[required]
RequestedItemsStatus[]AccessRequestPostApprovalRequestedItemsStatusInnerDetails on the outcome of each access item.[required]
SourceAccountUncorrelatedSource[required]
StatusEnum [ "Success", "Failed", "Terminated" ]The overall status of the collection.[required]
StartedSystem.DateTimeThe date and time when the account collection started.[required]
CompletedSystem.DateTimeThe date and time when the account collection finished.[required]
Errors[]StringA list of any accumulated error messages that occurred during provisioning.[required]
Warnings[]StringA list of any accumulated warning messages that occurred during provisioning.[required]
StatsAccountsCollectedForAggregationStats[required]
IdentityIdentityDeletedIdentity[required]
AccountAccountUncorrelatedAccount[required]
Changes[]IdentityAttributesChangedChangesInnerA list of one or more identity attributes that changed on the identity.[required]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4The attributes of the account. The contents of attributes depends on the account schema for the source.[required]
EntitlementCountInt32The number of entitlements associated with this account.[optional]
CampaignCampaignGeneratedCampaign[required]
CertificationCertificationSignedOffCertification[required]
TrackingNumberStringThe reference number of the provisioning request. Useful for tracking status in the Account Activity search interface.[required]
SourcesStringOne or more sources that the provisioning transaction(s) were done against. Sources are comma separated.[required]
ActionStringOrigin of where the provisioning request came from.[optional]
RecipientProvisioningCompletedRecipient[required]
RequesterProvisioningCompletedRequester[optional]
AccountRequests[]ProvisioningCompletedAccountRequestsInnerA list of provisioning instructions to perform on an account-by-account basis.[required]
FileNameStringA name for the report file.[required]
OwnerEmailStringThe email address of the identity that owns the saved search.[required]
OwnerNameStringThe name of the identity that owns the saved search.[required]
QueryStringThe search query that was used to generate the report.[required]
SearchNameStringThe name of the saved search.[required]
SearchResultsSavedSearchCompleteSearchResults[required]
SignedS3UrlStringThe Amazon S3 URL to download the report from.[required]
UuidStringSource unique identifier for the identity. UUID is generated by the source system.[optional]
IdStringThe unique ID of the source.[required]
NativeIdentifierStringUnique ID of the account on the source.[required]
SourceIdStringThe ID of the source.[required]
SourceNameStringThe name of the source.[required]
IdentityIdStringThe ID of the identity that is correlated with this account.[required]
IdentityNameStringThe name of the identity that is correlated with this account.[required]
NameStringThe user friendly name of the source.[required]
TypeStringThe connection type of the source.[required]
CreatedSystem.DateTimeThe date and time the status change occurred.[required]
ConnectorStringThe connector type used to connect to the source.[required]
ActorSourceUpdatedActor[required]
DeletedSystem.DateTimeThe date and time the source was deleted.[required]
ModifiedSystem.DateTimeThe date and time the source was modified.[required]
ApplicationVAClusterStatusChangeEventApplication[required]
HealthCheckResultVAClusterStatusChangeEventHealthCheckResult[required]
PreviousHealthCheckResultVAClusterStatusChangeEventPreviousHealthCheckResult[required]

Examples

  • Prepare the resource
$TriggerExampleInput = Initialize-PSSailpoint.V2024TriggerExampleInput  -AccessRequestId 2c91808b6ef1d43e016efba0ce470904 `
-RequestedFor null `
-RequestedItems null `
-RequestedBy null `
-RequestedItemsStatus null `
-Source null `
-Status Success `
-Started 2020-06-29T22:01:50.474Z `
-Completed 2020-06-29T22:02:04.090Z `
-Errors null `
-Warnings null `
-Stats null `
-Identity null `
-Account null `
-Changes null `
-Attributes {firstname=John, lastname=Doe, email=[email protected], department=Sales, displayName=John Doe, created=2020-04-27T16:48:33.597Z, employeeNumber=E009, uid=E009, inactive=true, phone=null, identificationNumber=E009} `
-EntitlementCount 0 `
-Campaign null `
-Certification null `
-TrackingNumber 4b4d982dddff4267ab12f0f1e72b5a6d `
-Sources Corp AD, Corp LDAP, Corp Salesforce `
-Action IdentityRefresh `
-Recipient null `
-Requester null `
-AccountRequests null `
-FileName Modified.zip `
-OwnerEmail test@sailpoint.com `
-OwnerName Cloud Support `
-Query modified:[now-7y/d TO now] `
-SearchName Modified Activity `
-SearchResults null `
-SignedS3Url https://sptcbu-org-data-useast1.s3.amazonaws.com/arsenal-john/reports/Events%20Export.2020-05-06%2018%2759%20GMT.3e580592-86e4-4953-8aea-49e6ef20a086.zip?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Date=20200506T185919Z&X-Amz-SignedHeaders=host&X-Amz-Expires=899&X-Amz-Credential=AKIAV5E54XOGTS4Q4L7A%2F20200506%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Signature=2e732bb97a12a1fd8a215613e3c31fcdae8ba1fb6a25916843ab5b51d2ddefbc `
-Uuid b7264868-7201-415f-9118-b581d431c688 `
-Id 2c9180866166b5b0016167c32ef31a66 `
-NativeIdentifier E009 `
-SourceId 2c918082814e693601816e09471b29b6 `
-SourceName Active Directory `
-IdentityId ee769173319b41d19ccec6c235423237b `
-IdentityName john.doe `
-Name Corporate Active Directory `
-Type DIRECT_CONNECT `
-Created 2020-06-29T22:01:50.474Z `
-Connector active-directory `
-Actor null `
-Deleted 2021-03-29T22:01:50.474Z `
-Modified 2021-03-29T22:01:50.474Z `
-Application null `
-HealthCheckResult null `
-PreviousHealthCheckResult null
  • Convert the resource to JSON
$TriggerExampleInput | ConvertTo-JSON

[Back to top]