Loading...
Select Version
&pagelevel(5)&pagelevel
Function: |
Modifies the logical unit name of the EIS partner or a list of logical unit names for one or more proxies in the cluster if the EIS partner is defined in the cluster. |
Parameters: |
EIS partner whose logical unit name is to be modified.
Dictionary with one element, or multiple elements in the case of a proxy cluster, where key (String) is the name of the proxy and value (String) is the associated logical unit name. |
Return: | None |
Exceptions: |
|
Note: |
|
Example: | ...
import BcAdminEisPartner import BcAdminProxy
...
proxy_name="BCProxy"
proxy_obj=BcAdminProxy.getObject(proxy_name)
eis_obj=BcAdminEisPartner.getObject("testEIS",proxy_obj)
luname_dicn={proxy_name, "CIC31"}
BcAdminEisPartner.modifyLuNames(eis_obj, luname_dicn)
...
|