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

857 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-source-code SourceCode SourceCode SourceCode powershellsdk
powershell
PowerShell
sdk
SourceCode
V2024SourceCode
/tools/sdk/powershell/v2024/models/source-code
SDK
Software Development Kit
SourceCode
V2024SourceCode

SourceCode

Properties

Name Type Description Notes
Version String the version of the code [required]
Script String The code [required]

Examples

  • Prepare the resource
$SourceCode = Initialize-PSSailpoint.V2024SourceCode  -Version 1.0 `
 -Script return "Mr. " + firstName;
  • Convert the resource to JSON
$SourceCode | ConvertTo-JSON

[Back to top]