-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #492 from alex-smile/update_esb_apis_0813
ESB 更新 CC 配置类组件
- Loading branch information
Showing
41 changed files
with
1,549 additions
and
1,793 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.12.24 | ||
2.12.25 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 0 additions & 83 deletions
83
paas2/esb/components/confapis/cc/apidocs/en/count_instance_associations.md
This file was deleted.
Oops, something went wrong.
81 changes: 0 additions & 81 deletions
81
paas2/esb/components/confapis/cc/apidocs/en/count_object_instances.md
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
88 changes: 0 additions & 88 deletions
88
paas2/esb/components/confapis/cc/apidocs/en/find_brief_biz_topo_node_relation.md
This file was deleted.
Oops, something went wrong.
93 changes: 93 additions & 0 deletions
93
paas2/esb/components/confapis/cc/apidocs/en/find_host_snapshot_batch.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
### Functional description | ||
|
||
find host snapshot in batch (v3.8.6) | ||
|
||
#### General Parameters | ||
|
||
{{ common_args_desc }} | ||
|
||
### Request Parameters | ||
|
||
| Field | Type | Required | Description | | ||
| ------------------- | ------ | -------- | --------------------- | | ||
| bk_ids | int array | Yes | bk_host_id array,the max length is 200 | | ||
| fields | string array | Yes | host snapshot property list, the specified snapshot property feilds will be returned <br>supported fields: bk_host_id,bk_all_ips| | ||
|
||
### Request Parameters Example | ||
|
||
```json | ||
{ | ||
"bk_ids": [ | ||
1, | ||
2 | ||
], | ||
"fields": [ | ||
"bk_host_id", | ||
"bk_all_ips" | ||
] | ||
} | ||
``` | ||
|
||
### Return Result Example | ||
|
||
```json | ||
{ | ||
"result": true, | ||
"code": 0, | ||
"message": "success", | ||
"data": [ | ||
{ | ||
"bk_all_ips": { | ||
"interface": [ | ||
{ | ||
"addrs": [ | ||
{ | ||
"ip": "192.xx.xx.xx" | ||
}, | ||
{ | ||
"ip": "fe80::xx:xx:xx:xx" | ||
} | ||
], | ||
"mac": "52:xx:xx:xx:xx:xx" | ||
}, | ||
{ | ||
"addrs": [ | ||
{ | ||
"ip": "192.xx.xx.xx" | ||
} | ||
], | ||
"mac": "02:xx:xx:xx:xx:xx" | ||
} | ||
] | ||
}, | ||
"bk_host_id": 1 | ||
}, | ||
{ | ||
"bk_all_ips": { | ||
"interface": [ | ||
{ | ||
"addrs": [ | ||
{ | ||
"ip": "172.xx.xx.xx" | ||
}, | ||
{ | ||
"ip": "fe80::xx:xx:xx:xx" | ||
} | ||
], | ||
"mac": "52:xx:xx:xx:xx:xx" | ||
}, | ||
{ | ||
"addrs": [ | ||
{ | ||
"ip": "192.xx.xx.xx" | ||
} | ||
], | ||
"mac": "02:xx:xx:xx:xx:xx" | ||
} | ||
] | ||
}, | ||
"bk_host_id": 2 | ||
} | ||
] | ||
} | ||
``` |
Oops, something went wrong.