Class: JSS::Computer
- Extended by:
- Matchable
- Includes:
- Creatable, Extendable, Locatable, MDM, ManagementHistory, Purchasable, Sitable, Updatable, Uploadable
- Defined in:
- lib/jss/api_object/computer.rb,
lib/jss.rb,
lib/jss/api_object/computer/application_installs.rb more...
Overview
This class represents a Computer in the JSS.
Adding Computers to the JSS
At the moment, this class cannot be used to add new Computers to the JSS. Please use other methods (like the Recon App or QuickAdd package)
Editing values
Any data that arrives in the JSS via an “inventory update” (a.k.a. ‘recon’) cannot be modified through this class, or the API.
Data that can be modified are:
-
Management Account (see #set_management_to)
-
asset_tag
-
barcodes 1 and 2
-
ip_address
-
udid
-
mac_address & alt_mac_address
-
serial_number Note: Even tho the webUI doesn’t allow editing the serial_number, the API does, and it can be useful for dealing with duplicates that arise when a logic-board swap causes a new computer record. to be created.
-
location data via the Locatable module
-
purchasing data via the Purchasable module
-
Extension Attribute values via the Extendable module Note: as with other ‘recon’ generated values, Ext. Attrs. populated by scripts cannot be modified via the API. (the change would be overwritten the next time the machine did a recon)
After making any changes, you must call #update to send those changes to the server.
MDM Commands
See the MDM mixin module for Class and Instance methods for sending MDM commands to computers.
To send MDM commands without fetching Computer instances, use the class methods, which can take multiple computer identifiers at once.
NOTE: the poorly named ‘UnmanageDevice’ mdm command is implemented as MDM#remove_mdm_profile (which is its name in the webUI) as well as MDM#unmanage_device. Calling that method will NOT fully unmanage a computer from the JSS’s point of view, it will just remove the mdm management profile from the machine and all configuration profiles that were installed via the JSS. Those profiles may be re-installed automatically later if the computer is still in scope for them
To properly unmanage a computer, use the #make_unmanaged Instance method which removes the mdm profile, but also makes the machine unmanged by the JSS, setting the management acct to nil, and requring re-enrollment.
Management History & Logs
Computer Management History and logs can now be retrieved both from a Computer instance, and directly via class methods without fetching an instance. This is handled by the mixed-in ManagementHistory module, Q.V. for details.
Appication Usage History
Computer Instances now have access to their Application Usage history via the #application_usage method. Call the method with a start-date value (either a String or a Time object) and an optional end-date value. If you omite the end-date, the start-date is used and you’ll see usage for just that day.
See #application_usage for details about the data returned.
NOTE: your JSS must be gathering Appication Usage data in order for any data to be returned, and the usage history will only go back as far as your setting for flushing of Application Usage Logs.
Management Data
The computers ‘manamgement data’, as presented on the ‘Management’ tab of the computer’s detail page in the JSS web UI, is available from the #management_data method. That method may return a large dataset, unless a subset is requested.
Subsets of management data have their own methods, which are faster and only retrieve the subset requested. See #smart_groups, #static_groups, #policies, #configuration_profiles, #ebooks, #app_store_apps, #restricted_software, and #patch_titles
The subset methods can take an ‘only:’ parameter, which is a symbol specifying the value you care to see. For example #smart_groups returns an array of hashes, one for each smart_group the computer is in. Those hashes have two keys, :name, and :id. However if you only want an array of names, you can call ‘smart_groups only: :name`
When any of the manamgement data methods are used the first time, the data is read from the API and cached internally, the cache is then used for all future calls. To re-read the data from the API and re-cache it, provide ‘refresh: true` to any of the manamgement data methods.
Other Methods
-
#set_management_to change the management acct and passwd for this computer, aliased to #make_managed
-
requires calling #update to push changes to the server
-
-
#make_unmanaged an shortcut method for #set_management_to(nil)
-
requires calling #update to push changes to the server
-
-
#licensed_sw a shortcut to #software [:licensed_software]
-
#computer_groups a shortcut to #groups_accounts [:computer_group_memberships]
-
#local_accounts a shortcut to #groups_accounts [:local_accounts]
Constant Summary collapse
- RSRC_BASE =
The base for REST resources of this class
'computers'.freeze
- LIST_RSRC =
The (temporary?) list-resource
"#{RSRC_BASE}/subset/basic".freeze
- RSRC_LIST_KEY =
the hash key used for the JSON list output of all objects in the JSS
:computers
- RSRC_OBJECT_KEY =
The hash key used for the JSON object output. It’s also used in various error messages
:computer
- SITE_SUBSET =
Where is the Site data in the API JSON?
:general
- OTHER_LOOKUP_KEYS =
these keys, as well as :id and :name, can be used to look up objects of this class in the JSS
the wierd alises mac_addresse and macaddresse are for proper pluralization of ‘mac_address’ and such
{ udid: { aliases: [:uuid, :guid], fetch_rsrc_key: :udid }, serial_number: { aliases: [:serialnumber, :sn], fetch_rsrc_key: :serialnumber }, mac_address: { aliases: [ :mac_address, :mac_addresse, :macaddress, :macaddresse, :macaddr ], fetch_rsrc_key: :macaddress } }.freeze
- NON_UNIQUE_NAMES =
true
- SEARCH_CLASS =
This class lets us seach for computers
JSS::AdvancedComputerSearch
- EXT_ATTRIB_CLASS =
This is the class for relevant Extension Attributes
JSS::ComputerExtensionAttribute
- BOOT_FLAG =
Boot partitions are noted with the string “(Boot Partition)” at the end
' (Boot Partition)'.freeze
- UPLOAD_TYPES =
file uploads can send attachments to the JSS using :computers as the sub-resource.
{ attachment: :computers }.freeze
- MDM_COMMAND_TARGET =
Tell the MDM module what kind of MDM commands we use.
:computers
- APPLICATION_USAGE_RSRC =
The API resource for app usage
'computerapplicationusage'.freeze
- APPLICATION_USAGE_DATE_FMT =
The date format for retrieving usage data
'%Y-%m-%d'.freeze
- APPLICATION_USAGE_DATE_CLASSES =
The classes that can be used with the date format
[Time, DateTime, Date].freeze
- APPLICATION_USAGE_KEY =
The top-level hash key of the raw app usage data
:computer_application_usage
- MGMT_DATA_RSRC =
The API resource for computer_management data
'computermanagement'.freeze
- MGMT_DATA_KEY =
The top-level hash key of the computer_management data
:computer_management
- MGMT_DATA_SUBSETS =
Thes are both the subset names in the resrouce URLS (when converted to strings) and the second-level hash key of the returned subset data.
%i[ smart_groups static_groups mac_app_store_apps policies ebooks os_x_configuration_profiles restricted_software patch_reporting_software_titles ].freeze
- CHECKIN_RSRC =
The API Resource for the computer checkin settings
'computercheckin'.freeze
- CHECKIN_KEY =
The top-level hash key for the checkin settings
:computer_check_in
- INV_COLLECTION_RSRC =
The API Resource for the computer inventory collection settings
'computerinventorycollection'.freeze
- INV_COLLECTION_KEY =
The top-level hash key for the inventory collection settings
:computer_inventory_collection
- OBJECT_HISTORY_OBJECT_TYPE =
the object type for this object in the object history table. See APIObject#add_object_history_entry
1
- COMPUTER_APPLICATIONS_RSRC =
'computerapplications/application'.freeze
Instance Attribute Summary collapse
-
#alt_mac_address ⇒ String
(also: #alt_macaddress)
The secondary mac address.
- #applecare_id ⇒ String included from Purchasable
-
#asset_tag ⇒ String
The asset tag.
-
#barcode1 ⇒ String
(also: #bar_code_1, #barcode_1)
The barcodes.
-
#barcode2 ⇒ String
(also: #bar_code_2, #barcode_2)
The barcodes.
- #building ⇒ String included from Locatable
-
#certificates ⇒ Array<Hash>
readonly
A Hash for each Certificate on the computer.
-
#configuration_profiles(only: nil) ⇒ Object
readonly
A shortcut for ‘management_data subset: :os_x_configuration_profiles’.
- #department ⇒ String included from Locatable
-
#distribution_point ⇒ String
readonly
The name of the distribution point for this computer.
- #email_address ⇒ String included from Locatable
-
#extension_attributes ⇒ Array<Hash>
included
from Extendable
readonly
The extension attribute values for the object.
-
#groups_accounts ⇒ Hash
readonly
Info about the local accts and ComputerGroups to which this machine beloings.
-
#hardware ⇒ Hash
readonly
A Hash with info about the hardware of this cmoputer.
-
#initial_entry_date ⇒ Time
readonly
When was it added to the JSS.
-
#ip_address ⇒ IPAddr
The last known IP address.
- #is_leased ⇒ Boolean (also: #leased?) included from Purchasable
- #is_purchased ⇒ Boolean (also: #purchased?) included from Purchasable
- #itunes_store_account_is_active ⇒ Boolean readonly
-
#jamf_version ⇒ String
readonly
The version of the jamf binary.
-
#last_contact_time ⇒ Time
readonly
The last contact time.
-
#last_enrolled ⇒ Time
readonly
The last time this machine was enrolled.
- #lease_expires ⇒ Time included from Purchasable
- #life_expectancy ⇒ Integer included from Purchasable
-
#mac_address ⇒ String
The primary macaddress.
-
#managed ⇒ Boolean
(also: #managed?)
readonly
Is this machine “managed” by Casper?.
-
#management_status ⇒ Hash
readonly
Some MDM status details in general.
-
#management_username ⇒ String
readonly
The name of the management account.
-
#mdm_capable ⇒ Boolean
(also: #mdm?)
readonly
Doesit support MDM?.
-
#mdm_capable_users ⇒ Array
readonly
User accts that support MDM? NOTE: This suffers from the JSON-Hash-treated-like_XML-Array-loses-data bug and only shows the last listed user, cuz it comes from the API as a hash, not an array.
-
#need_to_update ⇒ Boolean
included
from Updatable
readonly
Do we have unsaved changes?.
-
#netboot_server ⇒ String
readonly
The name of the netboot server for this machine.
-
#peripherals ⇒ Array<Hash>
readonly
A Hash per peripheral.
- #phone ⇒ String included from Locatable
-
#platform ⇒ String
readonly
What kind of computer?.
- #po_date ⇒ Time included from Purchasable
- #po_number ⇒ String included from Purchasable
- #position ⇒ String included from Locatable
- #purchase_price ⇒ Float included from Purchasable
- #purchasing_account ⇒ String included from Purchasable
- #purchasing_contact ⇒ String included from Purchasable
- #real_name ⇒ String included from Locatable
-
#report_date ⇒ Time
(also: #last_recon)
readonly
The last recon time.
- #room ⇒ String included from Locatable
-
#serial_number ⇒ String
(also: #sn, #serialnumber)
The serial number.
-
#site ⇒ Hash
readonly
The :name and :id of the site for this machine.
-
#software ⇒ Hash
readonly
A Hash of software data.
-
#sus ⇒ String
readonly
The name of the Software Update Server assigned to this machine.
-
#udid ⇒ String
The UDID of the computer.
- #username ⇒ String (also: #user) included from Locatable
- #vendor ⇒ String included from Purchasable
- #warranty_expires ⇒ Time included from Purchasable
Class Method Summary collapse
-
.all(refresh = false, api: JSS.api) ⇒ Array<Hash{:name=>String, :id=> Integer}>
A larger set of info about the computers in the JSS.
-
.all_desktops(refresh = false, api: JSS.api) ⇒ Array<Hash>
All desktop macs in the jss.
-
.all_imacs(refresh = false, api: JSS.api) ⇒ Array<Hash>
All imacs in the jss.
-
.all_laptops(refresh = false, api: JSS.api) ⇒ Array<Hash>
All laptop computers in the jss.
-
.all_macbookairs(refresh = false, api: JSS.api) ⇒ Array<Hash>
All macbookairs in the jss.
-
.all_macbookpros(refresh = false, api: JSS.api) ⇒ Array<Hash>
All macbookpros in the jss.
-
.all_macbooks(refresh = false, api: JSS.api) ⇒ Array<Hash>
All macbooks in the jss.
-
.all_macpros(refresh = false, api: JSS.api) ⇒ Array<Hash>
All macpros in the jss.
-
.all_managed(refresh = false, api: JSS.api) ⇒ Array<Hash>
All managed computers in the jss.
-
.all_minis(refresh = false, api: JSS.api) ⇒ Array<Hash>
All mac minis in the jss.
-
.all_unmanaged(refresh = false, api: JSS.api) ⇒ Array<Hash>
All unmanaged computers in the jss.
-
.all_xserves(refresh = false, api: JSS.api) ⇒ Array<Hash>
All xserves in the jss.
-
.application_installs(appname, fields: [], version: nil, ids_only: false, api: JSS.api) ⇒ Array<Integer>, ...
Query the JSS for computers with some app installed.
-
.application_usage(ident, start_date, end_date = nil, api: JSS.api) ⇒ Hash{Date=>Array<Hash>}
Retrieve Application Usage data for a computer by id, without instantiation.
-
.checkin_settings(api: JSS.api) ⇒ Hash
Display the current Computer CheckIn settings in the JSS.
-
.inventory_collection_settings(api: JSS.api) ⇒ Hash
Display the current Computer Inventory Collection settings in the JSS.
-
.management_data(ident, subset: nil, only: nil, api: JSS.api) ⇒ Hash, Array
The ‘computer management’ data for a given computer by id, looked up on the fly.
-
.match(term, api: JSS.api) ⇒ Array<Hash>
extended
from Matchable
Perform a match, returning an Array of Hashes, one for each item matched.
Instance Method Summary collapse
-
#app_store_app_history(status = nil) ⇒ Object
(also: #managed_app_history)
included
from ManagementHistory
Wrapper for app store history for both computers and mobile devices.
-
#app_store_apps(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :mac_app_store_apps’.
-
#application_usage(start_date, end_date = nil) ⇒ Object
Get application usage data for this computer for a given date range.
-
#apps ⇒ Array<Hash>
All apps installed on this machine.
-
#audit_history ⇒ Object
(also: #audits)
included
from ManagementHistory
The audit_history for this object.
-
#blank_push ⇒ void
(also: #send_blank_push, #noop)
included
from MDM
Send a blank push to this object.
-
#boot_drive ⇒ Hash?
The hardware hash of the boot drive.
-
#casper_imaging_logs ⇒ Object
included
from ManagementHistory
The casper_imaging_logs for this computer.
-
#casper_remote_logs ⇒ Object
included
from ManagementHistory
The casper_remote_logs for this computer.
-
#clear_location ⇒ void
included
from Locatable
Clear all location data.
-
#clear_passcode ⇒ Object
included
from MDM
Send an clear_passcode command to this object.
-
#clear_restrictions_password ⇒ Object
included
from MDM
Send an clear_restrictions_password command to this object.
-
#clone(new_name, api: nil) ⇒ APIObject
included
from Creatable
make a clone of this API object, with a new name.
-
#completed_mdm_commands ⇒ Object
(also: #completed_commands)
included
from ManagementHistory
The completed_mdm_commands for this object.
-
#completed_policies ⇒ Object
included
from ManagementHistory
The array from .policy_logs, limited to status = :completed.
-
#computer_groups ⇒ Array
The JSS groups to which thismachine belongs (smart and static).
-
#computer_usage_logs ⇒ Object
(also: #usage_logs)
included
from ManagementHistory
The computer_usage_logs for this computer.
-
#create ⇒ Integer
included
from Creatable
Create a new object in the JSS.
-
#delete ⇒ void
Delete this computer from the JSS.
-
#delete_user(user) ⇒ Object
included
from MDM
Send a delete_user command to this computer or group.
-
#device_lock(passcode_or_message = '') ⇒ Object
(also: #lock, #lock_device)
included
from MDM
Send a dev lock to this object.
-
#device_name(name) ⇒ Object
(also: #set_name, #set_device_name)
included
from MDM
Send a device_name command to this object.
-
#disable_app_analytics ⇒ Object
included
from MDM
Send a disable_app_analytics command to this object.
-
#disable_data_roaming ⇒ Object
included
from MDM
Send a disable_data_roaming command to this object.
-
#disable_diagnostic_submission ⇒ Object
included
from MDM
Send a disable_diagnostic_submission command to this object.
-
#disable_lost_mode ⇒ Object
included
from MDM
Send a disable_lost_mode command to this object.
-
#disable_voice_roaming ⇒ Object
included
from MDM
Send a disable_voice_roaming command to this object.
-
#drives ⇒ Array<Hash>
Each storage device.
-
#ea_names ⇒ Array<String>
included
from Extendable
The names of all known EAs.
-
#ea_types ⇒ Hash{String => String}
included
from Extendable
EA names => data type (one of ‘String’, ‘Number’, or ‘Date’).
-
#ebook_history(status = nil) ⇒ Object
(also: #managed_ebook_history)
included
from ManagementHistory
The ebook_history for this mobile device.
-
#ebooks(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :ebooks’.
-
#enable_app_analytics ⇒ Object
included
from MDM
Send an enable_app_analytics command to this object.
-
#enable_data_roaming ⇒ Object
included
from MDM
Send an enable_data_roaming command to this object.
-
#enable_diagnostic_submission ⇒ Object
included
from MDM
Send an enable_diagnostic_submission command to this object.
-
#enable_lost_mode(message: nil, phone_number: nil, footnote: nil, enforce_lost_mode: true, play_sound: false) ⇒ Object
included
from MDM
Send a enable_lost_mode command to one or more targets.
-
#enable_voice_roaming ⇒ Object
included
from MDM
Send an enable_voice_roaming command to this object.
-
#erase_device(passcode = '', preserve_data_plan: false) ⇒ Object
(also: #wipe_device, #wipe_computer, #wipe, #erase)
included
from MDM
Send an erase device command to this object.
-
#ext_attr_xml ⇒ REXML::Element
included
from Extendable
private
TODO: make this (and all XML amending) method take the in-progress XML doc and add (or not) the EA xml to it.
-
#ext_attrs ⇒ Object
included
from Extendable
An easier-to-use hash of EA name to EA value.
-
#failed_app_store_apps ⇒ Object
(also: #failed_managed_apps)
included
from ManagementHistory
shortcut for app_store_app_history where status = :failed.
-
#failed_ebooks ⇒ Object
(also: #failed_managed_ebooks)
included
from ManagementHistory
shortcut for ebook_history where status = :failed.
-
#failed_mdm_commands ⇒ Object
(also: #failed_commands)
included
from ManagementHistory
The failed_mdm_commands for this object.
-
#failed_policies ⇒ Object
included
from ManagementHistory
The array from .policy_logs, limited to status = :failed.
-
#filevault1_accounts ⇒ Array<Hash>
The local_accounts Array that have Legacy FV enabled.
-
#filevault2_enabled? ⇒ Boolean
Is FileVault2 enabled?.
-
#flush_mdm_commands(status) ⇒ void
included
from MDM
flush pending and/or failed MDM commands for this object.
-
#has_location? ⇒ Boolean
included
from Locatable
Does this item have location data?.
-
#has_purchasing? ⇒ Boolean
included
from Purchasable
Does this item have any purchasing info?.
-
#initialize(args = {}) ⇒ Computer
constructor
# When creating new records with .make, these can be provided in the arg, or after instantiation via setter methods: serial_number:, udid:, asset_tag:, mac_address: alt_mac_address:, barcode_1:, barcode_2:.
-
#installed_app_store_apps ⇒ Object
(also: #installed_managed_apps)
included
from ManagementHistory
shortcut for app_store_app_history where status = :installed.
-
#installed_ebooks ⇒ Object
(also: #installed_managed_ebooks)
included
from ManagementHistory
shortcut for ebook_history where status = :installed.
-
#last_mdm_contact ⇒ Object
included
from ManagementHistory
The time of the last completed mdm command for this object.
-
#licensed_sw ⇒ Array<String>
The JSS-defined “licensed software” titles installed on this machine.
-
#local_accounts ⇒ Array<Hash>
(also: #accounts, #accts)
Each item has keys :name, :realname, :uid, :home, :home_size, :administrator, :filevault_enabled.
-
#location ⇒ Hash<String>
included
from Locatable
All the location data in a Hash, as it comes from the API.
-
#location_xml ⇒ REXML::Element
included
from Locatable
private
Return a REXML <location> element to be included in the rest_xml of objects that have a Location subset.
-
#mac_app_store_app_history(status = nil) ⇒ Object
included
from ManagementHistory
The mac_app_store_app_history for this computer.
-
#make_unmanaged ⇒ void
Make the machine unmanaged.
-
#management_data(subset: nil, only: nil) ⇒ Object
The ‘computer management’ data for this computer.
-
#management_history(subset = nil) ⇒ Object
(also: #history)
included
from ManagementHistory
The raw management history data for this object.
-
#mdm_command_history(status = nil) ⇒ Object
(also: #commands, #management_command_history)
included
from ManagementHistory
The mdm_command_history for this object.
-
#method_missing(method, *args, &block) ⇒ Object
Make all the keys of the @hardware hash available as top-level methods on the Computer instance.
-
#mobile_device_app_history(status = nil) ⇒ Object
included
from ManagementHistory
The mobile_device_app_history for this mobile device.
-
#name=(newname) ⇒ void
included
from Updatable
Change the name of this item Remember to #update to push changes to the server.
-
#parse_ext_attrs ⇒ void
included
from Extendable
Populate @extension_attributes (the Array of Hashes that comes from the API) and @ext_attr_names, which is a Hash mapping the EA names to their values.
-
#parse_location ⇒ void
included
from Locatable
Call this during initialization of objects that have a Location subset and the location attributes will be populated (as primary attributes) from @init_data.
-
#parse_purchasing ⇒ Object
included
from Purchasable
private
Call this during initialization of objects that have a Purchasing subset and the purchasing attribute will be populated from @init_data.
-
#passcode_lock_grace_period(secs) ⇒ Object
included
from MDM
Send a passcode_lock_grace_period command to this object.
-
#patch_titles(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :patch_reporting_software_titles’.
-
#pending_app_store_apps ⇒ Object
(also: #pending_managed_apps)
included
from ManagementHistory
shortcut for app_store_app_history where status = :pending.
-
#pending_ebooks ⇒ Object
(also: #pending_managed_ebooks)
included
from ManagementHistory
shortcut for ebook_history where status = :pending.
-
#pending_mdm_commands ⇒ Object
(also: #pending_commands)
included
from ManagementHistory
The pending_mdm_commands for this object.
-
#play_lost_mode_sound ⇒ Object
included
from MDM
Send a play_lost_mode_sound command to this object.
-
#policies(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :policies’.
-
#policy_logs ⇒ Object
included
from ManagementHistory
The policy_logs for this computer.
-
#printers ⇒ Array<Hash>
Each printer on this computer Keys are :name, :uri, :type, :location.
-
#purchasing ⇒ Hash<String>
included
from Purchasable
All the purchasing data in a Hash, as it comes from the API.
-
#purchasing_xml ⇒ REXML::Element
included
from Purchasable
private
A <purchasing> element to be included in the rest_xml of objects that mix-in this module.
-
#respond_to_missing?(method) ⇒ Boolean
Companion to method_missing, allows for easier debugging in backtraces that involve missing methods.
-
#restart_device ⇒ Object
(also: #restart)
included
from MDM
Send a restart_device command to this object.
-
#restricted_software(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :restricted_software’.
-
#screen_sharing_logs ⇒ Object
included
from ManagementHistory
The screen_sharing_logs for this computer.
-
#set_ext_attr(name, value, validate_popup_choice: true, refresh: false) ⇒ void
included
from Extendable
Set the value of an extension attribute.
-
#set_management_to(name, password) ⇒ void
(also: #make_managed)
Set or unset management acct and password for this computer.
-
#shut_down_device ⇒ Object
(also: #shutdown_device, #shut_down, #shutdown)
included
from MDM
Send a shut_down_device command to this object.
-
#site=(new_site) ⇒ void
included
from Sitable
Change the site of this object.
-
#site_assigned? ⇒ Boolean
included
from Sitable
Does this object have a site assigned?.
-
#site_id ⇒ Integer
included
from Sitable
The id of the site for this object.
-
#site_name ⇒ String
(also: #site)
included
from Sitable
The name of the site for this object.
-
#site_object ⇒ JSS::Site
included
from Sitable
The JSS::Site instance for this object’s site.
-
#smart_groups(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :smart_groups’.
-
#static_groups(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :static_groups’.
-
#unlock_user_account(user) ⇒ Object
included
from MDM
Send an unlock_user_account command to this computer or group.
-
#unmanage_device ⇒ Object
(also: #remove_mdm_profile)
included
from MDM
Send an unmanage device command to this object.
-
#unsaved_eas? ⇒ Boolean
included
from Extendable
are there any changes in the EAs needing to be saved?.
-
#unset_site ⇒ void
included
from Sitable
Set the site to nothing.
-
#update ⇒ void
Send changes to the API.
-
#update_inventory ⇒ Object
(also: #recon)
included
from MDM
Send an update_inventory command to this object.
-
#upload(type, local_file) ⇒ String
included
from Uploadable
Upload a file to the JSS via the REST Resource of the object to which this module is mixed in.
-
#user_location_history ⇒ Object
included
from ManagementHistory
The user_location_history for this object.
-
#validate_popup_value(name, value, refresh) ⇒ Object
included
from Extendable
Used by set_ext_attr.
-
#wallpaper(wallpaper_setting: nil, wallpaper_content: nil, wallpaper_id: nil) ⇒ Object
(also: #set_wallpaper)
included
from MDM
Send a wallpaper command to this object.
Constructor Details
permalink #initialize(args = {}) ⇒ Computer
# When creating new records with .make, these can be provided in the arg, or after instantiation via setter methods:
serial_number:, udid:, asset_tag:, mac_address:
alt_mac_address:, barcode_1:, barcode_2:
767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
# File 'lib/jss/api_object/computer.rb', line 767 def initialize(args = {}) super args if @in_jss # mutable stuff @alt_mac_address = @init_data[:general][:alt_mac_address] @asset_tag = @init_data[:general][:asset_tag] @barcode1 = @init_data[:general][:barcode_1] @barcode2 = @init_data[:general][:barcode_2] @mac_address = @init_data[:general][:mac_address] @managed = @init_data[:general][:remote_management][:managed] @management_username = @init_data[:general][:remote_management][:management_username] @serial_number = @init_data[:general][:serial_number] @udid = @init_data[:general][:udid] # immutable single-values @distribution_point = @init_data[:general][:distribution_point] @initial_entry_date = JSS.epoch_to_time @init_data[:general][:initial_entry_date_epoch] @last_enrolled = JSS.epoch_to_time @init_data[:general][:last_enrolled_date_epoch] @ip_address = @init_data[:general][:ip_address] @itunes_store_account_is_active = @init_data[:general][:itunes_store_account_is_active] @jamf_version = @init_data[:general][:jamf_version] @last_contact_time = JSS.epoch_to_time @init_data[:general][:last_contact_time_epoch] @mdm_capable = @init_data[:general][:mdm_capable] @mdm_capable_users = @init_data[:general][:mdm_capable_users].values @netboot_server = @init_data[:general][:netboot_server] @platform = @init_data[:general][:platform] @report_date = JSS.epoch_to_time @init_data[:general][:report_date_epoch] @sus = @init_data[:general][:sus] @configuration_profiles = @init_data[:configuration_profiles] @management_status = @init_data[:general][:management_status] @groups_accounts = @init_data[:groups_accounts] @hardware = @init_data[:hardware] @peripherals = @init_data[:peripherals] @software = @init_data[:software] @certificates = @init_data[:certificates].map do |cert| { expires: JSS.epoch_to_time(cert[:expires_epoch]), common_name: cert[:common_name], identity: cert[:identity], name: cert[:name] } end # map do cert # Freeze immutable things. # These are updated via recon, and aren't sent # with #update, so changing them here is meaningless anyway. @configuration_profiles.freeze @certificates.freeze @groups_accounts.freeze @hardware.freeze @peripherals.freeze @software.freeze @management_password = nil # not in jss else @udid = args[:udid] @serial_number = args[:serial_number] @asset_tag = args[:asset_tag] @mac_address = args[:mac_address] @alt_mac_address = args[:alt_mac_address] @barcode1 = args[:barcode_1] @barcode2 = args[:barcode_2] end # if in jss end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
permalink #method_missing(method, *args, &block) ⇒ Object
Make all the keys of the @hardware hash available as top-level methods on the Computer instance.
This is done by catching method_missing and seeing if the method exists as key of @hardware, and if so, retuning that value, if not, passing on the method_missing call. So:
comp.processor_type
is now the same as:
comp.hardware[:processor_type]
The reason for using ‘method_missing` rather than looping through the speed. When instantiating lots of computers, defining the methods for each one, when those methods may not be needed, just slows things down. This way, they’re only used when needed.
This method may be expanded in the future to handle other ad-hoc, top-level methods.
858 859 860 861 862 863 864 |
# File 'lib/jss/api_object/computer.rb', line 858 def method_missing(method, *args, &block) if @hardware.key? method @hardware[method] else super end # if end |
Instance Attribute Details
permalink #alt_mac_address ⇒ String Also known as: alt_macaddress
Returns the secondary mac address.
518 519 520 |
# File 'lib/jss/api_object/computer.rb', line 518 def alt_mac_address @alt_mac_address end |
permalink #applecare_id ⇒ String Originally defined in module Purchasable
permalink #asset_tag ⇒ String
Returns the asset tag.
521 522 523 |
# File 'lib/jss/api_object/computer.rb', line 521 def asset_tag @asset_tag end |
permalink #barcode1 ⇒ String Also known as: bar_code_1, barcode_1
Returns the barcodes.
524 525 526 |
# File 'lib/jss/api_object/computer.rb', line 524 def @barcode1 end |
permalink #barcode2 ⇒ String Also known as: bar_code_2, barcode_2
Returns the barcodes.
524 525 526 |
# File 'lib/jss/api_object/computer.rb', line 524 def @barcode2 end |
permalink #certificates ⇒ Array<Hash> (readonly)
A Hash for each Certificate on the computer
The Hash keys are:
-
:common_name [String] the name of the cert
-
:identity [Boolean] Is this an identiry cert?
-
:expires [Time] the certificate expiration time
-
:name Display name for the certificate, if any
614 615 616 |
# File 'lib/jss/api_object/computer.rb', line 614 def certificates @certificates end |
permalink #configuration_profiles(only: nil) ⇒ Object (readonly)
A shortcut for ‘management_data subset: :os_x_configuration_profiles’
602 603 604 |
# File 'lib/jss/api_object/computer.rb', line 602 def configuration_profiles @configuration_profiles end |
permalink #distribution_point ⇒ String (readonly)
Returns The name of the distribution point for this computer.
527 528 529 |
# File 'lib/jss/api_object/computer.rb', line 527 def distribution_point @distribution_point end |
permalink #extension_attributes ⇒ Array<Hash> (readonly) Originally defined in module Extendable
Returns The extension attribute values for the object.
permalink #groups_accounts ⇒ Hash (readonly)
Info about the local accts and ComputerGroups to which this machine beloings
The Hash keys are:
-
:computer_group_memberships => An Array of names of ComputerGroups to which this computer belongs
-
:local_accounts => An Array of Hashes for each local user acct on this computer. Each hash has these keys:
-
:name => String, the login name of the acct
-
:realname => the real name of the acct
-
:uid => String, the uid of the acct
-
:home => String, the path to the home folder
-
:home_size => String, the size of the homedir as a string like “53245MB”
-
:home_size_mb => Integer, the size of the homedir as an integer like 53245
-
:administrator => Boolean
-
:filevault_enabled => Boolean
-
632 633 634 |
# File 'lib/jss/api_object/computer.rb', line 632 def groups_accounts @groups_accounts end |
permalink #hardware ⇒ Hash (readonly)
A Hash with info about the hardware of this cmoputer.
These are the keys & sample data
-
:number_processors=>2,
-
:processor_speed_mhz=>2530,
-
:make=>“Apple”,
-
:cache_size=>3072,
-
:processor_type=>“Intel Core i5”,
-
:total_ram_mb=>8192,
-
:model=>“15-inch MacBook Pro (Mid 2010)”,
-
:available_ram_slots=>0,
-
:processor_architecture=>“i386”,
-
:bus_speed_mhz=>0,
-
:total_ram=>8192,
-
:os_name=>“Mac OS X”,
-
:optical_drive=>“HL-DT-ST DVDRW GS23N”,
-
:model_identifier=>“MacBookPro6,2”,
-
:cache_size_kb=>3072,
-
:boot_rom=>“MBP61.0057.B0F”,
-
:os_version=>“10.9.3”,
-
:mapped_printers=> An Array of Hashes, one per printer, with these keys
-
:name => the name of the printer
-
:location => the location of the printer
-
:type => the printer model
-
:uri => the uri to reach the printer on the network
-
-
:nic_speed=>“10/100/1000”,
-
:processor_speed=>2530,
-
:active_directory_status=>“Not Bound”,
-
:bus_speed=>0,
-
:os_build=>“13D65”,
-
:smc_version=>“1.58f17”,
-
:service_pack=>“”,
-
:battery_capacity=>87
-
:storage=> An Array of Hashes, one per Drive, with these keys
-
:smart_status=>“Verified”,
-
:connection_type=>“NO”,
-
:model=>“M4-CT256M4SSD2”,
-
:revision=>“040H”,
-
:serial_number=>“00000000130709JH7GhhC”,
-
:size=>262205,
-
:disk=>“disk0”,
-
:drive_capacity_mb=>262205}],
-
:partition=> A Hash with these keys
-
:filevault2_status=>“Encrypted”,
-
:type=>“boot”,
-
:filevault2_percent=>100,
-
:partition_capacity_mb=>38014,
-
:lvgUUID=>“C4883AF5-3E58-4F76-A56C-094D4CEC7E9F”,
-
:percentage_full=>61,
-
:lvUUID=>“745A262E-AEA6-4608-8A3A-6CDC225B4DE6”,
-
:filevault_status=>“Encrypted”,
-
:size=>38014,
-
:pvUUID=>“C38051CF-5066-442F-A442-1035060ED462”,
-
:name=>“KimDrive40 (Boot Partition)”,
-
:filevault_percent=>100
-
-
692 693 694 |
# File 'lib/jss/api_object/computer.rb', line 692 def hardware @hardware end |
permalink #initial_entry_date ⇒ Time (readonly)
Returns when was it added to the JSS.
530 531 532 |
# File 'lib/jss/api_object/computer.rb', line 530 def initial_entry_date @initial_entry_date end |
permalink #ip_address ⇒ IPAddr
Returns the last known IP address.
533 534 535 |
# File 'lib/jss/api_object/computer.rb', line 533 def ip_address @ip_address end |
permalink #is_leased ⇒ Boolean Also known as: leased? Originally defined in module Purchasable
permalink #is_purchased ⇒ Boolean Also known as: purchased? Originally defined in module Purchasable
permalink #itunes_store_account_is_active ⇒ Boolean (readonly)
536 537 538 |
# File 'lib/jss/api_object/computer.rb', line 536 def itunes_store_account_is_active @itunes_store_account_is_active end |
permalink #jamf_version ⇒ String (readonly)
Returns the version of the jamf binary.
539 540 541 |
# File 'lib/jss/api_object/computer.rb', line 539 def jamf_version @jamf_version end |
permalink #last_contact_time ⇒ Time (readonly)
Returns the last contact time.
542 543 544 |
# File 'lib/jss/api_object/computer.rb', line 542 def last_contact_time @last_contact_time end |
permalink #last_enrolled ⇒ Time (readonly)
Returns the last time this machine was enrolled.
545 546 547 |
# File 'lib/jss/api_object/computer.rb', line 545 def last_enrolled @last_enrolled end |
permalink #lease_expires ⇒ Time Originally defined in module Purchasable
permalink #life_expectancy ⇒ Integer Originally defined in module Purchasable
permalink #mac_address ⇒ String
Returns the primary macaddress.
548 549 550 |
# File 'lib/jss/api_object/computer.rb', line 548 def mac_address @mac_address end |
permalink #managed ⇒ Boolean (readonly) Also known as: managed?
Returns is this machine “managed” by Casper?.
551 552 553 |
# File 'lib/jss/api_object/computer.rb', line 551 def managed @managed end |
permalink #management_status ⇒ Hash (readonly)
Returns some MDM status details in general.
560 561 562 |
# File 'lib/jss/api_object/computer.rb', line 560 def management_status @management_status end |
permalink #management_username ⇒ String (readonly)
Returns the name of the management account.
554 555 556 |
# File 'lib/jss/api_object/computer.rb', line 554 def management_username @management_username end |
permalink #mdm_capable ⇒ Boolean (readonly) Also known as: mdm?
Returns doesit support MDM?.
557 558 559 |
# File 'lib/jss/api_object/computer.rb', line 557 def mdm_capable @mdm_capable end |
permalink #mdm_capable_users ⇒ Array (readonly)
Returns user accts that support MDM? NOTE: This suffers from the JSON-Hash-treated-like_XML-Array-loses-data bug and only shows the last listed user, cuz it comes from the API as a hash, not an array.
567 568 569 |
# File 'lib/jss/api_object/computer.rb', line 567 def mdm_capable_users @mdm_capable_users end |
permalink #need_to_update ⇒ Boolean (readonly) Originally defined in module Updatable
Returns do we have unsaved changes?.
permalink #netboot_server ⇒ String (readonly)
Returns the name of the netboot server for this machine.
570 571 572 |
# File 'lib/jss/api_object/computer.rb', line 570 def netboot_server @netboot_server end |
permalink #peripherals ⇒ Array<Hash> (readonly)
A Hash per peripheral
Each hash has these keys & sample data:
-
:id=>286,
-
:type=>“Display”,
-
:field_0=>“HP”,
-
:field_1=>“HP LP2480zx”,
-
:field_2=>“DreamColor”,
-
:field_3=>“3CM10800F4”,
-
:field_4=>“”,
-
:field_5=>“”
-
:field_6=>“”,
-
:bar_code_1=>“”,
-
:bar_code_2=>“”,
-
:purchasing=> A hash with these keys:
-
:warranty_expires_utc=>“”,
-
:is_leased=>false,
-
:po_date=>“”,
-
:lease_expires=>“”,
-
:po_number=>“”,
-
:po_date_epoch=>0,
-
:lease_expires_epoch=>0,
-
:vendor=>“”,
-
:attachments=>[],
-
:po_date_utc=>“”,
-
:lease_expires_utc=>“”,
-
:applecare_id=>“”,
-
:warranty_expires=>“”,
-
:life_expectancy=>0,
-
:purchase_price=>“”,
-
:warranty_expires_epoch=>0,
-
:is_purchased=>true,
-
:purchasing_contact=>“”,
-
:purchasing_account=>“”
-
731 732 733 |
# File 'lib/jss/api_object/computer.rb', line 731 def peripherals @peripherals end |
permalink #platform ⇒ String (readonly)
Returns what kind of computer?.
573 574 575 |
# File 'lib/jss/api_object/computer.rb', line 573 def platform @platform end |
permalink #po_date ⇒ Time Originally defined in module Purchasable
permalink #po_number ⇒ String Originally defined in module Purchasable
permalink #purchase_price ⇒ Float Originally defined in module Purchasable
permalink #purchasing_account ⇒ String Originally defined in module Purchasable
permalink #purchasing_contact ⇒ String Originally defined in module Purchasable
permalink #report_date ⇒ Time (readonly) Also known as: last_recon
Returns the last recon time.
576 577 578 |
# File 'lib/jss/api_object/computer.rb', line 576 def report_date @report_date end |
permalink #serial_number ⇒ String Also known as: sn, serialnumber
Returns the serial number.
579 580 581 |
# File 'lib/jss/api_object/computer.rb', line 579 def serial_number @serial_number end |
permalink #site ⇒ Hash (readonly)
Returns the :name and :id of the site for this machine.
582 583 584 |
# File 'lib/jss/api_object/computer.rb', line 582 def site @site end |
permalink #software ⇒ Hash (readonly)
A Hash of software data
The Hash has these keys:
-
:running_services => An Array of services running on the computer (if gathered) TODO - is each item a hash?
-
:installed_by_casper => An Array of Package names unstalled on this computer by Casper
-
:fonts => An Array of fonts on this computer (if gathered) TODO - is each item a hash?
-
:installed_by_installer_swu => An Array of pkg IDs for pkgs installed by SoftwareUpdate or the Apple Installer
-
:applications => An Array of Hashes, one per Application on the computer, with these keys:
-
:path => String, the path to the app
-
:name => String, the name of the app, including the .app suffix
-
:version => String, the version of the app at that path.
-
-
:cached_by_casper => An Array of Casper Package names cached on the machine, awaiting installation
-
:available_software_updates => An Array of available SoftwareUpdate (if gathered) TODO - is each item a hash?
-
:plugins => An Array of plugins installed on the machine (if gathered) TODO - is each item a hash?
-
:available_updates => A Hash - Deprecated?
-
:licensed_software => An Array, the names of Licenced Software (as defined in Casper) on this machine
-
:unix_executables => DEPRECATED
753 754 755 |
# File 'lib/jss/api_object/computer.rb', line 753 def software @software end |
permalink #sus ⇒ String (readonly)
Returns the name of the Software Update Server assigned to this machine.
585 586 587 |
# File 'lib/jss/api_object/computer.rb', line 585 def sus @sus end |
permalink #udid ⇒ String
Returns the UDID of the computer.
588 589 590 |
# File 'lib/jss/api_object/computer.rb', line 588 def udid @udid end |
permalink #vendor ⇒ String Originally defined in module Purchasable
permalink #warranty_expires ⇒ Time Originally defined in module Purchasable
Class Method Details
permalink .all(refresh = false, api: JSS.api) ⇒ Array<Hash{:name=>String, :id=> Integer}>
A larger set of info about the computers in the JSS.
Casper 9.4 introduced the API Resource /computers/subset/basic that returns an array of hashes with more data than just /computers/ (which was just :name and :id). Similar to /mobildevices/, this new list includes :udid, :serial_number, and :mac_address, as well as :model, :managed, :building, :department, :username, and :report_date
Because this requires a different, unusual, resource path, we’re completely re-defining APIObject.all for JSS::Computer. Hopefully some day the original /computers/ resource will be updated to return this data.
326 327 328 329 330 331 332 333 |
# File 'lib/jss/api_object/computer.rb', line 326 def self.all(refresh = false, api: JSS.api) cache = api.object_list_cache cache_key = self::RSRC_LIST_KEY cache[cache_key] = nil if refresh return cache[cache_key] if cache[cache_key] cache[cache_key] = api.get_rsrc(self::LIST_RSRC)[cache_key] end |
permalink .all_desktops(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all desktop macs in the jss.
386 387 388 |
# File 'lib/jss/api_object/computer.rb', line 386 def self.all_desktops(refresh = false, api: JSS.api) all(refresh, api: api).reject { |d| d[:model] =~ /serve|book/i } end |
permalink .all_imacs(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all imacs in the jss.
391 392 393 |
# File 'lib/jss/api_object/computer.rb', line 391 def self.all_imacs(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /^imac/i } end |
permalink .all_laptops(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all laptop computers in the jss.
361 362 363 |
# File 'lib/jss/api_object/computer.rb', line 361 def self.all_laptops(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /book/i } end |
permalink .all_macbookairs(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all macbookairs in the jss.
376 377 378 |
# File 'lib/jss/api_object/computer.rb', line 376 def self.all_macbookairs(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /^macbookair\d/i } end |
permalink .all_macbookpros(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all macbookpros in the jss.
371 372 373 |
# File 'lib/jss/api_object/computer.rb', line 371 def self.all_macbookpros(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /^macbookpro\d/i } end |
permalink .all_macbooks(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all macbooks in the jss.
366 367 368 |
# File 'lib/jss/api_object/computer.rb', line 366 def self.all_macbooks(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /^macbook\d/i } end |
permalink .all_macpros(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all macpros in the jss.
401 402 403 |
# File 'lib/jss/api_object/computer.rb', line 401 def self.all_macpros(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /^macpro/i } end |
permalink .all_managed(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all managed computers in the jss.
351 352 353 |
# File 'lib/jss/api_object/computer.rb', line 351 def self.all_managed(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:managed] } end |
permalink .all_minis(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all mac minis in the jss.
396 397 398 |
# File 'lib/jss/api_object/computer.rb', line 396 def self.all_minis(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /^macmini/i } end |
permalink .all_unmanaged(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all unmanaged computers in the jss.
356 357 358 |
# File 'lib/jss/api_object/computer.rb', line 356 def self.all_unmanaged(refresh = false, api: JSS.api) all(refresh, api: api).reject { |d| d[:managed] } end |
permalink .all_xserves(refresh = false, api: JSS.api) ⇒ Array<Hash>
Returns all xserves in the jss.
381 382 383 |
# File 'lib/jss/api_object/computer.rb', line 381 def self.all_xserves(refresh = false, api: JSS.api) all(refresh, api: api).select { |d| d[:model] =~ /serve/i } end |
permalink .application_installs(appname, fields: [], version: nil, ids_only: false, api: JSS.api) ⇒ Array<Integer>, ...
Query the JSS for computers with some app installed. An app name is required as the first parameter.
If no other parameters are given, returns a Hash, one key per version of the app. For each version there is an array of Hashes, one Hash for each computer with that version. The sub hashes contain keys for the computer’s identifiers, i.e. :name, :id, :udid, :serial_number, :mac_address.
If one or more inventory fields are provided in the ‘fields’ parameter, each computer’s hash also has keys and values for those fields if they exist in the JSS. These fields are those available in the display options for Advanced Computer Searches (including extention attribute names) and their names are case-sensitive, so ‘Username’, not ‘username’
If a specific version is provided in the ‘version’ parameter, only computers containing that version of the app are returned as an Array of Hashes.
If the ids_only parameter is truthy, an Array of JSS id numbers for computers with this app is returned. In this case the ‘fields’ parameter is ignored, however the ‘version’ parameters is still valid and will restrict the list to those computer ids with that version installed.
This method implements the ‘computerapplications’ API endpoint.
NOTE: To see all the apps installed on a specific computer, fetch the JSS::Computer instance and call its #apps method.
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/jss/api_object/computer/application_installs.rb', line 96 def self.application_installs(appname, fields: [], version: nil, ids_only: false, api: JSS.api) fields = [fields] unless fields.is_a? Array rsrc = "#{COMPUTER_APPLICATIONS_RSRC}/#{CGI.escape appname.to_s}" rsrc << "/version/#{CGI.escape version.to_s}" if version rsrc << "/inventory/#{CGI.escape fields.join(',')}" unless ids_only || fields.empty? result = api.get_rsrc(rsrc)[:computer_applications] return result[:unique_computers].map { |c| c[:id] } if ids_only if version.nil? hash_by_version = {} result[:versions].each { |v| hash_by_version[v[:number]] = v[:computers] } return hash_by_version end result[:versions].first[:computers] end |
permalink .application_usage(ident, start_date, end_date = nil, api: JSS.api) ⇒ Hash{Date=>Array<Hash>}
Retrieve Application Usage data for a computer by id, without instantiation.
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 |
# File 'lib/jss/api_object/computer.rb', line 431 def self.application_usage(ident, start_date, end_date = nil, api: JSS.api) id = valid_id ident, api: api raise "No computer matches identifier: #{ident}" unless id end_date ||= start_date start_date = Time.parse start_date if start_date.is_a? String end_date = Time.parse end_date if end_date.is_a? String raise JSS::InvalidDataError, 'Invalid Start or End Date' unless ([start_date.class, end_date.class] - APPLICATION_USAGE_DATE_CLASSES).empty? start_date = start_date.strftime APPLICATION_USAGE_DATE_FMT end_date = end_date.strftime APPLICATION_USAGE_DATE_FMT data = api.get_rsrc(APPLICATION_USAGE_RSRC + "/id/#{id}/#{start_date}_#{end_date}") parsed_data = {} data[APPLICATION_USAGE_KEY].each do |day_hash| date = Date.parse day_hash[:date] parsed_data[date] = day_hash[:apps] end parsed_data end |
permalink .checkin_settings(api: JSS.api) ⇒ Hash
Display the current Computer CheckIn settings in the JSS. Currently this is read-only in ruby-jss, even tho the API allows updating.
289 290 291 |
# File 'lib/jss/api_object/computer.rb', line 289 def self.checkin_settings(api: JSS.api) api.get_rsrc(CHECKIN_RSRC)[CHECKIN_KEY] end |
permalink .inventory_collection_settings(api: JSS.api) ⇒ Hash
Display the current Computer Inventory Collection settings in the JSS. Currently this is read-only in ruby-jss, even tho the API allows updating.
303 304 305 |
# File 'lib/jss/api_object/computer.rb', line 303 def self.inventory_collection_settings(api: JSS.api) api.get_rsrc(INV_COLLECTION_RSRC)[INV_COLLECTION_KEY] end |
permalink .management_data(ident, subset: nil, only: nil, api: JSS.api) ⇒ Hash, Array
The ‘computer management’ data for a given computer by id, looked up on the fly.
Without specifying a subset:, the entire dataset is returned as a hash of arrays, one per subset
If a subset is given then only that array is returned, and it contains hashes with data about each item (usually :name and :id)
If the only: param is provided with a subset, it is used as a hash-key to map the array to just those values, so subset: :smart_groups, only: :name will return an array of names of smartgroups that contain the computer.
480 481 482 483 484 485 486 487 488 |
# File 'lib/jss/api_object/computer.rb', line 480 def self.management_data(ident, subset: nil, only: nil, api: JSS.api) id = valid_id ident, api: api raise "No computer matches identifier: #{ident}" unless id if subset management_data_subset id, subset: subset, only: only, api: api else full_management_data id, api: api end end |
Instance Method Details
permalink #app_store_app_history(status = nil) ⇒ Object Also known as: managed_app_history Originally defined in module ManagementHistory
Wrapper for app store history for both computers and mobile devices
permalink #app_store_apps(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :mac_app_store_apps’
983 984 985 |
# File 'lib/jss/api_object/computer.rb', line 983 def app_store_apps(only: nil) management_data subset: :mac_app_store_apps, only: only end |
permalink #application_usage(start_date, end_date = nil) ⇒ Object
Get application usage data for this computer for a given date range. See application_usage for details
936 937 938 |
# File 'lib/jss/api_object/computer.rb', line 936 def application_usage(start_date, end_date = nil) JSS::Computer.application_usage @id, start_date, end_date, api: @api end |
permalink #apps ⇒ Array<Hash>
Returns all apps installed on this machine. Hash keys are :name, :path, and :version.
921 922 923 |
# File 'lib/jss/api_object/computer.rb', line 921 def apps @software[:applications] end |
permalink #audit_history ⇒ Object Also known as: audits Originally defined in module ManagementHistory
The audit_history for this object
permalink #blank_push ⇒ void Also known as: send_blank_push, noop Originally defined in module MDM
This method returns an undefined value.
Send a blank push to this object
permalink #boot_drive ⇒ Hash?
Returns The hardware hash of the boot drive.
907 908 909 |
# File 'lib/jss/api_object/computer.rb', line 907 def boot_drive drives.select { |d| d[:partition] && d[:partition][:type] == 'boot' }.first end |
permalink #casper_imaging_logs ⇒ Object Originally defined in module ManagementHistory
The casper_imaging_logs for this computer
permalink #casper_remote_logs ⇒ Object Originally defined in module ManagementHistory
The casper_remote_logs for this computer
permalink #clear_location ⇒ void Originally defined in module Locatable
This method returns an undefined value.
Clear all location data
permalink #clear_passcode ⇒ Object Originally defined in module MDM
Send an clear_passcode command to this object
permalink #clear_restrictions_password ⇒ Object Originally defined in module MDM
Send an clear_restrictions_password command to this object
permalink #clone(new_name, api: nil) ⇒ APIObject Originally defined in module Creatable
make a clone of this API object, with a new name. The class must be creatable
permalink #completed_mdm_commands ⇒ Object Also known as: completed_commands Originally defined in module ManagementHistory
The completed_mdm_commands for this object
permalink #completed_policies ⇒ Object Originally defined in module ManagementHistory
The array from .policy_logs, limited to status = :completed
permalink #computer_groups ⇒ Array
Returns the JSS groups to which thismachine belongs (smart and static).
874 875 876 |
# File 'lib/jss/api_object/computer.rb', line 874 def computer_groups @groups_accounts[:computer_group_memberships] end |
permalink #computer_usage_logs ⇒ Object Also known as: usage_logs Originally defined in module ManagementHistory
The computer_usage_logs for this computer
permalink #delete ⇒ void
This method returns an undefined value.
Delete this computer from the JSS
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 |
# File 'lib/jss/api_object/computer.rb', line 1103 def delete super @alt_mac_address = nil @asset_tag = nil @barcode1 = nil @barcode2 = nil @distribution_point = nil @initial_entry_date = nil @ip_address = nil @jamf_version = nil @last_contact_time = nil @macaddress = nil @managed = nil @management_username = nil @mdm_capable = nil @netboot_server = nil @platform = nil @report_date = nil @serial_number = nil @site = nil @sus = nil @udid = nil @building = nil @department = nil @email_address = nil @phone = nil @position = nil @real_name = nil @room = nil @username = nil @configuration_profiles = nil @extension_attributes = nil @groups_accounts = nil @hardware = nil @peripherals = nil @purchasing = nil @software = nil end |
permalink #delete_user(user) ⇒ Object Originally defined in module MDM
Send a delete_user command to this computer or group
permalink #device_lock(passcode_or_message = '') ⇒ Object Also known as: lock, lock_device Originally defined in module MDM
Send a dev lock to this object
permalink #device_name(name) ⇒ Object Also known as: set_name, set_device_name Originally defined in module MDM
Send a device_name command to this object
permalink #disable_app_analytics ⇒ Object Originally defined in module MDM
Send a disable_app_analytics command to this object
permalink #disable_data_roaming ⇒ Object Originally defined in module MDM
Send a disable_data_roaming command to this object
permalink #disable_diagnostic_submission ⇒ Object Originally defined in module MDM
Send a disable_diagnostic_submission command to this object
permalink #disable_lost_mode ⇒ Object Originally defined in module MDM
Send a disable_lost_mode command to this object
permalink #disable_voice_roaming ⇒ Object Originally defined in module MDM
Send a disable_voice_roaming command to this object
permalink #drives ⇒ Array<Hash>
Returns each storage device.
901 902 903 |
# File 'lib/jss/api_object/computer.rb', line 901 def drives @hardware[:storage] end |
permalink #ea_names ⇒ Array<String> Originally defined in module Extendable
Returns the names of all known EAs.
permalink #ea_types ⇒ Hash{String => String} Originally defined in module Extendable
Returns EA names => data type (one of ‘String’, ‘Number’, or ‘Date’).
permalink #ebook_history(status = nil) ⇒ Object Also known as: managed_ebook_history Originally defined in module ManagementHistory
The ebook_history for this mobile device
permalink #ebooks(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :ebooks’
977 978 979 |
# File 'lib/jss/api_object/computer.rb', line 977 def ebooks(only: nil) management_data subset: :ebooks, only: only, refresh: refresh end |
permalink #enable_app_analytics ⇒ Object Originally defined in module MDM
Send an enable_app_analytics command to this object
permalink #enable_data_roaming ⇒ Object Originally defined in module MDM
Send an enable_data_roaming command to this object
permalink #enable_diagnostic_submission ⇒ Object Originally defined in module MDM
Send an enable_diagnostic_submission command to this object
permalink #enable_lost_mode(message: nil, phone_number: nil, footnote: nil, enforce_lost_mode: true, play_sound: false) ⇒ Object Originally defined in module MDM
Send a enable_lost_mode command to one or more targets
Either or both of message and phone number must be provided
permalink #enable_voice_roaming ⇒ Object Originally defined in module MDM
Send an enable_voice_roaming command to this object
permalink #erase_device(passcode = '', preserve_data_plan: false) ⇒ Object Also known as: wipe_device, wipe_computer, wipe, erase Originally defined in module MDM
Send an erase device command to this object
permalink #ext_attr_xml ⇒ REXML::Element Originally defined in module Extendable
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
TODO: make this (and all XML amending) method take the in-progress XML doc and add (or not) the EA xml to it. See how Sitable#add_site_to_xml works, as called from Computer.rest_xml
permalink #ext_attrs ⇒ Object Originally defined in module Extendable
An easier-to-use hash of EA name to EA value. This isn’t created until its needed, to speed up instantiation.
permalink #failed_app_store_apps ⇒ Object Also known as: failed_managed_apps Originally defined in module ManagementHistory
shortcut for app_store_app_history where status = :failed
permalink #failed_ebooks ⇒ Object Also known as: failed_managed_ebooks Originally defined in module ManagementHistory
shortcut for ebook_history where status = :failed
permalink #failed_mdm_commands ⇒ Object Also known as: failed_commands Originally defined in module ManagementHistory
The failed_mdm_commands for this object
permalink #failed_policies ⇒ Object Originally defined in module ManagementHistory
The array from .policy_logs, limited to status = :failed
permalink #filevault1_accounts ⇒ Array<Hash>
Returns The local_accounts Array that have Legacy FV enabled.
894 895 896 897 |
# File 'lib/jss/api_object/computer.rb', line 894 def filevault1_accounts return [] if filevault2_enabled? local_accounts.select { |a| a[:filevault_enabled] } end |
permalink #filevault2_enabled? ⇒ Boolean
Returns is FileVault2 enabled?.
888 889 890 |
# File 'lib/jss/api_object/computer.rb', line 888 def filevault2_enabled? boot_drive[:partition][:filevault2_status] != 'Not Encrypted' end |
permalink #flush_mdm_commands(status) ⇒ void Originally defined in module MDM
This method returns an undefined value.
flush pending and/or failed MDM commands for this object
permalink #has_location? ⇒ Boolean Originally defined in module Locatable
Returns Does this item have location data?.
permalink #has_purchasing? ⇒ Boolean Originally defined in module Purchasable
Returns does this item have any purchasing info?.
permalink #installed_app_store_apps ⇒ Object Also known as: installed_managed_apps Originally defined in module ManagementHistory
shortcut for app_store_app_history where status = :installed
permalink #installed_ebooks ⇒ Object Also known as: installed_managed_ebooks Originally defined in module ManagementHistory
shortcut for ebook_history where status = :installed
permalink #last_mdm_contact ⇒ Object Originally defined in module ManagementHistory
The time of the last completed mdm command for this object
permalink #licensed_sw ⇒ Array<String>
Returns the JSS-defined “licensed software” titles installed on this machine.
928 929 930 |
# File 'lib/jss/api_object/computer.rb', line 928 def licensed_sw @software[:licensed_software] end |
permalink #local_accounts ⇒ Array<Hash> Also known as: accounts, accts
Each item has keys :name, :realname, :uid, :home, :home_size, :administrator, :filevault_enabled
882 883 884 |
# File 'lib/jss/api_object/computer.rb', line 882 def local_accounts @groups_accounts[:local_accounts] end |
permalink #location ⇒ Hash<String> Originally defined in module Locatable
All the location data in a Hash, as it comes from the API.
The reason it isn’t stored this way is to prevent editing of the hash directly.
permalink #location_xml ⇒ REXML::Element Originally defined in module Locatable
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Return a REXML <location> element to be included in the rest_xml of objects that have a Location subset
permalink #mac_app_store_app_history(status = nil) ⇒ Object Originally defined in module ManagementHistory
The mac_app_store_app_history for this computer
permalink #make_unmanaged ⇒ void
1031 1032 1033 1034 1035 |
# File 'lib/jss/api_object/computer.rb', line 1031 def make_unmanaged return nil unless managed? set_management_to(nil, nil) @unmange_at_update = true end |
permalink #management_data(subset: nil, only: nil) ⇒ Object
The ‘computer management’ data for this computer
NOTE: the data isn’t cached locally, and the API is queried every time
946 947 948 949 |
# File 'lib/jss/api_object/computer.rb', line 946 def management_data(subset: nil, only: nil) raise JSS::NoSuchItemError, 'Computer not yet saved in the JSS' unless @in_jss JSS::Computer.management_data @id, subset: subset, only: only, api: @api end |
permalink #management_history(subset = nil) ⇒ Object Also known as: history Originally defined in module ManagementHistory
The raw management history data for this object
permalink #mdm_command_history(status = nil) ⇒ Object Also known as: commands, management_command_history Originally defined in module ManagementHistory
The mdm_command_history for this object
permalink #mobile_device_app_history(status = nil) ⇒ Object Originally defined in module ManagementHistory
The mobile_device_app_history for this mobile device
permalink #name=(newname) ⇒ void Originally defined in module Updatable
This method returns an undefined value.
Change the name of this item Remember to #update to push changes to the server.
permalink #parse_ext_attrs ⇒ void Originally defined in module Extendable
This method returns an undefined value.
Populate @extension_attributes (the Array of Hashes that comes from the API) and @ext_attr_names, which is a Hash mapping the EA names to their values. This is called during initialization for all objects that mix in this module
permalink #parse_location ⇒ void Originally defined in module Locatable
This method returns an undefined value.
Call this during initialization of objects that have a Location subset and the location attributes will be populated (as primary attributes) from @init_data
permalink #parse_purchasing ⇒ Object Originally defined in module Purchasable
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Call this during initialization of objects that have a Purchasing subset and the purchasing attribute will be populated from @init_data
permalink #passcode_lock_grace_period(secs) ⇒ Object Originally defined in module MDM
Send a passcode_lock_grace_period command to this object
permalink #patch_titles(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :patch_reporting_software_titles’
995 996 997 |
# File 'lib/jss/api_object/computer.rb', line 995 def patch_titles(only: nil) management_data subset: :patch_reporting_software_titles, only: only end |
permalink #pending_app_store_apps ⇒ Object Also known as: pending_managed_apps Originally defined in module ManagementHistory
shortcut for app_store_app_history where status = :pending
permalink #pending_ebooks ⇒ Object Also known as: pending_managed_ebooks Originally defined in module ManagementHistory
shortcut for ebook_history where status = :pending
permalink #pending_mdm_commands ⇒ Object Also known as: pending_commands Originally defined in module ManagementHistory
The pending_mdm_commands for this object
permalink #play_lost_mode_sound ⇒ Object Originally defined in module MDM
Send a play_lost_mode_sound command to this object
permalink #policies(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :policies’
965 966 967 |
# File 'lib/jss/api_object/computer.rb', line 965 def policies(only: nil) management_data subset: :policies, only: only end |
permalink #policy_logs ⇒ Object Originally defined in module ManagementHistory
The policy_logs for this computer
permalink #printers ⇒ Array<Hash>
Returns each printer on this computer Keys are :name, :uri, :type, :location.
914 915 916 |
# File 'lib/jss/api_object/computer.rb', line 914 def printers @hardware[:mapped_printers] end |
permalink #purchasing ⇒ Hash<String> Originally defined in module Purchasable
All the purchasing data in a Hash, as it comes from the API.
The reason it isn’t stored this way is to prevent editing of the hash directly.
permalink #purchasing_xml ⇒ REXML::Element Originally defined in module Purchasable
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns A <purchasing> element to be included in the rest_xml of objects that mix-in this module.
permalink #respond_to_missing?(method) ⇒ Boolean
Companion to method_missing, allows for easier debugging in backtraces that involve missing methods.
868 869 870 |
# File 'lib/jss/api_object/computer.rb', line 868 def respond_to_missing?(method, *) @hardware.key?(method) || super end |
permalink #restart_device ⇒ Object Also known as: restart Originally defined in module MDM
Send a restart_device command to this object
permalink #restricted_software(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :restricted_software’
989 990 991 |
# File 'lib/jss/api_object/computer.rb', line 989 def restricted_software(only: nil) management_data subset: :restricted_software, only: only end |
permalink #screen_sharing_logs ⇒ Object Originally defined in module ManagementHistory
The screen_sharing_logs for this computer
permalink #set_ext_attr(name, value, validate_popup_choice: true, refresh: false) ⇒ void Originally defined in module Extendable
This method returns an undefined value.
Set the value of an extension attribute
The new value is validated based on the data type of the Ext. Attrib:
-
If the ext. attrib. is defined with a data type of Integer/Number, the value must be an Integer.
-
If defined with a data type of Date, the value will be parsed as a timestamp, and parsing may raise an exception. Dates can’t be blank.
-
If defined wth data type of String, ‘to_s` will be called on the value.
By default, the full EA definition object is fetched to see if the EA’s input type is ‘popup menu’, and if so, the new value must be one of the defined popup choices, or blank.
The EA definitions used for popup validation are cached, so we don’t have to reach out to the server every time. If you expect the definition to have changed since it was cached, provide a truthy value to the refresh: parameter
To bypass popup validation complepletely, provide a falsey value to the validate_popup_choice: parameter. WARNING: beware that your value is the correct type and format, or you might get errors when saving back to the API.
Note that while the Jamf Pro Web interface does not allow editing the values of Extension Attributes populated by Scripts or LDAP, the API does allow it. Bear in mind however that those values will be reset again at the next recon.
permalink #set_management_to(name, password) ⇒ void Also known as: make_managed
This method returns an undefined value.
Set or unset management acct and password for this computer
The changes will need to be pushed to the server with #update before they take effect.
CAUTION: this does nothing to confirm the name and password will work on the machine!
1013 1014 1015 1016 1017 1018 1019 |
# File 'lib/jss/api_object/computer.rb', line 1013 def set_management_to(name, password) password = nil unless name @management_username = name @management_password = password @managed = name ? true : false @need_to_update = true end |
permalink #shut_down_device ⇒ Object Also known as: shutdown_device, shut_down, shutdown Originally defined in module MDM
Send a shut_down_device command to this object
permalink #site=(new_site) ⇒ void Originally defined in module Sitable
This method returns an undefined value.
Change the site of this object. Any of the NON_SITES values will unset the site
permalink #site_assigned? ⇒ Boolean Originally defined in module Sitable
Does this object have a site assigned?
permalink #site_id ⇒ Integer Originally defined in module Sitable
The id of the site for this object.
permalink #site_name ⇒ String Also known as: site Originally defined in module Sitable
The name of the site for this object. For backward compatibility, this is aliased to just ‘site’
permalink #site_object ⇒ JSS::Site Originally defined in module Sitable
The JSS::Site instance for this object’s site
permalink #smart_groups(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :smart_groups’
953 954 955 |
# File 'lib/jss/api_object/computer.rb', line 953 def smart_groups(only: nil) management_data subset: :smart_groups, only: only end |
permalink #static_groups(only: nil) ⇒ Object
A shortcut for ‘management_data subset: :static_groups’
959 960 961 |
# File 'lib/jss/api_object/computer.rb', line 959 def static_groups(only: nil) management_data subset: :static_groups, only: only end |
permalink #unlock_user_account(user) ⇒ Object Originally defined in module MDM
Send an unlock_user_account command to this computer or group
permalink #unmanage_device ⇒ Object Also known as: remove_mdm_profile Originally defined in module MDM
Send an unmanage device command to this object
NOTE: when used with computers, the mdm profile will probably be re-installed immediately unless the computer is also no longer managed by Jamf Pro itself. To fully unmanage a computer, use the Computer#make_unmanaged instance method.
permalink #unsaved_eas? ⇒ Boolean Originally defined in module Extendable
are there any changes in the EAs needing to be saved?
permalink #unset_site ⇒ void Originally defined in module Sitable
This method returns an undefined value.
Set the site to nothing
permalink #update ⇒ void
This method returns an undefined value.
Send changes to the API
1093 1094 1095 1096 1097 |
# File 'lib/jss/api_object/computer.rb', line 1093 def update remove_mdm_profile if mdm_capable && @unmange_at_update @unmange_at_update = false super end |
permalink #update_inventory ⇒ Object Also known as: recon Originally defined in module MDM
Send an update_inventory command to this object
permalink #upload(type, local_file) ⇒ String Originally defined in module Uploadable
Upload a file to the JSS via the REST Resource of the object to which this module is mixed in.
permalink #user_location_history ⇒ Object Originally defined in module ManagementHistory
The user_location_history for this object
permalink #validate_popup_value(name, value, refresh) ⇒ Object Originally defined in module Extendable
Used by set_ext_attr