Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/InvocationStatus.md
2025-01-28 13:29:29 -05:00

1.9 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
beta-invocation-status InvocationStatus InvocationStatus InvocationStatus powershellsdk
powershell
PowerShell
sdk
InvocationStatus
BetaInvocationStatus
/tools/sdk/powershell/beta/models/invocation-status
SDK
Software Development Kit
InvocationStatus
BetaInvocationStatus

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 [required]
Created System.DateTime Invocation created timestamp. ISO-8601 in UTC. [required]
Completed Pointer to System.DateTime Invocation completed timestamp; empty fields imply invocation is in-flight or not completed. ISO-8601 in UTC. [optional]
StartInvocationInput StartInvocationInput [required]
CompleteInvocationInput Pointer to CompleteInvocationInput [optional]

Examples

  • Prepare the resource
$InvocationStatus = Initialize-PSSailpoint.BetaInvocationStatus  -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
$InvocationStatus | ConvertTo-JSON

[Back to top]