Skip to main content

SpConfigRule

Properties

NameTypeDescriptionNotes
PathStringJSONPath expression denoting the path within the object where a value substitution should be applied[optional]
Value[SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Value to be assigned at the jsonPath location within the object[optional]
Mode[]StringDraft modes to which this rule will apply[optional]

Examples

  • Prepare the resource
$SpConfigRule = Initialize-PSSailpoint.V2024SpConfigRule  -Path $.enabled `
-Value null `
-Mode [RESTORE, PROMOTE]
  • Convert the resource to JSON
$SpConfigRule | ConvertTo-JSON

[Back to top]