File tree 1 file changed +29
-2
lines changed
src/ResourceManager/AzureBackup/Commands.AzureBackup/Models 1 file changed +29
-2
lines changed Original file line number Diff line number Diff line change @@ -23,24 +23,51 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
23
23
/// <summary>
24
24
/// Represents Azure Backup Container
25
25
/// </summary>
26
- public class AzureBackupContainer : AzureBackupVaultCmdletBase
26
+ public class AzureBackupContainer : AzureBackupVaultContextObject
27
27
{
28
+ /// <summary>
29
+ /// Type of the Azure Backup container
30
+ /// </summary>
28
31
public string ContainerType { get ; set ; }
29
32
33
+ /// <summary>
34
+ /// Friendly name for the Azure Backup container
35
+ /// </summary>
30
36
public string FriendlyName { get ; set ; }
31
37
38
+ /// <summary>
39
+ /// Status of health of the Azure Backup container
40
+ /// </summary>
32
41
public string HealthStatus { get ; set ; }
33
42
34
- public string InstanceId { get ; set ; }
43
+ /// <summary>
44
+ /// Id of the Azure Backup Container
45
+ /// </summary>
46
+ public string ContainerId { get ; set ; }
35
47
48
+ /// <summary>
49
+ /// Name of the Azure Backup container
50
+ /// </summary>
36
51
public string Name { get ; set ; }
37
52
53
+ /// <summary>
54
+ /// Friendly name of the parent container
55
+ /// </summary>
38
56
public string ParentContainerFriendlyName { get ; set ; }
39
57
58
+ /// <summary>
59
+ /// Name of the parent container
60
+ /// </summary>
40
61
public string ParentContainerName { get ; set ; }
41
62
63
+ /// <summary>
64
+ /// Region where this container is present
65
+ /// </summary>
42
66
public string Region { get ; set ; }
43
67
68
+ /// <summary>
69
+ /// Status of registration of the container
70
+ /// </summary>
44
71
public string RegistrationStatus { get ; set ; }
45
72
}
46
73
}
You can’t perform that action at this time.
0 commit comments