Skip to content

Commit

Permalink
Merge pull request #78 from kukinghan/main
Browse files Browse the repository at this point in the history
删除实例返回的是被删除的uuid列表
  • Loading branch information
yumao233 authored Dec 22, 2024
2 parents 9dbf509 + 129efb4 commit ff3eaa1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions apis/api_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ The parameters here are **URL Query parameters**, which are presented in JSON fo
```json
{
"uuids": [
"50c73059001b436fa85c0d8221c157cf"
"50c73059001b436fa85c0d8221c157cf",
"11c2f4c89b9e4e1da819dc56bf16f151"
], // Instance Id
"deleteFile": false // Delete instance files
Expand All @@ -160,7 +160,10 @@ The parameters here are **URL Query parameters**, which are presented in JSON fo
```json
{
"status": 200,
"data": true,
"data": [
"50c73059001b436fa85c0d8221c157cf",
"11c2f4c89b9e4e1da819dc56bf16f151"
], // Instance Id
"time": 1718594177859
}
```
Expand Down
7 changes: 5 additions & 2 deletions zh_cn/apis/api_instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ DELETE /api/instance
```json
{
"uuids": [
"50c73059001b436fa85c0d8221c157cf"
"50c73059001b436fa85c0d8221c157cf",
"11c2f4c89b9e4e1da819dc56bf16f151"
], // Instance Id
"deleteFile": false // 是否删除实例文件
Expand All @@ -154,7 +154,10 @@ DELETE /api/instance
```json
{
"status": 200,
"data": true,
"data": [
"50c73059001b436fa85c0d8221c157cf",
"11c2f4c89b9e4e1da819dc56bf16f151"
], // Instance Id
"time": 1718594177859
}
```
Expand Down

0 comments on commit ff3eaa1

Please sign in to comment.