Configuring a resource’s summary display in the Delegated Admin GUI
The Delegated Admin GUI provides a summary of attributes for a resource. For example, the user and group resource profiles show a summary.
About this task
By default, a resource’s summary shows all required attributes and all search attributes for the resource. However, you can explicitly set the items to include in the summary.
If you configure any attributes to appear in the summary, the default selection does not appear.
To configure an attribute to appear in the summary, either use dsconfig
to set the include-in-summary
property or use the PingDirectory administrative console to select the Include In Summary check box.
Steps
-
For a given resource, configure each attribute to include in the summary.
Choose from:
-
Use
dsconfig
.Use the
set-delegated-admin-attribute-prop
subcommand, where <name_of_type> is the resource type and <type_of_attribute> is the name of an existing attribute for the given resource.$ bin/dsconfig set-delegated-admin-attribute-prop \ --type-name <name_of_type> \ --attribute-type <type_of_attribute> \ --set include-in-summary:true
The following example includes the
cn
attribute in the summary for theusers
resource type:$ bin/dsconfig set-delegated-admin-attribute-prop \ --type-name users \ --attribute-type cn \ --set include-in-summary:true
To remove an attribute from the summary, use the same command but change
true
tofalse
. -
Use the PingDirectory administrative console.
-
Sign on to the PingDirectory administrative console.
-
From the Configuration page, click REST Resource Types.
-
To edit a resource type, select it from the Name column.
-
Go to the Delegated Admin Attributes section.
-
To edit an attribute, click the Pencil icon.
-
Select the Include In Summary check box.
To remove an attribute from the summary, clear its Include In Summary check box.
-
-