Method: Jamf::Computer.checkin_settings

Defined in:
lib/jamf/api/classic/api_objects/computer.rb

.checkin_settings(api: nil, cnx: Jamf.cnx) ⇒ Hash

Display the current Computer CheckIn settings in the JSS. Currently this is read-only in ruby-jss, even tho the API allows updating.

Parameters:

Returns:

  • (Hash)

    the Computer Checkin Settings from the currently connected JSS.



276
277
278
279
# File 'lib/jamf/api/classic/api_objects/computer.rb', line 276

def self.checkin_settings(api: nil, cnx: Jamf.cnx)
  cnx = api if api
  cnx.c_get(CHECKIN_RSRC)[CHECKIN_KEY]
end