Loading...
Select Version
Function: |
Removes the specified proxy from the proxy cluster and enters it in the list of individual (standalone) proxies. |
Parameters: |
Proxy cluster in which the proxy is to be removed.
Proxy that is to be removed from the cluster. |
Return: | None |
Exceptions: |
|
Note: |
|
Example: | ... import BcAdminProxyCluster import BcAdminProxy ... clstr_obj=BcAdminProxyCluster.getObject("BCCluster") proxy_dicn=BcAdminProxyCluster.getList(clstr_obj, "proxy") proxy_obj=proxy_dicn["BCProxy"] BcAdminProxyCluster.removeProxy(clstr_obj,proxy_obj) ... |