Skip to main content

TriggerExampleInput

Properties

NameTypeDescriptionNotes
AccessRequestIdStringAccess request's unique ID.[required]
RequestedFor[]AccessItemRequestedForDto1Identities whom access was requested for.[required]
RequestedItems[]AccessRequestPreApprovalRequestedItemsInnerDetails about each requested access item.[required]
RequestedByAccessItemRequesterDto1[required]
RequestedItemsStatus[]AccessRequestPostApprovalRequestedItemsStatusInnerDetails about the outcome of each requested 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[]StringList of any accumulated error messages that occurred during provisioning.[required]
Warnings[]StringList of any accumulated warning messages that occurred during provisioning.[required]
StatsAccountsCollectedForAggregationStats[required]
IdentityIdentityDeletedIdentity[required]
AccountAccountUncorrelatedAccount[required]
Changes[]IdentityAttributesChangedChangesInnerList of identity's attributes that changed.[required]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4Account attributes. The attributes' contents depend on the source's account schema.[required]
EntitlementCountInt32The number of entitlements associated with this account.[optional]
CampaignCampaignGeneratedCampaign[required]
CertificationCertificationSignedOffCertification[required]
TrackingNumberStringProvisioning request's reference number. Useful for tracking status in the 'Account Activity' search interface.[required]
SourcesStringSources the provisioning transactions were performed on. Sources are comma separated.[required]
ActionStringOrigin of the provisioning request.[optional]
RecipientProvisioningCompletedRecipient[required]
RequesterProvisioningCompletedRequester[optional]
AccountRequests[]ProvisioningCompletedAccountRequestsInnerList of provisioning instructions to perform on an account-by-account basis.[required]
FileNameStringReport file name.[required]
OwnerEmailStringEmail address of the identity who owns the saved search.[required]
OwnerNameStringName of the identity who owns the saved search.[required]
QueryStringSearch query used to generate the report.[required]
SearchNameStringSaved search name.[required]
SearchResultsSavedSearchCompleteSearchResults[required]
SignedS3UrlStringThe Amazon S3 URL to download the report from.[required]
UuidStringIdentity's universal unique identifier (UUID) on the source. The source system generates the UUID.[required]
IdStringSource's unique ID.[required]
NativeIdentifierStringAccount's unique ID on the source.[required]
SourceIdStringSource ID.[required]
SourceNameStringSource name.[required]
IdentityIdStringID of the identity correlated with the account.[required]
IdentityNameStringName of the identity correlated with the account.[required]
NameStringSource name.[required]
TypeStringConnection type.[required]
CreatedSystem.DateTimeDate and time when the status change occurred.[required]
ConnectorStringConnector type used to connect to the source.[required]
ActorSourceUpdatedActor[required]
DeletedSystem.DateTimeDate and time when the source was deleted.[required]
ModifiedSystem.DateTimeDate and time when the source was modified.[required]
ApplicationVAClusterStatusChangeEventApplication[required]
HealthCheckResultVAClusterStatusChangeEventHealthCheckResult[required]
PreviousHealthCheckResultVAClusterStatusChangeEventPreviousHealthCheckResult[required]

Examples

  • Prepare the resource
$TriggerExampleInput = Initialize-PSSailpoint.BetaTriggerExampleInput  -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=john.doe@gmail.com, 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 Test source `
-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]