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 communication service

Function:

BcAdminCommunicationService.getProperties()

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

Parameters:

bc_object (BcObject of type BcObjectType.COMMUNICATION_SERVICE)

Communication service whose properties are to be read.

Return:

Dictionary with the key-value pairs for all the properties of the communication service. You can find the possible values for key in Properties of a communication service .

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminCommunicationService
...
getProps={"host": "bchost01", "install-path": "/opt/ibm/sna/bin"} 
cs_obj=BcAdminCommunicationService.getObject(getProps) 
csProps=BcAdminCommunicationService.getProperties(cs_obj)
...