File tree Expand file tree Collapse file tree 2 files changed +8
-11
lines changed
src/ResourceManager/AzureBackup/Commands.AzureBackup Expand file tree Collapse file tree 2 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -52,11 +52,4 @@ public override void ExecuteCmdlet()
52
52
} ) ;
53
53
}
54
54
}
55
-
56
- // TODO: Move to common enums cs file.
57
- public enum AzureBackupVaultStorageType
58
- {
59
- GeoRedundant = 1 ,
60
- LocallyRedundant ,
61
- }
62
55
}
Original file line number Diff line number Diff line change @@ -23,14 +23,12 @@ namespace Microsoft.Azure.Commands.AzureBackup.Cmdlets
23
23
{
24
24
public enum AzureBackupContainerTypeInput
25
25
{
26
- All ,
27
- AzureVirtualMachine ,
26
+ AzureVirtualMachine = 1 ,
28
27
}
29
28
30
29
public enum AzureBackupContainerStatusInput
31
30
{
32
- All ,
33
- Registering ,
31
+ Registering = 1 ,
34
32
Registered ,
35
33
}
36
34
@@ -88,4 +86,10 @@ public enum AzureBackupOperationErrorCode
88
86
BMSUserErrorObjectLocked = 390026 ,
89
87
DiscoveryInProgress = 410002 ,
90
88
}
89
+
90
+ public enum AzureBackupVaultStorageType
91
+ {
92
+ GeoRedundant = 1 ,
93
+ LocallyRedundant ,
94
+ }
91
95
}
You can’t perform that action at this time.
0 commit comments