Skip to content

Commit 980d397

Browse files
author
Samuel Anudeep
committed
Merge pull request #4 from MabOneSdk/anudeeb
Adding AzureBackupContainer model (initial draft).
2 parents cf8678c + 028a9c4 commit 980d397

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
// ----------------------------------------------------------------------------------
2+
//
3+
// Copyright Microsoft Corporation
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
// ----------------------------------------------------------------------------------
14+
15+
using System;
16+
using System.Collections.Generic;
17+
using System.Linq;
18+
using System.Text;
19+
using System.Threading.Tasks;
20+
21+
namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
22+
{
23+
/// <summary>
24+
/// Represents Azure Backup Container
25+
/// </summary>
26+
public class AzureBackupContainer : AzureBackupVaultCmdletBase
27+
{
28+
public string ContainerType { get; set; }
29+
30+
public string FriendlyName { get; set; }
31+
32+
public string HealthStatus { get; set; }
33+
34+
public string InstanceId { get; set; }
35+
36+
public string Name { get; set; }
37+
38+
public string ParentContainerFriendlyName { get; set; }
39+
40+
public string ParentContainerName { get; set; }
41+
42+
public string Region { get; set; }
43+
44+
public string RegistrationStatus { get; set; }
45+
}
46+
}

0 commit comments

Comments
 (0)