Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
csst-dfs
csst-dfs-client
Commits
be8cb11e
Commit
be8cb11e
authored
Jan 01, 2025
by
Wei Shoulin
Browse files
by id
parent
11f21237
Pipeline
#7664
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
csst_dfs_client/plan.py
View file @
be8cb11e
...
...
@@ -46,8 +46,18 @@ def find(mode: Optional[str] = None,
return
request
.
post
(
"/api/plan"
,
params
)
def
get_by_id
(
_id
:
str
)
->
Result
:
return
request
.
get
(
f
"/api/plan/_id/
{
_id
}
"
)
def
get_by_id
(
_id
:
int
)
->
Result
:
"""
通过计划ID获取编排数据。
Args:
_id (int): 计划ID。
Returns:
Result: 查询结果。
"""
return
request
.
get
(
f
"/api/plan/id/
{
_id
}
"
)
def
find_by_opid
(
opid
:
str
)
->
Result
:
"""
...
...
@@ -85,7 +95,7 @@ def new(data: dict) -> Result:
新建编排数据
Args:
data (dict): 编排数据的字典表示,如:{'opid': 'xxx', 'backend': 'MSC', ...}
data (dict): 编排数据的字典表示,如:{
'id': 394,
'opid': 'xxx', 'backend': 'MSC', ...}
Returns:
Result: 成功后,Result.data为写入记录,失败message为失败原因。
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment