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,51 @@
---
id: v2025-invocation-status
title: InvocationStatus
pagination_label: InvocationStatus
sidebar_label: InvocationStatus
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'InvocationStatus', 'V2025InvocationStatus']
slug: /tools/sdk/powershell/v2025/models/invocation-status
tags: ['SDK', 'Software Development Kit', 'InvocationStatus', 'V2025InvocationStatus']
---
# InvocationStatus
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Invocation ID | [required]
**TriggerId** | **String** | Trigger ID | [required]
**SubscriptionName** | **String** | Subscription name | [required]
**SubscriptionId** | **String** | Subscription ID | [required]
**Type** | [**InvocationStatusType**](invocation-status-type) | | [required]
**Created** | **System.DateTime** | Invocation created timestamp. ISO-8601 in UTC. | [required]
**Completed** | **System.DateTime** | Invocation completed timestamp; empty fields imply invocation is in-flight or not completed. ISO-8601 in UTC. | [optional]
**StartInvocationInput** | [**StartInvocationInput**](start-invocation-input) | | [required]
**CompleteInvocationInput** | [**CompleteInvocationInput**](complete-invocation-input) | | [optional]
## Examples
- Prepare the resource
```powershell
$InvocationStatus = Initialize-PSSailpoint.V2025InvocationStatus -Id 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
-TriggerId idn:access-request-post-approval `
-SubscriptionName Access request subscription `
-SubscriptionId 0f11f2a4-7c94-4bf3-a2bd-742580fe3bde `
-Type null `
-Created 2020-03-27T20:40:10.738Z `
-Completed 2020-03-27T20:42:14.738Z `
-StartInvocationInput null `
-CompleteInvocationInput null
```
- Convert the resource to JSON
```powershell
$InvocationStatus | ConvertTo-JSON
```
[[Back to top]](#)