Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/Argument.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05:00

931 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
argument Argument Argument Argument powershellsdk
powershell
PowerShell
sdk
Argument
/tools/sdk/powershell/beta/models/argument
SDK
Software Development Kit
Argument

Argument

Properties

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

Examples

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

[Back to top]