Skip to content

Commit fb7c340

Browse files
navba-MSFTanandanthony
authored andcommitted
{AzureDataProtection} fixes Azure#21183 (Azure#21551)
fixes Azure#21183 The enum values for the storage settings are listed in the latest API as `ArchiveStore, SnapshotStore, VaultStore.` However while providing `SnapshotStore` value it fail with `BMSUserErrorInvalidInput` error. Also while trying the same from PS cmdlet using > New-AzDataProtectionBackupVaultStorageSettingObject -DataStoreType SnapshotStore -Type LocallyRedundant **Error:** ``` Error: "Unable to match the identifier name SnapshotStore to a valid enumerator name. Specify one of the following enumerator names and try again: ArchiveStore, OperationalStore, VaultStore" ``` This PR fixes the enum value of storage setting
1 parent 3dd1ad5 commit fb7c340

File tree

1 file changed

+1
-1
lines changed
  • specification/dataprotection/resource-manager/Microsoft.DataProtection/stable/2022-05-01

1 file changed

+1
-1
lines changed

specification/dataprotection/resource-manager/Microsoft.DataProtection/stable/2022-05-01/dataprotection.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6113,7 +6113,7 @@
61136113
"description": "Gets or sets the type of the datastore.",
61146114
"enum": [
61156115
"ArchiveStore",
6116-
"SnapshotStore",
6116+
"OperationalStore",
61176117
"VaultStore"
61186118
],
61196119
"type": "string",

0 commit comments

Comments
 (0)