|
@@ -7,6 +7,7 @@ const devopsApi = {
|
|
|
eraseBuildDir: '/api/devops/build/dir/erase',
|
|
eraseBuildDir: '/api/devops/build/dir/erase',
|
|
|
getMachineList: '/api/devops/machine/host',
|
|
getMachineList: '/api/devops/machine/host',
|
|
|
getAliyunKeyList: '/api/devops/machine/aliyun/key',
|
|
getAliyunKeyList: '/api/devops/machine/aliyun/key',
|
|
|
|
|
+ getMachineProcList: '/api/devops/machine/proc',
|
|
|
getEnvList: '/api/devops/envs',
|
|
getEnvList: '/api/devops/envs',
|
|
|
getAppTypeList: '/api/devops/app_types',
|
|
getAppTypeList: '/api/devops/app_types',
|
|
|
getCompilerList: '/api/devops/build/compiler',
|
|
getCompilerList: '/api/devops/build/compiler',
|
|
@@ -80,6 +81,10 @@ export function getAliyunKeyList() {
|
|
|
return get(devopsApi.getAliyunKeyList)
|
|
return get(devopsApi.getAliyunKeyList)
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+export function getMachineProcList(queryInfo) {
|
|
|
|
|
+ return get(devopsApi.getMachineProcList, queryInfo)
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
export function getEnvList() {
|
|
export function getEnvList() {
|
|
|
return get(devopsApi.getEnvList)
|
|
return get(devopsApi.getEnvList)
|
|
|
}
|
|
}
|