Function: |
Assigns a CICS component (openUTM-LU62 Gateway or communication service) to the specified proxy cluster. |
Parameters: |
Proxy cluster object whose CICS component is to be assigned.
Type of component
openUTM-LU62 Gateway object or communication service object that is to be assigned to the proxy cluster. |
Return: | None |
Exceptions: |
|
Note: | If a CICS component is assigned to a proxy cluster then the CICS component is implicitly assigned to the master proxy and to all other proxies in the cluster to which no CICS component of this type is as yet assigned. All proxies in the cluster to which a CICS component of this type is already explicitly assigned retain this assignment. |
Example: | ... import BcAdminLu62Gateway import BcAdminProxyCluster ... clstr_obj=BcAdminProxyCluster.getObject("BCCluster") gw_props={"host": "bchost01", "install-path": "/opt/lib/utmlu62"} gw_obj=BcAdminLu62Gateway.getObject(gw_props) gw_dicn=BcAdminProxy.setAssignment(clstr_obj, "lu62gateway", gw_obj) ... |