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 resource adapter

Function:

BcAdminRa.getProperties()

Reads all the properties of the specified resource adapter and returns a dictionary with key-value pairs for the properties. You can find the possible values for key in Properties of a resource adapter .

Parameters:

bc_object (BcObject of type BcObjectType.RESOURCE_ADAPTER).

Resource adapter whose properties are to be read.

Return:

Dictionary with the key-value pairs for all the properties of the resource adapter.

Exceptions:

BcObjectException, BcToolException

Example:

...
import BcAdminRA
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ra_obj=BcAdminRA.getObject("test-RA", proxy_obj)
raProps=BcAdminRA.getProperties(ra_obj)
...