class AliyunSDK::OSS::Iterator::Buckets

Buckets iterator

Public Instance Methods

fetch(more) click to toggle source
# File lib/aliyun_sdk/oss/iterator.rb, line 47
def fetch(more)
  @results, cont = @protocol.list_buckets(more)
  @more[:marker] = cont[:next_marker]
  @more[:truncated] = cont[:truncated] || false
end