Your Browser is not longer supported

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

{{viewport.spaceProperty.prod}}

remove() - Remove outbound communication endpoint

Function:

BcAdminOutboundCommEndpoint.remove()

Removes the specified outbound communication endpoint from the configuration.

Parameters:

bc_object (BcObject of type BcObjectType.OUTBOUND_COMM_ENDPOINT)

The outbound communication endpoint that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcToolException

Example:

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