class DLDInternet::DOctl::API::Compute::Domain::List

Public Instance Methods

GetDomainList() click to toggle source

noinspection RubyUnnecessaryReturnValue

# File lib/dldinternet/doctl/api/compute/domain/list.rb, line 11
def GetDomainList()
  list = []
  client.domains.all().each do |page|
    list << page
  end
  list
end