Loading...
Select Version
Function: |
Sets another proxy as the master proxy of the proxy cluster. |
Parameters: |
Proxy cluster in which the proxy is to become the new master proxy.
Proxy that is to be the new master proxy of the proxy cluster. |
Return: | None |
Exceptions: |
|
Example: | ... import BcAdminProxyCluster import BcAdminProxy ... clstr_obj=BcAdminProxyCluster.getObject("BCCluster") proxy_dicn=BcAdminProxyCluster.getList(clstr_obj, "proxy") new_mproxy_obj=proxy_dicn["BCProxy"] BcAdminProxyCluster.setMasterProxy(clstr_obj, new_mproxy_obj) ... |