Skip to main content

Accountactivity

Properties

NameTypeDescriptionNotes
IdStringId of the account activity[optional]
NameStringThe name of the activity[optional]
CreatedSystem.DateTimeWhen the activity was first created[optional]
ModifiedSystem.DateTimeWhen the activity was last modified[optional]
CompletedSystem.DateTimeWhen the activity was completed[optional]
CompletionStatusCompletionstatus[optional]
TypeStringThe type of action the activity performed. Please see the following list of types. This list may grow over time. - CloudAutomated - IdentityAttributeUpdate - appRequest - LifecycleStateChange - AccountStateUpdate - AccountAttributeUpdate - CloudPasswordRequest - Attribute Synchronization Refresh - Certification - Identity Refresh - Lifecycle Change Refresh Learn more here.[optional]
RequesterIdentitySummaryIdentitysummary[optional]
TargetIdentitySummaryIdentitysummary[optional]
Errors[]StringA list of error messages, if any, that were encountered.[optional]
Warnings[]StringA list of warning messages, if any, that were encountered.[optional]
Items[]AccountactivityitemIndividual actions performed as part of this account activity[optional]
ExecutionStatusExecutionstatus[optional]
ClientMetadatamap[string]StringArbitrary key-value pairs, if any were included in the corresponding access request[optional]

Examples

  • Prepare the resource
$Accountactivity = Initialize-Accountactivity  -Id 2c9180835d2e5168015d32f890ca1581 `
-Name 2c9180835d2e5168015d32f890ca1581 `
-Created 2017-07-11T18:45:37.098Z `
-Modified 2018-06-25T20:22:28.104Z `
-Completed 2018-10-19T13:49:37.385Z `
-CompletionStatus null `
-Type appRequest `
-RequesterIdentitySummary null `
-TargetIdentitySummary null `
-Errors ["sailpoint.connector.ConnectorException: java.lang.InterruptedException: Timeout waiting for response to message 0 from client 57a4ab97-ab3f-4aef-9fe2-0eaf15c73d26 after 60 seconds."] `
-Warnings ["Some warning, another warning"] `
-Items null `
-ExecutionStatus null `
-ClientMetadata {"customKey1":"custom value 1","customKey2":"custom value 2"}
  • Convert the resource to JSON
$Accountactivity | ConvertTo-JSON

[Back to top]