1
0
This commit is contained in:
2023-09-20 11:20:29 +08:00
parent ed90a56e0f
commit d865ae645c

View File

@@ -552,6 +552,60 @@
}
```
### 3.5 网元启动/停止/服务重启
* URI
```uri
/api/rest/systemManagement/v1/elementType/{elementTypeValue}/objectType/service/{action}?neId={neId}
```
* Relations
OMC FE -> OMC BE -> NF
* Params
OMC-FE -> OMC-BE, neId={neId}, 指定NF的neId
* Method
POST
* Body
```json
type NeService struct {
Action string `json:"action"` // 动作, start/restart/stop
}
```
### 3.6 机器开机/重启/关机
* URI
```uri
/api/rest/systemManagement/v1/elementType/{elementTypeValue}/objectType/instance/{action}?neId={neId}
```
* Relations
OMC FE -> OMC BE -> NF
* Params
OMC-FE -> OMC-BE, neId={neId}, 指定NF的neId
* Method
POST
* Body
```json
type NeInstance struct {
Action string `json:"action"` // 动作, start/restart/stop
}
```
## 4 性能管理
### 4.1 任务管理