Package org.jclouds.rds.features

Examples of org.jclouds.rds.features.SubnetGroupApi


   }

   @Override
   protected Function<Object, IterableWithMarker<SubnetGroup>> markerToNextForArg0(Optional<Object> arg0) {
      final String region = arg0.isPresent() ? arg0.get().toString() : null;
      final SubnetGroupApi subnetGroupApi = api.getSubnetGroupApiForRegion(region);
      return new Function<Object, IterableWithMarker<SubnetGroup>>() {

         @Override
         public IterableWithMarker<SubnetGroup> apply(Object input) {
            return subnetGroupApi.list(ListSubnetGroupsOptions.Builder.afterMarker(input));
         }

         @Override
         public String toString() {
            return "listSubnetGroupsInRegion(" + region + ")";
View Full Code Here


   }

   @Override
   protected Function<Object, IterableWithMarker<SubnetGroup>> markerToNextForArg0(Optional<Object> arg0) {
      final String region = arg0.isPresent() ? arg0.get().toString() : null;
      final SubnetGroupApi subnetGroupApi = api.getSubnetGroupApiForRegion(region);
      return new Function<Object, IterableWithMarker<SubnetGroup>>() {

         @Override
         public IterableWithMarker<SubnetGroup> apply(Object input) {
            return subnetGroupApi.list(ListSubnetGroupsOptions.Builder.afterMarker(input));
         }

         @Override
         public String toString() {
            return "listSubnetGroupsInRegion(" + region + ")";
View Full Code Here

TOP

Related Classes of org.jclouds.rds.features.SubnetGroupApi

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.