Module: Jamf::MDM
- Included in:
- Computer, ComputerGroup, MobileDevice, MobileDeviceGroup
- Defined in:
- lib/jamf/api/classic/api_objects/mdm.rb
Overview
This module provides the ability to work with MDM commands for objects that can receive them.
Objects mixing in this module MUST:
-
Define the constant MDM_COMMAND_TARGET - One of:
:computers, :computergroups, :mobiledevices, :mobiledevicegroups
Defined Under Namespace
Modules: ClassMethods
Constant Summary collapse
- COMPUTER_TARGETS =
These targets are computers
%i[computers computergroups].freeze
- COMPUTER_RSRC =
The API resource for sending computer commands
'computercommands'.freeze
- DEVICE_TARGETS =
These targets are mobile devices
%i[mobiledevices mobiledevicegroups].freeze
- DEVICE_RSRC =
the API resource for sending device commands
'mobiledevicecommands'.freeze
- GROUP_TARGETS =
These targets are groups, and need their member ids expanded for sending commands
%i[computergroups mobiledevicegroups].freeze
- BLANK_PUSH =
Both computers & devices
'BlankPush'.freeze
- DEVICE_LOCK =
'DeviceLock'.freeze
- ERASE_DEVICE =
'EraseDevice'.freeze
- UNMANGE_DEVICE =
'UnmanageDevice'.freeze
- DELETE_USER =
computers only
'DeleteUser'.freeze
- UNLOCK_USER_ACCOUNT =
'UnlockUserAccount'.freeze
- ENABLE_REMOTE_DESKTOP =
'EnableRemoteDesktop'.freeze
- DISABLE_REMOTE_DESKTOP =
'DisableRemoteDesktop'.freeze
- SETTINGS =
devices
'Settings'.freeze
- CLEAR_PASSCODE =
'ClearPasscode'.freeze
- UPDATE_INVENTORY =
'UpdateInventory'.freeze
- CLEAR_RESTRICTIONS_PASSWORD =
'ClearRestrictionsPassword'.freeze
- ENABLE_DATA_ROAMING =
'SettingsEnableDataRoaming'.freeze
- DISABLE_DATA_ROAMING =
'SettingsDisableDataRoaming'.freeze
- ENABLE_VOICE_ROAMING =
'SettingsEnableVoiceRoaming'.freeze
- DISABLE_VOICE_ROAMING =
'SettingsDisableVoiceRoaming'.freeze
- PASSCODE_LOCK_GRACE_PERIOD =
shared ipads only
'PasscodeLockGracePeriod'.freeze
- WALLPAPER =
supervised devices
'Wallpaper'.freeze
- DEVICE_NAME =
'DeviceName'.freeze
- SHUTDOWN_DEVICE =
'ShutDownDevice'.freeze
- RESTART_DEVICE =
'RestartDevice'.freeze
- ENABLE_LOST_MODE =
'EnableLostMode'.freeze
- DISABLE_LOST_MODE =
'DisableLostMode'.freeze
- DEVICE_LOCATION =
'DeviceLocation'.freeze
- PLAY_LOST_MODE_SOUND =
'PlayLostModeSound'.freeze
- ENABLE_APP_ANALYTICS =
'SettingsEnableAppAnalytics'.freeze
- DISABLE_APP_ANALYTICS =
'SettingsDisableAppAnalytics'.freeze
- ENABLE_DIAGNOSTIC_SUBMISSION =
'SettingsEnableDiagnosticSubmission'.freeze
- DISABLE_DIAGNOSTIC_SUBMISSION =
'SettingsDisableDiagnosticSubmission'.freeze
- COMPUTER_COMMANDS =
The MDM commands applicable to computers
[ BLANK_PUSH, DEVICE_LOCK, ERASE_DEVICE, UNMANGE_DEVICE, DELETE_USER, UNLOCK_USER_ACCOUNT, ENABLE_REMOTE_DESKTOP, DISABLE_REMOTE_DESKTOP ].freeze
- ALL_DEVICE_COMMANDS =
The MDM commands applicable to all mobile devices
[ BLANK_PUSH, DEVICE_LOCK, ERASE_DEVICE, UNMANGE_DEVICE, SETTINGS, CLEAR_PASSCODE, UPDATE_INVENTORY, ENABLE_DATA_ROAMING, DISABLE_DATA_ROAMING, ENABLE_VOICE_ROAMING, DISABLE_VOICE_ROAMING, PASSCODE_LOCK_GRACE_PERIOD ].freeze
- SUPERVISED_DEVICE_COMMANDS =
The MDM commands applicable to supervised mobile devices
[ WALLPAPER, DEVICE_NAME, SHUTDOWN_DEVICE, RESTART_DEVICE, CLEAR_RESTRICTIONS_PASSWORD, ENABLE_LOST_MODE, DISABLE_LOST_MODE, DEVICE_LOCATION, PLAY_LOST_MODE_SOUND, ENABLE_APP_ANALYTICS, DISABLE_APP_ANALYTICS, ENABLE_DIAGNOSTIC_SUBMISSION, DISABLE_DIAGNOSTIC_SUBMISSION ].freeze
- DEVICE_COMMANDS =
The MDM commands applicable to mobile devices
ALL_DEVICE_COMMANDS + SUPERVISED_DEVICE_COMMANDS
- COMMANDS =
Symbols that can be used to represent the commands to the send_mdm_command Class method. Alternates are provided to match both the actual API command, and the command label in the JSS web UI, as well as common variants. e.g. the DeviceLock command in the API, is recognized as: :device_lock and :lock_device, and just :lock
{ # all objects blank_push: BLANK_PUSH, send_blank_push: BLANK_PUSH, noop: BLANK_PUSH, device_lock: DEVICE_LOCK, lock_device: DEVICE_LOCK, lock: DEVICE_LOCK, erase_device: ERASE_DEVICE, wipe_device: ERASE_DEVICE, wipe_computer: ERASE_DEVICE, wipe: ERASE_DEVICE, erase: ERASE_DEVICE, unmanage_device: UNMANGE_DEVICE, remove_mdm_profile: UNMANGE_DEVICE, # computers only unlock_user_account: UNLOCK_USER_ACCOUNT, delete_user: DELETE_USER, enable_remote_desktop: ENABLE_REMOTE_DESKTOP, disable_remote_desktop: DISABLE_REMOTE_DESKTOP, # mobile devices only settings: SETTINGS, # not yet implemented as its own method update_inventory: UPDATE_INVENTORY, recon: UPDATE_INVENTORY, clear_passcode: CLEAR_PASSCODE, clear_restrictions_password: CLEAR_RESTRICTIONS_PASSWORD, enable_data_roaming: ENABLE_DATA_ROAMING, disable_data_roaming: DISABLE_DATA_ROAMING, enable_voice_roaming: ENABLE_VOICE_ROAMING, disable_voice_roaming: DISABLE_VOICE_ROAMING, # supervized mobile devices only device_name: DEVICE_NAME, # implemented as part of MobileDevice.name= wallpaper: WALLPAPER, set_wallpaper: WALLPAPER, passcode_lock_grace_period: PASSCODE_LOCK_GRACE_PERIOD, shut_down_device: SHUTDOWN_DEVICE, shutdown_device: SHUTDOWN_DEVICE, shut_down: SHUTDOWN_DEVICE, shutdown: SHUTDOWN_DEVICE, restart_device: RESTART_DEVICE, restart: RESTART_DEVICE, enable_app_analytics: ENABLE_APP_ANALYTICS, disable_app_analytics: DISABLE_APP_ANALYTICS, enable_diagnostic_submission: ENABLE_DIAGNOSTIC_SUBMISSION, disable_diagnostic_submission: DISABLE_DIAGNOSTIC_SUBMISSION, enable_lost_mode: ENABLE_LOST_MODE, disable_lost_mode: DISABLE_LOST_MODE, device_location: DEVICE_LOCATION, # not yet implemented as its own method play_lost_mode_sound: PLAY_LOST_MODE_SOUND }.freeze
- COMMAND_DATA =
Command Data
{ DEVICE_LOCK => :passcode, # 6 char passcode ERASE_DEVICE => String, # 6 char passcode DELETE_USER => String, # username UNLOCK_USER_ACCOUNT => String # username }.freeze
- WALLPAPER_LOCATIONS =
{ lock_screen: 1, home_screen: 2, lock_and_home_screen: 3 }.freeze
- PENDING_STATUS =
the status to flush for 'pending'
'Pending'.freeze
- FAILED_STATUS =
the status to flush for 'failed'
'Failed'.freeze
- PENDINGFAILED_STATUS =
the status to flush for both pending and failed
'Pending+Failed'.freeze
- FLUSHABLE_STATUSES =
{ pending: PENDING_STATUS, failed: FAILED_STATUS, pending_failed: PENDINGFAILED_STATUS }.freeze
- BLANK_PUSH_RESULT =
'Command sent'.freeze
- GENERAL_ELEMENT =
xml elements
'general'.freeze
- COMMAND_ELEMENT =
'command'.freeze
- TARGET_ID_ELEMENT =
'id'.freeze
- COMPUTER_COMMAND_ELEMENT =
'computer_command'.freeze
- COMPUTER_ID_ELEMENT =
'computer_id'.freeze
- COMPUTER_COMMAND_UDID_ELEMENT =
'command_uuid'.freeze
- DEVICE_COMMAND_ELEMENT =
'mobile_device_command'.freeze
- DEVICE_LIST_ELEMENT =
'mobile_devices'.freeze
- DEVICE_ID_ELEMENT =
'id'.freeze
- DEVICE_COMMAND_STATUS_ELEMENT =
'status'.freeze
Class Method Summary collapse
-
.included(klass) ⇒ Object
Extend ourself when included.
Instance Method Summary collapse
-
#blank_push ⇒ void
(also: #send_blank_push, #noop)
Send a blank push to this object.
-
#clear_passcode ⇒ Object
Send an clear_passcode command to this object.
-
#clear_restrictions_password ⇒ Object
Send an clear_restrictions_password command to this object.
-
#delete_user(user) ⇒ Object
Send a delete_user command to this computer or group.
-
#device_lock(passcode_or_message = '') ⇒ Object
(also: #lock, #lock_device)
Send a dev lock to this object.
-
#device_name(name) ⇒ Object
(also: #set_name, #set_device_name)
Send a device_name command to this object.
-
#disable_app_analytics ⇒ Object
Send a disable_app_analytics command to this object.
-
#disable_data_roaming ⇒ Object
Send a disable_data_roaming command to this object.
-
#disable_diagnostic_submission ⇒ Object
Send a disable_diagnostic_submission command to this object.
-
#disable_lost_mode ⇒ Object
Send a disable_lost_mode command to this object.
-
#disable_remote_desktop ⇒ Object
Send a disable_remote_desktop command to this computer or group.
-
#disable_voice_roaming ⇒ Object
Send a disable_voice_roaming command to this object.
-
#enable_app_analytics ⇒ Object
Send an enable_app_analytics command to this object.
-
#enable_data_roaming ⇒ Object
Send an enable_data_roaming command to this object.
-
#enable_diagnostic_submission ⇒ Object
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
Send a enable_lost_mode command to one or more targets.
-
#enable_remote_desktop ⇒ Object
Send an enable_remote_desktop command to this computer or group.
-
#enable_voice_roaming ⇒ Object
Send an enable_voice_roaming command to this object.
-
#erase_device(passcode = '', preserve_data_plan: false) ⇒ Object
(also: #wipe_device, #wipe_computer, #wipe, #erase)
Send an erase device command to this object.
-
#flush_mdm_commands(status) ⇒ void
flush pending and/or failed MDM commands for this object.
-
#passcode_lock_grace_period(secs) ⇒ Object
Send a passcode_lock_grace_period command to this object.
-
#play_lost_mode_sound ⇒ Object
Send a play_lost_mode_sound command to this object.
-
#restart_device ⇒ Object
(also: #restart)
Send a restart_device command to this object.
-
#shut_down_device ⇒ Object
(also: #shutdown_device, #shut_down, #shutdown)
Send a shut_down_device command to this object.
-
#unlock_user_account(user) ⇒ Object
Send an unlock_user_account command to this computer or group.
-
#unmanage_device ⇒ Object
(also: #remove_mdm_profile)
Send an unmanage device command to this object.
-
#update_inventory ⇒ Object
(also: #recon)
Send an update_inventory command to this object.
-
#wallpaper(wallpaper_setting: nil, wallpaper_content: nil, wallpaper_id: nil) ⇒ Object
(also: #set_wallpaper)
Send a wallpaper command to this object.
Class Method Details
.included(klass) ⇒ Object
Extend ourself when included
1085 1086 1087 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1085 def self.included(klass) klass.extend Jamf::MDM::ClassMethods end |
Instance Method Details
#blank_push ⇒ void Also known as: send_blank_push, noop
This method returns an undefined value.
Send a blank push to this object
1102 1103 1104 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1102 def blank_push self.class.send_blank_push @id, cnx: @cnx end |
#clear_passcode ⇒ Object
Send an clear_passcode command to this object
1206 1207 1208 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1206 def clear_passcode self.class.clear_passcode @id, cnx: @cnx end |
#clear_restrictions_password ⇒ Object
Send an clear_restrictions_password command to this object
1214 1215 1216 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1214 def clear_restrictions_password self.class.clear_restrictions_password @id, cnx: @cnx end |
#delete_user(user) ⇒ Object
Send a delete_user command to this computer or group
1168 1169 1170 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1168 def delete_user(user) self.class.delete_user @id, user, cnx: @cnx end |
#device_lock(passcode_or_message = '') ⇒ Object Also known as: lock, lock_device
Send a dev lock to this object
1115 1116 1117 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1115 def device_lock( = '') self.class.device_lock @id, passcode: , message: , cnx: @cnx end |
#device_name(name) ⇒ Object Also known as: set_name, set_device_name
Send a device_name command to this object
1263 1264 1265 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1263 def device_name(name) self.class.device_name @id, name, cnx: @cnx end |
#disable_app_analytics ⇒ Object
Send a disable_app_analytics command to this object
1333 1334 1335 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1333 def disable_app_analytics self.class.disable_app_analytics @id, cnx: @cnx end |
#disable_data_roaming ⇒ Object
Send a disable_data_roaming command to this object
1230 1231 1232 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1230 def disable_data_roaming self.class.disable_data_roaming @id, cnx: @cnx end |
#disable_diagnostic_submission ⇒ Object
Send a disable_diagnostic_submission command to this object
1349 1350 1351 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1349 def disable_diagnostic_submission self.class.disable_diagnostic_submission @id, cnx: @cnx end |
#disable_lost_mode ⇒ Object
Send a disable_lost_mode command to this object
1398 1399 1400 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1398 def disable_lost_mode self.class.disable_lost_mode @id, cnx: @cnx end |
#disable_remote_desktop ⇒ Object
Send a disable_remote_desktop command to this computer or group
1184 1185 1186 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1184 def disable_remote_desktop self.class.disable_remote_desktop @id, cnx: @cnx end |
#disable_voice_roaming ⇒ Object
Send a disable_voice_roaming command to this object
1246 1247 1248 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1246 def disable_voice_roaming self.class.disable_voice_roaming @id, cnx: @cnx end |
#enable_app_analytics ⇒ Object
Send an enable_app_analytics command to this object
1325 1326 1327 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1325 def enable_app_analytics self.class.enable_app_analytics @id, cnx: @cnx end |
#enable_data_roaming ⇒ Object
Send an enable_data_roaming command to this object
1222 1223 1224 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1222 def enable_data_roaming self.class.enable_data_roaming @id, cnx: @cnx end |
#enable_diagnostic_submission ⇒ Object
Send an enable_diagnostic_submission command to this object
1341 1342 1343 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1341 def enable_diagnostic_submission self.class.enable_diagnostic_submission @id, cnx: @cnx end |
#enable_lost_mode(message: nil, phone_number: nil, footnote: nil, enforce_lost_mode: true, play_sound: false) ⇒ Object
Send a enable_lost_mode command to one or more targets
Either or both of message and phone number must be provided
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1369 def enable_lost_mode( message: nil, phone_number: nil, footnote: nil, enforce_lost_mode: true, play_sound: false ) self.class.enable_lost_mode( @id, message: , phone_number: phone_number, footnote: footnote, play_sound: play_sound, enforce_lost_mode: enforce_lost_mode, cnx: @cnx ) end |
#enable_remote_desktop ⇒ Object
Send an enable_remote_desktop command to this computer or group
1176 1177 1178 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1176 def enable_remote_desktop self.class.enable_remote_desktop @id, cnx: @cnx end |
#enable_voice_roaming ⇒ Object
Send an enable_voice_roaming command to this object
1238 1239 1240 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1238 def enable_voice_roaming self.class.enable_voice_roaming @id, cnx: @cnx end |
#erase_device(passcode = '', preserve_data_plan: false) ⇒ Object Also known as: wipe_device, wipe_computer, wipe, erase
Send an erase device command to this object
1127 1128 1129 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1127 def erase_device(passcode = '', preserve_data_plan: false) self.class.erase_device @id, passcode: passcode, preserve_data_plan: preserve_data_plan, cnx: @cnx end |
#flush_mdm_commands(status) ⇒ void
This method returns an undefined value.
flush pending and/or failed MDM commands for this object
1411 1412 1413 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1411 def flush_mdm_commands(status) self.class.flush_mdm_commands @id, status: status, cnx: @cnx end |
#passcode_lock_grace_period(secs) ⇒ Object
Send a passcode_lock_grace_period command to this object
1297 1298 1299 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1297 def passcode_lock_grace_period(secs) self.class.passcode_lock_grace_period @id, secs, cnx: @cnx end |
#play_lost_mode_sound ⇒ Object
Send a play_lost_mode_sound command to this object
1390 1391 1392 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1390 def play_lost_mode_sound self.class.play_lost_mode_sound @id, cnx: @cnx end |
#restart_device ⇒ Object Also known as: restart
Send a restart_device command to this object
1316 1317 1318 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1316 def restart_device self.class.restart_device @id, cnx: @cnx end |
#shut_down_device ⇒ Object Also known as: shutdown_device, shut_down, shutdown
Send a shut_down_device command to this object
1305 1306 1307 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1305 def shut_down_device self.class.shut_down_device @id, cnx: @cnx end |
#unlock_user_account(user) ⇒ Object
Send an unlock_user_account command to this computer or group
1158 1159 1160 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1158 def unlock_user_account(user) self.class.unlock_user_account @id, user, cnx: @cnx end |
#unmanage_device ⇒ Object Also known as: remove_mdm_profile
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.
1144 1145 1146 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1144 def unmanage_device self.class.unmanage_device @id, cnx: @cnx end |
#update_inventory ⇒ Object Also known as: recon
Send an update_inventory command to this object
1197 1198 1199 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1197 def update_inventory self.class.update_inventory @id, cnx: @cnx end |
#wallpaper(wallpaper_setting: nil, wallpaper_content: nil, wallpaper_id: nil) ⇒ Object Also known as: set_wallpaper
Send a wallpaper command to this object
1281 1282 1283 1284 1285 1286 1287 1288 |
# File 'lib/jamf/api/classic/api_objects/mdm.rb', line 1281 def wallpaper(wallpaper_setting: nil, wallpaper_content: nil, wallpaper_id: nil) self.class.wallpaper( @id, wallpaper_setting: wallpaper_setting, wallpaper_content: wallpaper_content, wallpaper_id: wallpaper_id, cnx: @cnx ) end |