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

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

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

[Back to top]