Files
developer.sailpoint.com/docs/tools/sdk/powershell/refrence/beta/Models/ReportConfigDTO.md
darrell-thobe-sp 39d2297259 update to doc files
2025-01-24 14:40:05 -05: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
report-config-dto ReportConfigDTO ReportConfigDTO ReportConfigDTO powershellsdk
powershell
PowerShell
sdk
ReportConfigDTO
/tools/sdk/powershell/beta/models/report-config-dto
SDK
Software Development Kit
ReportConfigDTO

ReportConfigDTO

Properties

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

Examples

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

[Back to top]