111112113114115116117118
return wrap(context, ExternalIp.class, ips.toPagedIterable().concat()); } @Override public ExternalIp getIp(final Integer id) { ExternalIpDto ip = context.getApi().getInfrastructureApi().getExternalIp(target, id); return wrap(context, ExternalIp.class, ip); }
9293949596979899100101102
pubNic = new PublicIpDto(); pubNic.setIp("80.80.80.80"); pubNic.setMac("2a:6e:40:69:84:e1"); extNic = new ExternalIpDto(); extNic.setIp("10.10.10.10"); extNic.setMac("2a:6e:40:69:84:e2"); hardware = new HardwareBuilder() // .ids("1") //
90919293949596979899100
109110111112113114115116
110111112113114115116117
return wrap(context, ExternalIp.class, ips.getCollection()); } @Override public ExternalIp getIp(final Integer id) { ExternalIpDto ip = context.getApi().getInfrastructureApi().getExternalIp(target, id); return wrap(context, ExternalIp.class, ip); }