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() - Proxy zum Proxy Cluster hinzufügen

&pagelevel(5)&pagelevel

Funktion:

BcAdminProxyCluster.addProxy()

Dem angegebenen Cluster einen stand-alone Proxy hinzufügen.

Parameter:

bc_object
(BcObject vom Typ BcObjectType.PROXY_CLUSTER).

Proxy Cluster, der erweitert werden soll.

proxy_object
(BcObject vom Typ BcObjectType.PROXY).

Proxy, der zum Cluster hinzugefügt werden soll.

Rückgabe:

Keine

Exceptions:

ObjectException, BcParameterException BcToolException

Beispiel:

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