File tree Expand file tree Collapse file tree 5 files changed +78
-3
lines changed
src/ResourceManager/RecoveryServices.Backup/Commands.RecoveryServices.Backup.Models Expand file tree Collapse file tree 5 files changed +78
-3
lines changed Original file line number Diff line number Diff line change 20
20
21
21
namespace Microsoft . Azure . Commands . RecoveryServices . Backup . Cmdlets . Models
22
22
{
23
- public class BaseObjects
23
+ public class AzureRmRecoveryServicesContainerBase
24
+ {
25
+ public string Name { get ; set ; }
26
+
27
+ public string ResourceGroupName { get ; set ; }
28
+
29
+ public string Status { get ; set ; }
30
+
31
+ public ContainerType ContainerType { get ; set ; }
32
+
33
+ public int BackupItemsCount { get ; set ; }
34
+ }
35
+
36
+ public class AzureRmRecoveryServicesItemBase
37
+ {
38
+ }
39
+
40
+ public class AzureRmRecoveryServicesPolicyBase
41
+ {
42
+ }
43
+
44
+ public class AzureRmRecoveryServicesRecoveryPointBase
24
45
{
25
46
}
26
47
}
Original file line number Diff line number Diff line change 42
42
<Compile Include =" BaseObjects.cs" />
43
43
<Compile Include =" CmdletParamEnums.cs" />
44
44
<Compile Include =" CommonEnums.cs" />
45
- <Compile Include =" IaasVmModels\Container.cs" />
45
+ <Compile Include =" IaasVmModels\AzureRmRecoveryServicesIaasVmPolicy.cs" />
46
+ <Compile Include =" IaasVmModels\AzureRmRecoveryServicesIaasVmItem.cs" />
47
+ <Compile Include =" IaasVmModels\AzureRmRecoveryServicesIaasVmContainer.cs" />
46
48
<Compile Include =" Properties\AssemblyInfo.cs" />
47
49
</ItemGroup >
48
50
<Import Project =" $(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Original file line number Diff line number Diff line change
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 . RecoveryServices . Backup . Cmdlets . Models
22
+ {
23
+ public class AzureRmRecoveryServicesIaasVmContainer : AzureRmRecoveryServicesContainerBase
24
+ {
25
+ }
26
+ }
Original file line number Diff line number Diff line change 20
20
21
21
namespace Microsoft . Azure . Commands . RecoveryServices . Backup . Cmdlets . Models
22
22
{
23
- public class Container
23
+ public class AzureRmRecoveryServicesIaasVmItem : AzureRmRecoveryServicesItemBase
24
24
{
25
25
}
26
26
}
Original file line number Diff line number Diff line change
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 . RecoveryServices . Backup . Cmdlets . Models
22
+ {
23
+ public class AzureRmRecoveryServicesIaasVmPolicy : AzureRmRecoveryServicesPolicyBase
24
+ {
25
+ }
26
+ }
You can’t perform that action at this time.
0 commit comments