Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/Argument.md
2025-05-07 14:37:48 +00:00

936 B

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-argument Argument Argument Argument powershellsdk
powershell
PowerShell
sdk
Argument
V2024Argument
/tools/sdk/powershell/v2024/models/argument
SDK
Software Development Kit
Argument
V2024Argument

Argument

Properties

Name Type Description Notes
Name String the name of the argument [required]
Description String the description of the argument [optional]
Type String the programmatic type of the argument [optional]

Examples

  • Prepare the resource
$Argument = Initialize-V2024Argument  -Name firstName `
 -Description the first name of the identity `
 -Type String
  • Convert the resource to JSON
$Argument | ConvertTo-JSON

[Back to top]