# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ARM::Graph module Models # # Server response for Active Directory objects inquiry API calls # class GetObjectsResult include MsRestAzure # @return [Array] Collection of Active Directory object attr_accessor :value # @return [String] the URL to get the next set of results. attr_accessor :odatanext_link # return [Proc] with next page method call. attr_accessor :next_method # # Gets the rest of the items for the request, enabling auto-pagination. # # @return [Array] operation results. # def get_all_items items = @value page = self while page.odatanext_link != nil do page = page.get_next_page items.concat(page.value) end items end # # Gets the next page of results. # # @return [GetObjectsResult] with next page content. # def get_next_page response = @next_method.call(@odatanext_link).value! unless @next_method.nil? unless response.nil? @odatanext_link = response.body.odatanext_link @value = response.body.value self end end # # Mapper for GetObjectsResult class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { required: false, serialized_name: 'GetObjectsResult', type: { name: 'Composite', class_name: 'GetObjectsResult', model_properties: { value: { required: false, serialized_name: 'value', type: { name: 'Sequence', element: { required: false, serialized_name: 'AADObjectElementType', type: { name: 'Composite', class_name: 'AADObject' } } } }, odatanext_link: { required: false, serialized_name: 'odata\\.nextLink', type: { name: 'String' } } } } } end end end end