mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding all powershell doc versions back
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
---
|
||||
id: v2024-account-activity
|
||||
title: AccountActivity
|
||||
pagination_label: AccountActivity
|
||||
sidebar_label: AccountActivity
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'AccountActivity']
|
||||
slug: /tools/sdk/powershell/v2024/models/account-activity
|
||||
tags: ['SDK', 'Software Development Kit', 'AccountActivity']
|
||||
---
|
||||
|
||||
|
||||
# AccountActivity
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | Id of the account activity | [optional]
|
||||
**Name** | Pointer to **String** | The name of the activity | [optional]
|
||||
**Created** | Pointer to **System.DateTime** | When the activity was first created | [optional]
|
||||
**Modified** | Pointer to **System.DateTime** | When the activity was last modified | [optional]
|
||||
**Completed** | Pointer to **System.DateTime** | When the activity was completed | [optional]
|
||||
**CompletionStatus** | Pointer to [**CompletionStatus**](completion-status) | | [optional]
|
||||
**Type** | Pointer to **String** | The 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](https://documentation.sailpoint.com/saas/help/search/searchable-fields.html#searching-account-activity-data). | [optional]
|
||||
**RequesterIdentitySummary** | Pointer to [**IdentitySummary**](identity-summary) | | [optional]
|
||||
**TargetIdentitySummary** | Pointer to [**IdentitySummary**](identity-summary) | | [optional]
|
||||
**Errors** | Pointer to **[]String** | A list of error messages, if any, that were encountered. | [optional]
|
||||
**Warnings** | Pointer to **[]String** | A list of warning messages, if any, that were encountered. | [optional]
|
||||
**Items** | Pointer to [**[]AccountActivityItem**](account-activity-item) | Individual actions performed as part of this account activity | [optional]
|
||||
**ExecutionStatus** | Pointer to [**ExecutionStatus**](execution-status) | | [optional]
|
||||
**ClientMetadata** | Pointer to **map[string]String** | Arbitrary key-value pairs, if any were included in the corresponding access request | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
- Prepare the resource
|
||||
```powershell
|
||||
$AccountActivity = Initialize-PSSailpoint.V2024AccountActivity -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
|
||||
```powershell
|
||||
$AccountActivity | ConvertTo-JSON
|
||||
```
|
||||
|
||||
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user