Skip to content

Commit 144b9be

Browse files
author
Samuel Anudeep
committed
Merge pull request #6 from MabOneSdk/anudeeb
Made some changes according to previous PR.
2 parents c72b78a + cb54fe3 commit 144b9be

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,22 @@ public AzureBackupVaultContextObject(string resourceGroupName, string resourceNa
3636
ResourceName = resourceName;
3737
}
3838
}
39+
40+
public class AzureBackupContainerContextObject : AzureBackupVaultContextObject
41+
{
42+
/// <summary>
43+
/// Type of the Azure Backup container
44+
/// </summary>
45+
public string ContainerType { get; set; }
46+
47+
/// <summary>
48+
/// Name of the Azure Backup container
49+
/// </summary>
50+
public string ContainerName { get; set; }
51+
52+
/// <summary>
53+
/// Id of the Azure Backup Container
54+
/// </summary>
55+
public string ContainerId { get; set; }
56+
}
3957
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class AzureBackupContainer : AzureBackupVaultContextObject
4343
/// <summary>
4444
/// Id of the Azure Backup Container
4545
/// </summary>
46-
public string ContainerId { get; set; }
46+
public string InstanceId { get; set; }
4747

4848
/// <summary>
4949
/// Name of the Azure Backup container

0 commit comments

Comments
 (0)