Skip to content

Commit c72b78a

Browse files
author
Samuel Anudeep
committed
Merge pull request #5 from MabOneSdk/anudeeb
Fixes in AzureBackupContainer class definition.
2 parents 980d397 + fc61f75 commit c72b78a

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

src/ResourceManager/AzureBackup/Commands.AzureBackup/Models/AzureBackupContainer.cs

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,51 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
2323
/// <summary>
2424
/// Represents Azure Backup Container
2525
/// </summary>
26-
public class AzureBackupContainer : AzureBackupVaultCmdletBase
26+
public class AzureBackupContainer : AzureBackupVaultContextObject
2727
{
28+
/// <summary>
29+
/// Type of the Azure Backup container
30+
/// </summary>
2831
public string ContainerType { get; set; }
2932

33+
/// <summary>
34+
/// Friendly name for the Azure Backup container
35+
/// </summary>
3036
public string FriendlyName { get; set; }
3137

38+
/// <summary>
39+
/// Status of health of the Azure Backup container
40+
/// </summary>
3241
public string HealthStatus { get; set; }
3342

34-
public string InstanceId { get; set; }
43+
/// <summary>
44+
/// Id of the Azure Backup Container
45+
/// </summary>
46+
public string ContainerId { get; set; }
3547

48+
/// <summary>
49+
/// Name of the Azure Backup container
50+
/// </summary>
3651
public string Name { get; set; }
3752

53+
/// <summary>
54+
/// Friendly name of the parent container
55+
/// </summary>
3856
public string ParentContainerFriendlyName { get; set; }
3957

58+
/// <summary>
59+
/// Name of the parent container
60+
/// </summary>
4061
public string ParentContainerName { get; set; }
4162

63+
/// <summary>
64+
/// Region where this container is present
65+
/// </summary>
4266
public string Region { get; set; }
4367

68+
/// <summary>
69+
/// Status of registration of the container
70+
/// </summary>
4471
public string RegistrationStatus { get; set; }
4572
}
4673
}

0 commit comments

Comments
 (0)