Module: JSS::MDM

Included in:
Computer, ComputerGroup, MobileDevice, MobileDeviceGroup
Defined in:
lib/jss/api_object/mdm.rb,
lib/jss.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

Instance Method Summary collapse

Class Method Details

.included(klass) ⇒ Object

Extend ourself when included

See Also:

  • {JSS{JSS::MDM{JSS::MDM::ClassMethods}


1024
1025
1026
# File 'lib/jss/api_object/mdm.rb', line 1024

def self.included(klass)
  klass.extend JSS::MDM::ClassMethods
end

Instance Method Details

#blank_pushvoid Also known as: send_blank_push, noop

This method returns an undefined value.

Send a blank push to this object



1041
1042
1043
# File 'lib/jss/api_object/mdm.rb', line 1041

def blank_push
  self.class.send_blank_push @id, api: @api
end

#clear_passcodeObject

Send an clear_passcode command to this object



1145
1146
1147
# File 'lib/jss/api_object/mdm.rb', line 1145

def clear_passcode
  self.class.clear_passcode @id, api: @api
end

#clear_restrictions_passwordObject

Send an clear_restrictions_password command to this object



1153
1154
1155
# File 'lib/jss/api_object/mdm.rb', line 1153

def clear_restrictions_password
  self.class.clear_restrictions_password @id, api: @api
end

#delete_user(user) ⇒ Object

Send a delete_user command to this computer or group

Parameters:

  • user (String)

    the username of the acct to delete



1107
1108
1109
# File 'lib/jss/api_object/mdm.rb', line 1107

def delete_user(user)
  self.class.delete_user @id, user, api: @api
end

#device_lock(passcode_or_message = '') ⇒ Object Also known as: lock, lock_device

Send a dev lock to this object

Parameters:

  • passcode_or_message (String) (defaults to: '')

    a six-char passcode, required for computers & computergroups Or an optional message to display on mobiledevices & mobiledevicegroups



1054
1055
1056
# File 'lib/jss/api_object/mdm.rb', line 1054

def device_lock(passcode_or_message = '')
  self.class.device_lock @id, passcode: passcode_or_message, message: passcode_or_message, api: @api
end

#device_name(name) ⇒ Object Also known as: set_name, set_device_name

Send a device_name command to this object

Parameters:

  • name (String)

    The new name



1202
1203
1204
# File 'lib/jss/api_object/mdm.rb', line 1202

def device_name(name)
  self.class.device_name @id, name, api: @api
end

#disable_app_analyticsObject

Send a disable_app_analytics command to this object



1273
1274
1275
# File 'lib/jss/api_object/mdm.rb', line 1273

def disable_app_analytics
  self.class.disable_app_analytics @id, api: @api
end

#disable_data_roamingObject

Send a disable_data_roaming command to this object



1169
1170
1171
# File 'lib/jss/api_object/mdm.rb', line 1169

def disable_data_roaming
  self.class.disable_data_roaming @id, api: @api
end

#disable_diagnostic_submissionObject

Send a disable_diagnostic_submission command to this object



1289
1290
1291
# File 'lib/jss/api_object/mdm.rb', line 1289

def disable_diagnostic_submission
  self.class.disable_diagnostic_submission @id, api: @api
end

#disable_lost_modeObject

Send a disable_lost_mode command to this object



1339
1340
1341
# File 'lib/jss/api_object/mdm.rb', line 1339

def disable_lost_mode
  self.class.disable_lost_mode @id, api: @api
end

#disable_remote_desktopObject

Send a disable_remote_desktop command to this computer or group



1123
1124
1125
# File 'lib/jss/api_object/mdm.rb', line 1123

def disable_remote_desktop
  self.class.disable_remote_desktop @id, api: @api
end

#disable_voice_roamingObject

Send a disable_voice_roaming command to this object



1185
1186
1187
# File 'lib/jss/api_object/mdm.rb', line 1185

def disable_voice_roaming
  self.class.disable_voice_roaming @id, api: @api
end

#enable_app_analyticsObject

Send an enable_app_analytics command to this object



1265
1266
1267
# File 'lib/jss/api_object/mdm.rb', line 1265

def enable_app_analytics
  self.class.enable_app_analytics @id, api: @api
end

#enable_data_roamingObject

Send an enable_data_roaming command to this object



1161
1162
1163
# File 'lib/jss/api_object/mdm.rb', line 1161

def enable_data_roaming
  self.class.enable_data_roaming @id, api: @api
end

#enable_diagnostic_submissionObject

Send an enable_diagnostic_submission command to this object



1281
1282
1283
# File 'lib/jss/api_object/mdm.rb', line 1281

def enable_diagnostic_submission
  self.class.enable_diagnostic_submission @id, api: @api
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

Parameters:

  • message (String) (defaults to: nil)

    The message to display on the lock screen

  • phone_number (String) (defaults to: nil)

    The phone number to display on the lock screen

  • footnote (String) (defaults to: nil)

    Optional footnote to display on the lock screen

  • play_sound (Boolean) (defaults to: false)

    Play a sound when entering lost mode

  • enforce_lost_mode (Boolean) (defaults to: true)

    Re-enabled lost mode when re-enrolled after wipe.



1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
# File 'lib/jss/api_object/mdm.rb', line 1309

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: message,
    phone_number: phone_number,
    footnote: footnote,
    play_sound: play_sound,
    enforce_lost_mode: enforce_lost_mode,
    api: @api
  )
end

#enable_remote_desktopObject

Send an enable_remote_desktop command to this computer or group



1115
1116
1117
# File 'lib/jss/api_object/mdm.rb', line 1115

def enable_remote_desktop
  self.class.enable_remote_desktop @id, api: @api
end

#enable_voice_roamingObject

Send an enable_voice_roaming command to this object



1177
1178
1179
# File 'lib/jss/api_object/mdm.rb', line 1177

def enable_voice_roaming
  self.class.enable_voice_roaming @id, api: @api
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

Parameters:

  • passcode (String) (defaults to: '')

    a six-char passcode, required for computers & computergroups



1066
1067
1068
# File 'lib/jss/api_object/mdm.rb', line 1066

def erase_device(passcode = '', preserve_data_plan: false)
  self.class.erase_device @id, passcode: passcode, preserve_data_plan: preserve_data_plan, api: @api
end

#flush_mdm_commands(status) ⇒ void

This method returns an undefined value.

flush pending and/or failed MDM commands for this object

Parameters:

  • status (String)

    a key from Commandable::FLUSHABLE_STATUSES



1352
1353
1354
# File 'lib/jss/api_object/mdm.rb', line 1352

def flush_mdm_commands(status)
  self.class.flush_mdm_commands @id, status: status, api: @api
end

#passcode_lock_grace_period(secs) ⇒ Object

Send a passcode_lock_grace_period command to this object

Parameters:

  • secs (Integer)

    The numer of seconds for the grace period



1237
1238
1239
# File 'lib/jss/api_object/mdm.rb', line 1237

def passcode_lock_grace_period(secs)
  self.class.passcode_lock_grace_period @id, secs, api: @api
end

#play_lost_mode_soundObject

Send a play_lost_mode_sound command to this object



1331
1332
1333
# File 'lib/jss/api_object/mdm.rb', line 1331

def play_lost_mode_sound
  self.class.play_lost_mode_sound @id, api: @api
end

#restart_deviceObject Also known as: restart

Send a restart_device command to this object



1256
1257
1258
# File 'lib/jss/api_object/mdm.rb', line 1256

def restart_device
  self.class.restart_device @id, api: @api
end

#shut_down_deviceObject Also known as: shutdown_device, shut_down, shutdown

Send a shut_down_device command to this object



1245
1246
1247
# File 'lib/jss/api_object/mdm.rb', line 1245

def shut_down_device
  self.class.shut_down_device @id, api: @api
end

#unlock_user_account(user) ⇒ Object

Send an unlock_user_account command to this computer or group

Parameters:

  • user (String)

    the username of the acct to unlock



1097
1098
1099
# File 'lib/jss/api_object/mdm.rb', line 1097

def (user)
  self.class. @id, user, api: @api
end

#unmanage_deviceObject 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.



1083
1084
1085
# File 'lib/jss/api_object/mdm.rb', line 1083

def unmanage_device
  self.class.unmanage_device @id, api: @api
end

#update_inventoryObject Also known as: recon

Send an update_inventory command to this object



1136
1137
1138
# File 'lib/jss/api_object/mdm.rb', line 1136

def update_inventory
  self.class.update_inventory @id, api: @api
end

#wallpaper(wallpaper_setting: nil, wallpaper_content: nil, wallpaper_id: nil) ⇒ Object Also known as: set_wallpaper

Send a wallpaper command to this object

Parameters:

  • wallpaper_setting (Symbol) (defaults to: nil)

    :lock_screen, :home_screen, or :lock_and_home_screen

  • wallpaper_content (String, Pathname) (defaults to: nil)

    The local path to a .png or .jpg to use as the walpaper image, required if no wallpaper_id

  • wallpaper_id (Symbol) (defaults to: nil)

    The id of an Icon in Jamf Pro to use as the wallpaper image, required if no wallpaper_content



1220
1221
1222
1223
1224
1225
1226
1227
1228
# File 'lib/jss/api_object/mdm.rb', line 1220

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,
    api: @api
  )
end