Skip to content

Commit

Permalink
Merge pull request #5 from MabOneSdk/anudeeb
Browse files Browse the repository at this point in the history
Fixes in AzureBackupContainer class definition.
  • Loading branch information
Samuel Anudeep committed May 29, 2015
2 parents 980d397 + fc61f75 commit c72b78a
Showing 1 changed file with 29 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,51 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
/// <summary>
/// Represents Azure Backup Container
/// </summary>
public class AzureBackupContainer : AzureBackupVaultCmdletBase
public class AzureBackupContainer : AzureBackupVaultContextObject
{
/// <summary>
/// Type of the Azure Backup container
/// </summary>
public string ContainerType { get; set; }

/// <summary>
/// Friendly name for the Azure Backup container
/// </summary>
public string FriendlyName { get; set; }

/// <summary>
/// Status of health of the Azure Backup container
/// </summary>
public string HealthStatus { get; set; }

public string InstanceId { get; set; }
/// <summary>
/// Id of the Azure Backup Container
/// </summary>
public string ContainerId { get; set; }

/// <summary>
/// Name of the Azure Backup container
/// </summary>
public string Name { get; set; }

/// <summary>
/// Friendly name of the parent container
/// </summary>
public string ParentContainerFriendlyName { get; set; }

/// <summary>
/// Name of the parent container
/// </summary>
public string ParentContainerName { get; set; }

/// <summary>
/// Region where this container is present
/// </summary>
public string Region { get; set; }

/// <summary>
/// Status of registration of the container
/// </summary>
public string RegistrationStatus { get; set; }
}
}

0 comments on commit c72b78a

Please sign in to comment.