@Override public NetworkInterfaceCollection getNetworkInterfaces( DescribeNetworkInterfacesRequest request) { ResourceCollectionImpl result = resource.getCollection("NetworkInterfaces", request); if (result == null) return null; return new NetworkInterfaceCollectionImpl(result); }
@Override public NetworkInterfaceCollection getNetworkInterfaces( DescribeNetworkInterfacesRequest request) { ResourceCollectionImpl result = service.getCollection("NetworkInterfaces", request); if (result == null) return null; return new NetworkInterfaceCollectionImpl(result); }
@Override public List<AbstractResource<?>> describeNetworkInterfaces(Account account, Region region, DateTime dt, Ec2Filter... filters) { AmazonEC2 ec2 = findClient(account, region); DescribeNetworkInterfacesRequest req = new DescribeNetworkInterfacesRequest(); for (Ec2Filter filter : filters) { Filter f = new Filter().withName(filter.getName()).withValues(filter.getValues()); req.withFilters(f); } log.debug("start describing network interfaces for account:{} in region:{} via api", account.getId() + "=>" + account.getName(), region); DescribeNetworkInterfacesResult res = ec2.describeNetworkInterfaces(req); return converter.toEc2NetworkInterfaces(res.getNetworkInterfaces(), account.getId(), region, dt); }
@Override public DescribeNetworkInterfacesResult describeNetworkInterfaces(DescribeNetworkInterfacesRequest describeNetworkInterfacesRequest) throws AmazonServiceException, AmazonClientException { throw new UnsupportedOperationException("Not supported in mock"); }
@Override public boolean load(DescribeNetworkInterfacesRequest request) { return load(request, null); }
@Override public boolean load(DescribeNetworkInterfacesRequest request, ResultCapture<DescribeNetworkInterfacesResult> extractor) { return resource.load(request, extractor); }
@Override public NetworkInterfaceCollection getNetworkInterfaces() { return getNetworkInterfaces((DescribeNetworkInterfacesRequest)null); }
/** * Retrieves the NetworkInterfaces collection referenced by this resource. */ NetworkInterfaceCollection getNetworkInterfaces( DescribeNetworkInterfacesRequest request);
/** * Makes a call to the service to load this resource's attributes if they * are not loaded yet. * The following request parameters will be populated from the data of this * <code>NetworkInterface</code> resource, and any conflicting parameter * value set in the request will be overridden: * <ul> * <li> * <b><code>NetworkInterfaceIds.0</code></b> * - mapped from the <code>Id</code> identifier. * </li> * </ul> * * <p> * * @return Returns {@code true} if the resource is not yet loaded when this * method was invoked, which indicates that a service call has been * made to retrieve the attributes. * @see DescribeNetworkInterfacesRequest */ boolean load(DescribeNetworkInterfacesRequest request);
/** * Makes a call to the service to load this resource's attributes if they * are not loaded yet, and use a ResultCapture to retrieve the low-level * client response * The following request parameters will be populated from the data of this * <code>NetworkInterface</code> resource, and any conflicting parameter * value set in the request will be overridden: * <ul> * <li> * <b><code>NetworkInterfaceIds.0</code></b> * - mapped from the <code>Id</code> identifier. * </li> * </ul> * * <p> * * @return Returns {@code true} if the resource is not yet loaded when this * method was invoked, which indicates that a service call has been * made to retrieve the attributes. * @see DescribeNetworkInterfacesRequest */ boolean load(DescribeNetworkInterfacesRequest request, ResultCapture<DescribeNetworkInterfacesResult> extractor);