Skip to main content

ReportConfigDTO

Properties

NameTypeDescriptionNotes
ColumnNameStringName of column in report[optional]
RequiredBooleanIf true, column is required in all reports, and this entry is immutable. A 400 error will result from any attempt to modify the column's definition.[optional] [default to $false]
IncludedBooleanIf true, column is included in the report. A 400 error will be thrown if an attempt is made to set included=false if required==true.[optional] [default to $false]
OrderInt32Relative sort order for the column. Columns will be displayed left-to-right in nondecreasing order.[optional]

Examples

  • Prepare the resource
$ReportConfigDTO = Initialize-PSSailpoint.V2024ReportConfigDTO  -ColumnName SOD Business Name `
-Required true `
-Included false `
-Order 2
  • Convert the resource to JSON
$ReportConfigDTO | ConvertTo-JSON

[Back to top]