add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,138 @@
---
id: v2025-account-activity-document
title: AccountActivityDocument
pagination_label: AccountActivityDocument
sidebar_label: AccountActivityDocument
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'AccountActivityDocument', 'V2025AccountActivityDocument']
slug: /tools/sdk/python/v2025/models/account-activity-document
tags: ['SDK', 'Software Development Kit', 'AccountActivityDocument', 'V2025AccountActivityDocument']
---
# AccountActivityDocument
AccountActivity
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | ID of account activity. | [optional]
**action** | **str** | Type of action performed in the activity. | [optional]
**created** | **datetime** | ISO-8601 date-time referring to the time when the object was created. | [optional]
**modified** | **datetime** | ISO-8601 date-time referring to the time when the object was last modified. | [optional]
**synced** | **str** | ISO-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]
**stage** | **str** | Activity's current stage. | [optional]
**status** | **str** | Activity's current status. | [optional]
**requester** | [**ActivityIdentity**](activity-identity) | | [optional]
**recipient** | [**ActivityIdentity**](activity-identity) | | [optional]
**tracking_number** | **str** | Account activity's tracking number. | [optional]
**errors** | **[]str** | Errors provided by the source while completing account actions. | [optional]
**warnings** | **[]str** | Warnings provided by the source while completing account actions. | [optional]
**approvals** | [**[]Approval1**](approval1) | Approvals performed on an item during activity. | [optional]
**original_requests** | [**[]OriginalRequest**](original-request) | Original actions that triggered all individual source actions related to the account action. | [optional]
**expansion_items** | [**[]ExpansionItem**](expansion-item) | Controls that translated the attribute requests into actual provisioning actions on the source. | [optional]
**account_requests** | [**[]AccountRequest**](account-request) | Account data for each individual source action triggered by the original requests. | [optional]
**sources** | **str** | Sources involved in the account activity. | [optional]
}
## Example
```python
from sailpoint.v2025.models.account_activity_document import AccountActivityDocument
account_activity_document = AccountActivityDocument(
id='2c91808375d8e80a0175e1f88a575222',
action='Identity Refresh.',
created='2018-06-25T20:22:28.104Z',
modified='2018-06-25T20:22:28.104Z',
synced='2018-06-25T20:22:28.104Z',
stage='Completed',
status='Complete',
requester=,
recipient=,
tracking_number='61aad0c9e8134eca89e76a35e0cabe3f',
errors=[
''
],
warnings=[
''
],
approvals=[
sailpoint.v2025.models.approval_1.Approval_1(
comments = [
sailpoint.v2025.models.approval_comment_2.ApprovalComment_2(
comment = 'This request was autoapproved by our automated ETS subscriber.',
commenter = 'Automated AR Approval',
date = '2018-06-25T20:22:28.104Z', )
],
modified = '2018-06-25T20:22:28.104Z',
owner = null,
result = 'Finished',
attribute_request = sailpoint.v2025.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, ),
source = null, )
],
original_requests=[
sailpoint.v2025.models.original_request.OriginalRequest(
account_id = 'CN=Abby Smith,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
result = sailpoint.v2025.models.result.Result(
status = 'Manual Task Created', ),
attribute_requests = [
sailpoint.v2025.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, )
],
op = 'add',
source = null, )
],
expansion_items=[
sailpoint.v2025.models.expansion_item.ExpansionItem(
account_id = '2c91808981f58ea601821c3e93482e6f',
cause = 'Role',
name = 'smartsheet-role',
attribute_request = sailpoint.v2025.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, ),
source = null,
id = 'ac2887ffe0e7435a8c18c73f7ae94c7b',
state = 'EXECUTING', )
],
account_requests=[
sailpoint.v2025.models.account_request.AccountRequest(
account_id = 'John.Doe',
attribute_requests = [
sailpoint.v2025.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, )
],
op = 'Modify',
provisioning_target = null,
result = sailpoint.v2025.models.account_request_result.AccountRequest_result(
errors = [
'[ConnectorError] [
{
"code": "unrecognized_keys",
"keys": [
"groups"
],
"path": [],
"message": "Unrecognized key(s) in object: 'groups'"
}
] (requestId: 5e9d6df5-9b1b-47d9-9bf1-dc3a2893299e)'
],
status = 'failed',
ticket_id = '', ),
source = null, )
],
sources='smartsheet-test, airtable-v4, IdentityNow'
)
```
[[Back to top]](#)