Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

addProxy() - Add proxy to the proxy cluster

Function:

BcAdminProxyCluster.addProxy()

Add a standalone proxy to the specified cluster.

Parameters:

bc_object (BcObject of type BcObjectType.PROXY_CLUSTER).

Proxy cluster that is to be extended.

proxy_object (BcObject of type BcObjectType.PROXY).

Proxy that is to be added to the cluster.

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminProxyCluster
import BcAdminProxy
...
clstr_obj=BcAdminProxyCluster.getObject("BCCluster")
proxy_obj=BcAdminProxy.getObject("BCProxy")
proxyList=BcAdminProxyCluster.addProxy(clstr_obj,proxy_obj)
...