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 an outbound communication endpoint

Function:

BcAdminOutboundCommEndpoint.getProperties()

Reads all the properties of the specified outbound communication endpoint and returns a dictionary with key-value pairs for the properties.

Parameters:

bc_object (BcObject of type BcObjectType.OUTBOUND_COMM_ENDPOINT)

The outbound communication endpoint whose properties are to be read.

Return:

Dictionary with key-value pairs for the properties of the outbound communication endpoint. You can find the possible values for key in Properties of an outbound communication endpoint .

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminOutboundCommEndpoint
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ce_obj=BcAdminOutboundCommEndpoint.getObject("CEND",proxy_obj)
ceProps=BcAdminOutboundCommEndpoint.getProperties(ce_obj)
...