Skip to main content

SpConfigObject

Properties

NameTypeDescriptionNotes
ObjectTypeStringObject type the configuration is for.[optional]
ReferenceExtractors[]StringList of JSON paths within an exported object of this type, representing references that must be resolved.[optional]
SignatureRequiredBooleanIndicates whether this type of object will be JWS signed and cannot be modified before import.[optional] [default to $false]
AlwaysResolveByIdBooleanIndicates whether this object type must be always be resolved by ID.[optional] [default to $false]
LegacyObjectBooleanIndicates whether this is a legacy object.[optional] [default to $false]
OnePerTenantBooleanIndicates whether there is only one object of this type.[optional] [default to $false]
ExportableBooleanIndicates whether the object can be exported or is just a reference object.[optional] [default to $false]
RulesSpConfigRules[optional]

Examples

  • Prepare the resource
$SpConfigObject = Initialize-PSSailpoint.V2025SpConfigObject  -ObjectType TRIGGER_SUBSCRIPTION `
-ReferenceExtractors [$.owner] `
-SignatureRequired false `
-AlwaysResolveById true `
-LegacyObject false `
-OnePerTenant false `
-Exportable true `
-Rules null
  • Convert the resource to JSON
$SpConfigObject | ConvertTo-JSON

[Back to top]