Requires a configuration ID. Returns all the attributes.
Assume that the previous sample code returned at least one DataSource.
The following will show the values of the attributes of the first DataSource.
Notice that some attributes are references to other configuration elements.
print AdminConfig.show( ds[0] )
showall
This will expand the embedded references to other configuration elements.
The printout can be verbose and difficult to read.
print AdminConfig.showall( ds[0] )
showAttribute
pool = AdminConfig.showAttribute( ds[0], 'connectionPool' )
print AdminConfig.show( pool )