Click or drag to resize

IWsBackupGetBackupAccount Method

Get backup account by ID.

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<BackupAccount> GetBackupAccount(
	int backupAccountID
)

Parameters

backupAccountID
Type: SystemInt32
ID of backup account

Return Value

Type: WsResultBackupAccount
Backup account
Examples
By the method IWsBackup GetBackupAccount you can get backup account object by the ID
/// WsBackupClient.GetBackupAccount    Method (c# .NET)
public static string GetBackupAccount(WsBackupClient client,
    int backupAccountID)
{
    //specify the account login details 
    client.ClientCredentials.UserName.UserName = "ARU-0000";
    client.ClientCredentials.UserName.Password = "0123456789";

    StringBuilder stringBuilder = new StringBuilder();

    try
    {
        // call method GetBackupAccount  
        // obtaining a WsResultOfArrayOfBackupAccount item
        WsResultOfBackupAccount result = client.GetBackupAccount(backupAccountID);

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

            // get Value returned from server
            BackupAccount item = result.Value;

            stringBuilder.Append("\n BackupAccount detail\n");
            stringBuilder.Append("\n RegionID: ");
            stringBuilder.Append(item.RegionID);
            stringBuilder.Append("\n BackupAccountID: ");
            stringBuilder.Append(item.BackupAccountID);
            stringBuilder.Append("\n BackupAccountStatus: ");
            stringBuilder.Append(item.BackupAccountStatus);
            stringBuilder.Append("\n BackupPricingType: ");
            stringBuilder.Append(item.BackupPricingType);

        }
        else
        {
            throw new ApplicationException(result.ResultMessage);
        }
    }
    catch (Exception ex)
    {
        // re-run the error
        throw new ApplicationException(ex.Message);
    }

    return stringBuilder.ToString();
}
See Also