ReactivateSuspendedDashboardDevice

ReactivateSuspendedDashboardDevice is used to reactivate a suspended device. The device will begin backing up again. The equivalent option in the dashboard is the Reactivate device button on the Manage device tab for a device. See SuspendDashboardDevice for details on suspending a device.

See ReactivateSuspendedDashboardDevice for an example PowerShell script.

Signature

Copy
ServiceResponse ReactivateSuspendedDashboardDevice (CallingContext callingContext, ReactivateSuspendedDashboardDeviceInput input, out ReactivateSuspendedDashboardDeviceResult result);

Data structure

The input to ReactivateSuspendedDashboardDevice is a deviceId.

Copy
[DataContract]
public class ReactivateSuspendedDashboardDeviceInput
{
    public ReactivateSuspendedDashboardDeviceInput()
    {
    }

    [DataMember]
    public Guid DeviceId;
}

Result

The result is the BaseServiceResult described in General API structure.

Copy
[DataContract]
public class SuspendDashboardDeviceResult : BaseServiceResult
{
    public SuspendDashboardDeviceResult()
    {
    }
}