Compare commits

...

2 Commits

Author SHA1 Message Date
bayuzhen 73b0dba61f 处理大屏展示资源使用情况问题 2024-05-30 15:39:19 +08:00
bayuzhen 5071d18c6b 迁移cloudTower监控告警 2024-05-28 18:37:43 +08:00
1 changed files with 7 additions and 0 deletions

View File

@ -2,8 +2,10 @@ package com.bocloud.rpc.interfaces.ims;
import com.bocloud.acd.rpc.anno.RPCService;
import com.bocloud.common.enums.BoCloudService;
import com.bocloud.ims.entity.resource.Server;
import java.util.List;
import java.util.Set;
@RPCService(BoCloudService.IMS)
public interface ImsRpcService {
@ -12,4 +14,9 @@ public interface ImsRpcService {
* BocloudResultBocloudResult
*/
void preemptOrFreeIp(List<String> ipsToPreempt, List<String> ipsToFree) ;
List<Server> getServerByName (List<String> serverNameList, Long vendorId);
List<Server> getServerAll (Set<Long> vendorIds) throws Exception;
}