12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- from typing import Any, Dict, List
- from api.riil.utils import call_api
- class ResClientApi:
- def get_instances(self, tree_node_id: str, res_type_id: str) -> Dict[str, Any]:
- """
- 根据资源树节点ID和资源类型ID获取主资源列表。
- :param tree_node_id: 资源树节点ID, 可通过/res/client/getResTypes4Json接口获得
- :param res_type_id: 资源类型ID, 可通过/res/client/getResTypes4Json接口获得
- :return: 主资源列表
- """
- url = f"/res/client/getInstances/{tree_node_id}/{res_type_id}"
- return call_api(url, method="GET")
- def get_metrics(self, res_type_id: str) -> Dict[str, Any]:
- """
- 根据资源类型ID获取该资源类型下的所有性能指标定义。
- :param res_type_id: 资源类型ID,可通过/res/client/getResTypes4Json接口获得
- :return: 指标列表
- """
- url = f"/res/client/getMetrics/{res_type_id}"
- return call_api(url, method="GET")
- def get_res_protocols(self, res_ids: str) -> Dict[str, Any]:
- """
- 根据资源ID列表获取资源的链接信息。
- :param res_ids: 资源ID,多个ID用逗号隔开
- :return: 资源连接信息结果对象
- """
- url = f"/res/client/getResProtocols"
- params = {"resIds": res_ids}
- return call_api(url, method="POST", params=params)
- def get_res_types(self) -> Dict[str, Any]:
- """
- 获取资源类型列表。
- :return: 资源模板列表
- """
- return call_api("/res/client/getResTypes4Json", method="POST")
- def get_sub_res_instances(self, tree_node_id: str, sub_res_type_id: str) -> Dict[str, Any]:
- """
- 根据资源树节点ID和子资源类型ID获取子资源列表。
- :param tree_node_id: 主资源树节点ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得
- :param sub_res_type_id: 子资源类型ID,可通过/res/client/getSubResTypes/{resTypeId}接口获得
- :return: 子资源列表
- """
- url = f"/res/client/getSubResInstances4Json/{tree_node_id}/{sub_res_type_id}"
- return call_api(url, method="GET")
- def get_sub_res_types(self, res_type_id: str) -> Dict[str, Any]:
- """
- 根据资源类型ID获取子资源类型定义。
- :param res_type_id: 资源类型ID,可通过/res/client/getResTypes4Json接口获得
- :return: 子模板列表
- """
- url = f"/res/client/getSubResTypes/{res_type_id}"
- return call_api(url, method="GET")
- def get_res_type_number(self, res_type_ids: List[str]) -> Dict[str, Any]:
- """
- 通过主资源类型ID获取资源数量。
- :param res_type_ids: 资源类型ID列表,可通过/res/client/getResTypes4Json接口获得;填写"ALL"获取所有资源数量总和
- :return: 资源数量
- """
- params = {"resTypeIds": ",".join(res_type_ids)}
- return call_api("/res/client/resTypeNumber", method="GET", params=params)
|