type property

String? type
getter/setter pair

The type of the command. Possible string values are:

  • "COMMAND_TYPE_UNSPECIFIED" : The command type was unspecified.
  • "REBOOT" : Reboot the device. Can only be issued to Kiosk and managed guest session devices.
  • "TAKE_A_SCREENSHOT" : Take a screenshot of the device. Only available if the device is in Kiosk Mode.
  • "SET_VOLUME" : Set the volume of the device. Can only be issued to Kiosk and managed guest session devices.
  • "WIPE_USERS" : Wipe all the users off of the device. Executing this command in the device will remove all user profile data, but it will keep device policy and enrollment.
  • "REMOTE_POWERWASH" : Wipes the device by performing a power wash. Executing this command in the device will remove all data including user policies, device policies and enrollment policies. Warning: This will revert the device back to a factory state with no enrollment unless the device is subject to forced or auto enrollment. Use with caution, as this is an irreversible action!
  • "DEVICE_START_CRD_SESSION" : Starts a Chrome Remote Desktop session.
  • "CAPTURE_LOGS" : Capture the system logs of a kiosk device. The logs can be downloaded from the downloadUrl link present in deviceFiles field of chromeosdevices
  • "FETCH_SUPPORT_PACKET" : Fetch support packet from a device remotely. Support packet is a zip archive that contains various system logs and debug data from a ChromeOS device. The support packet can be downloaded from the downloadURL link present in the deviceFiles field of [chromeosdevices](https://developers.google.com/admin-sdk/directory/reference/rest/v1/chromeosdevices)

Implementation

core.String? type;