Function: |
Adds a new proxy cluster, which contains the specified proxy as master proxy, to the configuration. |
Parameters: |
Name of the new BeanConnect proxy cluster
Proxy that is to be the master proxy of the proxy cluster.
Dictionary with the key-value pairs for the properties that are to be assigned to the proxy cluster. You can find the possible values for key in Properties of a proxy cluster . |
Return: | ( The proxy cluster added to the configuration. |
Exceptions: |
|
Note: | Before you can use the returned object as an input parameter for other functions, you must first perform an authentication (see the function |
Example: | ... import BcAdminProxyCluster import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") clstr_obj=BcAdminProxyCluster.create("BCCluster",proxy_obj) ... |