WAS v8.5 > Script the application serving environment (wsadmin) > Use the wsadmin scripting AdminConfig object for scripted administration

List attributes of configuration objects using wsadmin.sh

We can use scripting to generate a list of attributes of configuration objects.

Before starting this task, wsadmin must be running. See the topic on starting wsadmin. Run an AdminConfig command to create a list of attributes of configuration objects.

  1. List the attributes of a given configuration object type, using the attributes command, for example:

    • Jacl:

        $AdminConfig attributes type
    • Jython:

        AdminConfig.attributes('type')

    AdminConfig attributes command description. Run the attributes command from a wsadmin command line.

    Element Description
    $ is a Jacl operator for substituting a variable name with its value
    AdminConfig is an object that represents the product configuration
    attributes is an AdminConfig command
    type is an object type
    This command returns a list of attributes and its data type.

    To get a list of attributes for the JDBCProvider type command:

    • Jacl:

        $AdminConfig attributes JDBCProvider
    • Jython:

        AdminConfig.attributes('JDBCProvider')

  2. List the required attributes of a given configuration object type, using the required command, for example:

    • Jacl:

        $AdminConfig required type
    • Jython:

        AdminConfig.required('type')

    AdminConfig required command description. Run the command from a wsadmin command line.

    Element Description
    $ is a Jacl operator for substituting a variable name with its value
    AdminConfig is an object that represents the product configuration
    required is an AdminConfig command
    type is an object type
    This command returns a list of required attributes.

    To get a list of required attributes for the JDBCProvider type command:

    • Jacl:

        $AdminConfig required JDBCProvider
    • Jython:

        AdminConfig.required('JDBCProvider')

  3. List attributes with defaults of a given configuration object type, using the defaults command, for example:

    • Jacl:

        $AdminConfig defaults type
    • Jython:

        AdminConfig.defaults('type')

    AdminConfig defaults command description. Run the command from a wsadmin command line.

    Element Description
    $ is a Jacl operator for substituting a variable name with its value
    AdminConfig is an object that represents the product configuration
    defaults is an AdminConfig command
    type is an object type
    This command returns a list of all the attributes, types, and defaults.

    To get a list of attributes with the defaults displayed for the JDBCProvider type command:

    • Jacl:

        $AdminConfig defaults JDBCProvider
    • Jython:

        AdminConfig.defaults('JDBCProvider')


Related


Start the wsadmin scripting client using wsadmin.sh
Use the wsadmin scripting AdminConfig object for scripted administration


Reference:

Commands for the AdminConfig object using wsadmin.sh


+

Search Tips   |   Advanced Search