If you configure any attributes to be in the summary, only those attributes appear in the summary.

You configure an attribute to appear in the summary by using dsconfig to set the include-in-summary property or by using the Administrative Console to select the Include In Summary check box.

  • Given a resource, for each attribute to include in the summary for that resource, configure the attribute.
    • Using dsconfig

      Use the dsconfig set-delegated-admin-attribute-prop subcommand, as explained below.

      $ bin/dsconfig set-delegated-admin-attribute-prop \
        --type-name <name_of_type> \
        --attribute-type <type_of_attribute> \
        --set include-in-summary:true

      where

      <name_of_type> is the resource type.

      <type_of_attribute> is the name of an existing attribute for the given resource.

      For example:
      $ 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 to false.

    • Using the PingDirectory Administrative Console

      1. Sign on to the PingDirectory Administrative Console.
      2. From the Configuration screen, click REST Resource Types.
      3. Edit a type.
      4. Go to the Delegated Admin attributes section.
      5. Edit the attribute and select its Include In Summary check box.

      To remove an attribute from the summary, clear its Include In Summary check box.