Function: |
Reads the CICS component (openUTM-LU62 Gateway or communication service) that is assigned to the specified proxy cluster and returns a dictionary containing the element (name, object). |
Parameters: |
Proxy cluster object whose CICS component is to be read.
Type of component |
Return: | Dictionary with one element containing the read component (name and |
Exceptions: |
|
Note: | The relevant component of the master proxy is read. It is possible that other components are assigned to other proxies in this cluster. These can be read using the proxy function |
Example: | ... import BcAdminLu62Gateway import BcAdminProxyCluster ... clstr_obj=BcAdminProxyCluster.getObject("BCCluster") gw_dicn=BcAdminProxyCluster.getAssignment(clstr_obj, "lu62gateway") gw_name=gw_dicn.keys()[0] gw_obj=gw_dicn[gw_name] ... |