Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/ApprovalRequestedTarget.md
2025-07-30 20:42:10 +00:00

1.5 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
v2025-approval-requested-target ApprovalRequestedTarget ApprovalRequestedTarget ApprovalRequestedTarget powershellsdk
powershell
PowerShell
sdk
ApprovalRequestedTarget
V2025ApprovalRequestedTarget
/tools/sdk/powershell/v2025/models/approval-requested-target
SDK
Software Development Kit
ApprovalRequestedTarget
V2025ApprovalRequestedTarget

ApprovalRequestedTarget

Properties

Name Type Description Notes
ForcedAuthSignature String Signature required for forced authentication. [optional]
Id String ID of the requested target. [optional]
Name String Name of the requested target. [optional]
ReauthRequired Boolean Indicates if reauthentication is required. [optional] [default to $false]
RemovalDate System.DateTime Date when the target will be removed. [optional]
RequestType String Type of the request. [optional]
TargetType String Type of the target. [optional]

Examples

  • Prepare the resource
$ApprovalRequestedTarget = Initialize-V2025ApprovalRequestedTarget  -ForcedAuthSignature string `
 -Id string `
 -Name string `
 -ReauthRequired true `
 -RemovalDate 2025-07-07T18:10:13.687Z `
 -RequestType string `
 -TargetType string
  • Convert the resource to JSON
$ApprovalRequestedTarget | ConvertTo-JSON

[Back to top]