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

Function:

BcAdminCommunicationService.remove()

Removes the specified communication service from the configuration

Parameters:

bc_object (BcObject of type BcObjectType.COMMUNICATION_SERVICE).

The communication service that is to be removed.

Return:

None

Exceptions:

BcObjectException, BcToolException

Example:

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