Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

getProperties() - Read properties of a proxy cluster

Function:

BcAdminProxyCluster.getProperties()

Reads all the properties of the specified proxy cluster and returns a dictionary with key-value pairs for the properties. You can find the possible values for key in Properties of a proxy cluster .

Parameters:

bc_object (BcObject of type BcObjectType.PROXY_CLUSTER).

Proxy cluster whose properties are to be read.

Return:

Dictionary with the key-value pairs for all the properties of the proxy cluster.

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminProxyCluster
...
clstr_obj=BcAdminProxyCluster.getObject("BCCluster")
clusterProps=BcAdminProxyCluster.getProperties(clstr_obj)
...