Function: |
Returns a dictionary that contains the results of all check proxy container subactions of the specified type. |
Parameters: |
The result of a
Type of check, possible specifications are: BcDef.ACTION_CHECK_ADM BcDef.ACTION_CHECK_AVAIL object_type Object type for which the check actions are to be read; the following specifications are possible: BcObjectType.COMMUNICATION_SERVICE.toString() BcObjectType.LU62GATEWAY.toString() BcObjectType.PROXY.toString() (Default) BcObjectType.RESOURCE_ADAPTER.toString() |
Return: | Dictionary with key-value pairs consisting of the proxy name and check result (value= |
Exceptions: |
|
Note: | This function returns a selection of the results of the function
where |
Example: | ... import BcAdminAction import BcAdminProxy ... proxy_obj=BcAdminProxy.getObject("BCProxy") bcaction=BcAdminProxy.perform(proxy_obj,action="check-avail") checkProxy=BcAdminAction.getCheckResults(bcaction,\ BcDef.ACTION_CHECK_AVAIL) ... |