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

1.1 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-form-used-by FormUsedBy FormUsedBy FormUsedBy powershellsdk
powershell
PowerShell
sdk
FormUsedBy
BetaFormUsedBy
/tools/sdk/powershell/beta/models/form-used-by
SDK
Software Development Kit
FormUsedBy
BetaFormUsedBy

FormUsedBy

Properties

Name Type Description Notes
Type Pointer to Enum [ "WORKFLOW", "SOURCE", "MySailPoint" ] FormUsedByType value. WORKFLOW FormUsedByTypeWorkflow SOURCE FormUsedByTypeSource MySailPoint FormUsedByType [optional]
Id Pointer to String Unique identifier of the system using the form. [optional]
Name Pointer to String Name of the system using the form. [optional]

Examples

  • Prepare the resource
$FormUsedBy = Initialize-PSSailpoint.BetaFormUsedBy  -Type WORKFLOW `
 -Id 61940a92-5484-42bc-bc10-b9982b218cdf `
 -Name Access Request Form
  • Convert the resource to JSON
$FormUsedBy | ConvertTo-JSON

[Back to top]