adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,65 @@
---
id: beta-cancelable-account-activity
title: CancelableAccountActivity
pagination_label: CancelableAccountActivity
sidebar_label: CancelableAccountActivity
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CancelableAccountActivity', 'BetaCancelableAccountActivity']
slug: /tools/sdk/powershell/beta/models/cancelable-account-activity
tags: ['SDK', 'Software Development Kit', 'CancelableAccountActivity', 'BetaCancelableAccountActivity']
---
# CancelableAccountActivity
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | Pointer to **String** | ID of the account activity itself | [optional]
**Name** | Pointer to **String** | | [optional]
**Created** | Pointer to **System.DateTime** | | [optional]
**Modified** | Pointer to **System.DateTime** | | [optional]
**Completed** | Pointer to **System.DateTime** | | [optional]
**CompletionStatus** | Pointer to [**CompletionStatus**](completion-status) | | [optional]
**Type** | Pointer to **String** | | [optional]
**RequesterIdentitySummary** | Pointer to [**IdentitySummary**](identity-summary) | | [optional]
**TargetIdentitySummary** | Pointer to [**IdentitySummary**](identity-summary) | | [optional]
**Errors** | Pointer to **[]String** | | [optional]
**Warnings** | Pointer to **[]String** | | [optional]
**Items** | Pointer to [**[]AccountActivityItem**](account-activity-item) | | [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]
**Cancelable** | Pointer to **Boolean** | Whether the account activity can be canceled before completion | [optional]
**CancelComment** | Pointer to [**Comment**](comment) | | [optional]
## Examples
- Prepare the resource
```powershell
$CancelableAccountActivity = Initialize-PSSailpoint.BetaCancelableAccountActivity -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 null `
-Items null `
-ExecutionStatus null `
-ClientMetadata null `
-Cancelable null `
-CancelComment null
```
- Convert the resource to JSON
```powershell
$CancelableAccountActivity | ConvertTo-JSON
```
[[Back to top]](#)