Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/ReportConfigDTO.md
2025-05-07 14:37:48 +00:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-report-config-dto ReportConfigDTO ReportConfigDTO ReportConfigDTO powershellsdk
powershell
PowerShell
sdk
ReportConfigDTO
V2024ReportConfigDTO
/tools/sdk/powershell/v2024/models/report-config-dto
SDK
Software Development Kit
ReportConfigDTO
V2024ReportConfigDTO

ReportConfigDTO

Properties

Name Type Description Notes
ColumnName String Name of column in report [optional]
Required Boolean If 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]
Included Boolean If 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]
Order Int32 Relative sort order for the column. Columns will be displayed left-to-right in nondecreasing order. [optional]

Examples

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

[Back to top]