@Override
 public PagedList<GenericResource> listByTag(
     String resourceGroupName, String tagName, String tagValue) {
   return wrapList(
       this.serviceClient
           .resourceGroups()
           .listResources(
               resourceGroupName, Utils.createOdataFilterForTags(tagName, tagValue), null, null));
 }
예제 #2
0
 @Override
 public int limit() {
   return Utils.toPrimitiveInt(inner().limit());
 }
예제 #3
0
 @Override
 public int currentValue() {
   return Utils.toPrimitiveInt(inner().currentValue());
 }