Function: |
Reads the names of all the objects of a type from the current BeanConnect configuration and returns a dictionary with names and objects. | |
Parameters: |
Type of object of which a list of all objects defined in the current configuration is to be created. You can make the following specifications for | |
String | or the value of one of the following | |
|
| |
|
| |
|
| |
|
| |
|
| |
Return: | Dictionary with all the objects of the specified type and the associated names as key. | |
Exceptions: |
| |
Example: | ... import BcAdminMain ... ''' get list of all proxys configured ''' bcproxys=BcAdminMain.getList("proxy") ... |
The list of proxies (list_type= "proxy"
) contains only individual (stand-alone) proxies, i.e. no proxies that belong to a proxy cluster. You can read the proxies that are present in a proxy cluster using the function getList()
in the module BcAdminProxyCluster
.