diff --git a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs
index f6689e04d51c..313fb0afbfb9 100644
--- a/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs
+++ b/src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs
@@ -23,24 +23,51 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
///
/// Represents Azure Backup Container
///
- public class AzureBackupContainer : AzureBackupVaultCmdletBase
+ public class AzureBackupContainer : AzureBackupVaultContextObject
{
+ ///
+ /// Type of the Azure Backup container
+ ///
public string ContainerType { get; set; }
+ ///
+ /// Friendly name for the Azure Backup container
+ ///
public string FriendlyName { get; set; }
+ ///
+ /// Status of health of the Azure Backup container
+ ///
public string HealthStatus { get; set; }
- public string InstanceId { get; set; }
+ ///
+ /// Id of the Azure Backup Container
+ ///
+ public string ContainerId { get; set; }
+ ///
+ /// Name of the Azure Backup container
+ ///
public string Name { get; set; }
+ ///
+ /// Friendly name of the parent container
+ ///
public string ParentContainerFriendlyName { get; set; }
+ ///
+ /// Name of the parent container
+ ///
public string ParentContainerName { get; set; }
+ ///
+ /// Region where this container is present
+ ///
public string Region { get; set; }
+ ///
+ /// Status of registration of the container
+ ///
public string RegistrationStatus { get; set; }
}
}