Commit be8cb11e authored by Wei Shoulin's avatar Wei Shoulin
Browse files

by id

parent 11f21237
Pipeline #7664 canceled with stages
...@@ -46,8 +46,18 @@ def find(mode: Optional[str] = None, ...@@ -46,8 +46,18 @@ def find(mode: Optional[str] = None,
return request.post("/api/plan", params) return request.post("/api/plan", params)
def get_by_id(_id: str) -> Result: def get_by_id(_id: int) -> Result:
return request.get(f"/api/plan/_id/{_id}") """
通过计划ID获取编排数据。
Args:
_id (int): 计划ID。
Returns:
Result: 查询结果。
"""
return request.get(f"/api/plan/id/{_id}")
def find_by_opid(opid: str) -> Result: def find_by_opid(opid: str) -> Result:
""" """
...@@ -85,7 +95,7 @@ def new(data: dict) -> Result: ...@@ -85,7 +95,7 @@ def new(data: dict) -> Result:
新建编排数据 新建编排数据
Args: Args:
data (dict): 编排数据的字典表示,如:{'opid': 'xxx', 'backend': 'MSC', ...} data (dict): 编排数据的字典表示,如:{'id': 394, 'opid': 'xxx', 'backend': 'MSC', ...}
Returns: Returns:
Result: 成功后,Result.data为写入记录,失败message为失败原因。 Result: 成功后,Result.data为写入记录,失败message为失败原因。
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment