Searched refs:ret_json (Results 1 - 4 of 4) sorted by relevance
/pkg/src/modules/client/ |
H A D | rad_pkg.py | 106 ret_json = None 110 ret_json = entry._pkg_invoke(subcommand=subcommand, 114 return ret_json 116 if not ret_json: 117 ret_json = {"status": UNANTICIPATED, "errors": [{"reason": 119 return ret_json 416 ret_json = None 421 ret_json = {"status": ERROR, "errors": 424 return ret_json 435 ret_json [all...] |
H A D | client_api.py | 526 ret_json = {"status": status} 530 ret_json["errors"] = [errors] 532 ret_json["errors"] = errors 534 ret_json["data"] = data 538 jsonschema.validate(ret_json, op_schema) 544 ret_json["schema"] = schema 546 return ret_json 1612 ret_json = _set_pub_error_wrap(_add_update_pub, name, [], 1628 if "errors" in ret_json: 1629 for err in ret_json["error [all...] |
/pkg/src/ |
H A D | rad-invoke.py | 120 ret_json = main_func() variable 121 ips_logger.info(json.dumps(ret_json)) 127 sys.exit(ret_json["status"])
|
H A D | client.py | 3050 ret_json = client_api._info(op, api_inst, pargs, display_license, 3053 if "data" in ret_json: 3055 if "licenses" in ret_json["data"]: 3057 elif "package_attrs" in ret_json["data"]: 3060 for i, pis in enumerate(ret_json["data"][data_type]): 3091 if "errors" in ret_json: 3092 _generate_error_messages(ret_json["status"], ret_json["errors"], 3095 return ret_json["status"] 3786 ret_json [all...] |
Completed in 46 milliseconds