Your Browser is not longer supported

Please use Google Chrome, Mozilla Firefox or Microsoft Edge to view the page correctly
Loading...

{{viewport.spaceProperty.prod}}

modifyProperties() - Modify properties of a resource adapter

Function:

BcAdminRa.modifyProperties()

Modifies all the properties of the specified resource adapter that are present in the specified dictionary.

Parameters:

bc_object (BcObject of type BcObjectType.RESOURCE_ADAPTER).

Resource adapter whose properties are to be modified.

props

Dictionary with the key-value pairs for the properties that are to be modified. For possible values of key, see Properties of a resource adapter

Return:

None

Exceptions:

BcObjectException, BcParameterException, BcToolException

Example:

...
import BcAdminRA
import BcAdminProxy
...
proxy_obj=BcAdminProxy.getObject("BCProxy")
ra_obj=BcAdminRA.getObject("test-RA", proxy_obj)
modProps={"desc":"modified"}
BcAdminRA.modifyProperties(ra_obj,modProps)
...