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 EIS partner

&pagelevel(5)&pagelevel

Function:

BcAdminEisPartner.getProperties()

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

Parameters:

bc_object (BcObject of type BcObjectType.EIS_PARTNER)

EIS partner whose properties are to be read.

Return:

Dictionary with the key-value pairs for all the properties of the EIS partner. You can find the possible values for key in Properties of an EIS partner. In the case of EIS partners with the property type="cics", no properties with the prefix "utm." are output.

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminEisPartner
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
eis_obj=BcAdminEisPartner.getObject("testEIS",proxy_obj)
eisProps=BcAdminEisPartner.getProperties(eis_obj)
...