Click or drag to resize

IWsBackupGetLogs Method

Returns the list of logs of the backup service for a specified period.

Namespace:  Aruba.Cloud.WsBackup
Assembly:  Aruba.Cloud.WsBackup (in Aruba.Cloud.WsBackup.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
[OperationContractAttribute]
WsResult<List<BackupLog>> GetLogs(
	DateTime from,
	DateTime to
)

Parameters

from
Type: SystemDateTime
to
Type: SystemDateTime

Return Value

Type: WsResultListBackupLog
Examples
By the method IWsBackup GetLogs you can get the list of logs of the backup service for a specified period.
/// WsBackupClient.GetLogs  Method (c# .NET)
public static string GetLogs(WsBackupClient client,
    DateTime from, DateTime to)
{
    //specify the account login details 
    client.ClientCredentials.UserName.UserName = "ARU-0000";
    client.ClientCredentials.UserName.Password = "0123456789";

    StringBuilder stringBuilder = new StringBuilder();

    try
    {
        // call method GetLogs 
        // obtaining a WsResultOfArrayOfBackupLog item
        WsResultOfArrayOfBackupLog result = client.GetLogs(from, to);

        // if the call is Success print returned values
        if (result.Success)
        {
            stringBuilder.Append("Operation ends successfully\n");

            // get Value returned from server
            BackupLog[] items = result.Value;

            if (items != null)
            {
                foreach (BackupLog item in items)
                {
                    stringBuilder.Append("\nBackupLog detail\n");

                    stringBuilder.Append("\nOperationName: ");
                    stringBuilder.Append(item.OperationName);
                    stringBuilder.Append("\nOperationUsername: ");
                    stringBuilder.Append(item.OperationUsername);
                    stringBuilder.Append("\nMessage: ");
                    stringBuilder.Append(item.Message);
                    stringBuilder.Append("\nUserId: ");
                    stringBuilder.Append(item.UserId);
                    stringBuilder.Append("\nRegionId: ");
                    stringBuilder.Append(item.RegionId);
                    stringBuilder.Append("\nJobId: ");
                    stringBuilder.Append(item.JobId);
                    stringBuilder.Append("\nJobStatus: ");
                    stringBuilder.Append(item.JobStatus);
                }                       
            }
        }
        else
        {
            throw new ApplicationException(result.ResultMessage);
        }
    }
    catch (Exception ex)
    {
        // re-run the error
        throw new ApplicationException(ex.Message);
    }

    return stringBuilder.ToString();
}
See Also