SuspendDashboardDevice
SuspendDashboardDevice is used to suspend a device that you want to stop protecting. A suspended device will no longer back up data, but the data that is already backed up is preserved. The equivalent option in the dashboard is the Suspend device button on the Manage device tab for a device. After suspension, you can reactivate the device, if desired. See ReactivateSuspendedDashboardDevice for details.
Signature
Copy
ServiceResponse SuspendDashboardDevice (CallingContext callingContext, SuspendDashboardDeviceInput input, out SuspendDashboardDeviceResult result);
Data structure
The input to SuspendDashboardDevice is a deviceId.
Copy
[DataContract]
public class SuspendDashboardDeviceInput
{
public SuspendDashboardDeviceInput()
{
}
[DataMember]
public Guid DeviceId;
}
Result
The result is the BaseServiceResult described in General API structure.
Copy
[DataContract]
public class SuspendDashboardDeviceResult : BaseServiceResult
{
public SuspendDashboardDeviceResult()
{
}
}