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

833 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
v2025-source-code SourceCode SourceCode SourceCode powershellsdk
powershell
PowerShell
sdk
SourceCode
V2025SourceCode
/tools/sdk/powershell/v2025/models/source-code
SDK
Software Development Kit
SourceCode
V2025SourceCode

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-V2025SourceCode  -Version 1.0 `
 -Script return "Mr. " + firstName;
  • Convert the resource to JSON
$SourceCode | ConvertTo-JSON

[Back to top]