feat: 新增网元操作相关接口

This commit is contained in:
TsMask
2024-03-26 21:01:39 +08:00
parent c2e95f607b
commit 9faf02a1a6
3 changed files with 30 additions and 3 deletions

View File

@@ -88,3 +88,16 @@ export function neHostCheckInfo(data: Record<string, any>) {
data: data,
});
}
/**
* 网元主机SSH方式授权免密发送
* @param data 网元主机对象
* @returns object
*/
export function neHostAuthorizedRSA(data: Record<string, any>) {
return request({
url: '/ne/host/authorizedBySSH',
method: 'post',
data: data,
});
}