Loading...
Select Version
Function: |
Reads all the properties of the specified communication service and returns a dictionary with key-value pairs for the properties. |
Parameters: |
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 |
Exceptions: |
|
Example: | ... import BcAdminCommunicationService ... getProps={"host": "bchost01", "install-path": "/opt/ibm/sna/bin"} cs_obj=BcAdminCommunicationService.getObject(getProps) csProps=BcAdminCommunicationService.getProperties(cs_obj) ... |