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 service

Function:

BcAdminOutboundService.getProperties()

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

Parameters:

bc_object
(BcObject of type BcObjectType.OUTBOUND_SERVICE)

Outbound service whose properties are to be read.

Return:

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

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminOutboundService
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
os_obj=BcAdminOutboundService.getObject("OSRV",proxy_obj)
os_props=BcAdminOutboundService.getProperties(os_obj)
...