pub struct Command {Show 19 fields
pub add_esim_params: Option<AddEsimParams>,
pub clear_apps_data_params: Option<ClearAppsDataParams>,
pub clear_apps_data_status: Option<ClearAppsDataStatus>,
pub create_time: Option<DateTime<Utc>>,
pub duration: Option<Duration>,
pub error_code: Option<String>,
pub esim_status: Option<EsimCommandStatus>,
pub new_password: Option<String>,
pub remove_esim_params: Option<RemoveEsimParams>,
pub request_device_info_params: Option<RequestDeviceInfoParams>,
pub request_device_info_status: Option<RequestDeviceInfoStatus>,
pub reset_password_flags: Option<Vec<String>>,
pub start_lost_mode_params: Option<StartLostModeParams>,
pub start_lost_mode_status: Option<StartLostModeStatus>,
pub stop_lost_mode_params: Option<StopLostModeParams>,
pub stop_lost_mode_status: Option<StopLostModeStatus>,
pub type_: Option<String>,
pub user_name: Option<String>,
pub wipe_params: Option<WipeParams>,
}Expand description
A command.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- devices issue command enterprises (request)
Fields§
§add_esim_params: Option<AddEsimParams>Optional. Parameters for the ADD_ESIM command to add an eSIM profile to the device. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to ADD_ESIM. It is also acceptable to explicitly set type to ADD_ESIM.
clear_apps_data_params: Option<ClearAppsDataParams>Parameters for the CLEAR_APP_DATA command to clear the data of specified apps from the device. See ClearAppsDataParams. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to CLEAR_APP_DATA. It is also acceptable to explicitly set type to CLEAR_APP_DATA.
clear_apps_data_status: Option<ClearAppsDataStatus>Output only. Status of the CLEAR_APP_DATA command to clear the data of specified apps from the device. See ClearAppsDataStatus.
create_time: Option<DateTime<Utc>>The timestamp at which the command was created. The timestamp is automatically generated by the server.
duration: Option<Duration>The duration for which the command is valid. The command will expire if not executed by the device during this time. The default duration if unspecified is ten minutes. There is no maximum duration.
error_code: Option<String>If the command failed, an error code explaining the failure. This is not set when the command is cancelled by the caller. For reasoning about command errors, prefer fields in the following order (most preferred first): 1. Command-specific fields like clearAppsDataStatus, startLostModeStatus, or similar, if they exist. 2. This field, if set. 3. The generic error field in the Operation that wraps the command.
esim_status: Option<EsimCommandStatus>Output only. Status of an ADD_ESIM or REMOVE_ESIM command.
new_password: Option<String>For commands of type RESET_PASSWORD, optionally specifies the new password. Note: The new password must be at least 6 characters long if it is numeric in case of Android 14 devices. Else the command will fail with INVALID_VALUE.
remove_esim_params: Option<RemoveEsimParams>Optional. Parameters for the REMOVE_ESIM command to remove an eSIM profile from the device. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to REMOVE_ESIM. It is also acceptable to explicitly set type to REMOVE_ESIM.
request_device_info_params: Option<RequestDeviceInfoParams>Optional. Parameters for the REQUEST_DEVICE_INFO command to get device related information. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to REQUEST_DEVICE_INFO . It is also acceptable to explicitly set type to REQUEST_DEVICE_INFO.
request_device_info_status: Option<RequestDeviceInfoStatus>Output only. Status of the REQUEST_DEVICE_INFO command.
reset_password_flags: Option<Vec<String>>For commands of type RESET_PASSWORD, optionally specifies flags.
start_lost_mode_params: Option<StartLostModeParams>Parameters for the START_LOST_MODE command to put the device into lost mode. See StartLostModeParams. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to START_LOST_MODE. It is also acceptable to explicitly set type to START_LOST_MODE.
start_lost_mode_status: Option<StartLostModeStatus>Output only. Status of the START_LOST_MODE command to put the device into lost mode. See StartLostModeStatus.
stop_lost_mode_params: Option<StopLostModeParams>Parameters for the STOP_LOST_MODE command to take the device out of lost mode. See StopLostModeParams. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to STOP_LOST_MODE. It is also acceptable to explicitly set type to STOP_LOST_MODE.
stop_lost_mode_status: Option<StopLostModeStatus>Output only. Status of the STOP_LOST_MODE command to take the device out of lost mode. See StopLostModeStatus.
type_: Option<String>The type of the command.
user_name: Option<String>The resource name of the user that owns the device in the form enterprises/{enterpriseId}/users/{userId}. This is automatically generated by the server based on the device the command is sent to.
wipe_params: Option<WipeParams>Optional. Parameters for the WIPE command to wipe the device. If this is set, then it is suggested that type should not be set. In this case, the server automatically sets it to WIPE. It is also acceptable to explicitly set type to WIPE.