Skip to main content

ConfigType

Properties

NameTypeDescriptionNotes
PriorityInt32[optional]
InternalNameConfigTypeEnumCamel[optional]
InternalNameCamelConfigTypeEnum[optional]
DisplayNameStringHuman readable display name of the type to be shown on UI[optional]
DescriptionStringDescription of the type of work to be reassigned, displayed by the UI.[optional]

Examples

  • Prepare the resource
$ConfigType = Initialize-PSSailpoint.BetaConfigType  -Priority 1 `
-InternalName null `
-InternalNameCamel null `
-DisplayName Access Requests `
-Description Reassign Access Request Work Items for an identity
  • Convert the resource to JSON
$ConfigType | ConvertTo-JSON

[Back to top]