res_client.py 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. from typing import Any, Dict, List
  2. from api.riil.utils import call_api
  3. class ResClientApi:
  4. def get_instances(self, tree_node_id: str, res_type_id: str) -> Dict[str, Any]:
  5. """
  6. 根据资源树节点ID和资源类型ID获取主资源列表。
  7. :param tree_node_id: 资源树节点ID, 可通过/res/client/getResTypes4Json接口获得
  8. :param res_type_id: 资源类型ID, 可通过/res/client/getResTypes4Json接口获得
  9. :return: 主资源列表
  10. """
  11. url = f"/res/client/getInstances/{tree_node_id}/{res_type_id}"
  12. return call_api(url, method="GET")
  13. def get_metrics(self, res_type_id: str) -> Dict[str, Any]:
  14. """
  15. 根据资源类型ID获取该资源类型下的所有性能指标定义。
  16. :param res_type_id: 资源类型ID,可通过/res/client/getResTypes4Json接口获得
  17. :return: 指标列表
  18. """
  19. url = f"/res/client/getMetrics/{res_type_id}"
  20. return call_api(url, method="GET")
  21. def get_res_protocols(self, res_ids: str) -> Dict[str, Any]:
  22. """
  23. 根据资源ID列表获取资源的链接信息。
  24. :param res_ids: 资源ID,多个ID用逗号隔开
  25. :return: 资源连接信息结果对象
  26. """
  27. url = f"/res/client/getResProtocols"
  28. params = {"resIds": res_ids}
  29. return call_api(url, method="POST", params=params)
  30. def get_res_types(self) -> Dict[str, Any]:
  31. """
  32. 获取资源类型列表。
  33. :return: 资源模板列表
  34. """
  35. return call_api("/res/client/getResTypes4Json", method="POST")
  36. def get_sub_res_instances(self, tree_node_id: str, sub_res_type_id: str) -> Dict[str, Any]:
  37. """
  38. 根据资源树节点ID和子资源类型ID获取子资源列表。
  39. :param tree_node_id: 主资源树节点ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得
  40. :param sub_res_type_id: 子资源类型ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得
  41. :return: 子资源列表
  42. """
  43. url = f"/res/client/getSubResInstances4Json/{tree_node_id}/{sub_res_type_id}"
  44. return call_api(url, method="GET")
  45. def get_sub_res_types(self, res_type_id: str) -> Dict[str, Any]:
  46. """
  47. 根据资源类型ID获取子资源类型定义。
  48. :param res_type_id: 资源类型ID,可通过/res/client/getResTypes4Json接口获得
  49. :return: 子模板列表
  50. """
  51. url = f"/res/client/getSubResTypes/{res_type_id}"
  52. return call_api(url, method="GET")
  53. def get_res_type_number(self, res_type_ids: List[str]) -> Dict[str, Any]:
  54. """
  55. 通过主资源类型ID获取资源数量。
  56. :param res_type_ids: 资源类型ID列表,可通过/res/client/getResTypes4Json接口获得;填写"ALL"获取所有资源数量总和
  57. :return: 资源数量
  58. """
  59. params = {"resTypeIds": ",".join(res_type_ids)}
  60. return call_api("/res/client/resTypeNumber", method="GET", params=params)