Method: JSS::MobileDevice.all_unmanaged

Defined in:
lib/jss/api_object/mobile_device.rb

.all_unmanaged(refresh = false, api: JSS.api) ⇒ Array<Hash>

Returns the list of all unmanaged mobile devices.

Returns:

  • (Array<Hash>)

    the list of all unmanaged mobile devices

[View source]

159
160
161
# File 'lib/jss/api_object/mobile_device.rb', line 159

def self.all_unmanaged(refresh = false, api: JSS.api)
  all(refresh, api: api).reject { |d| d[:managed] }
end