Method: Azure::DataBoxEdge::Mgmt::V2019_08_01::Models::StorageAccountList#get_all_items
- Defined in:
- lib/2019-08-01/generated/azure_mgmt_databoxedge/models/storage_account_list.rb
#get_all_items ⇒ Array<StorageAccount>
Gets the rest of the items for the request, enabling auto-pagination.
31 32 33 34 35 36 37 38 39 |
# File 'lib/2019-08-01/generated/azure_mgmt_databoxedge/models/storage_account_list.rb', line 31 def get_all_items items = @value page = self while page.next_link != nil && !page.next_link.strip.empty? do page = page.get_next_page items.concat(page.value) end items end |