You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/DataProtection/DataProtection.Autorest/custom/Cmdlets/Backupcenter/Search-AzDataProtectionBackupVaultInAzGraph.ps1
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
[Parameter(Mandatory,HelpMessage='Subscription of Vault')]
9
9
[Alias('SubscriptionId')]
10
10
[System.String[]]
11
-
${Subscription},
11
+
${Subscription},# TODO: add alias to all ARG command params
12
12
13
13
[Parameter(Mandatory=$false,HelpMessage='Resource Group of Vault')]
Copy file name to clipboardExpand all lines: src/DataProtection/DataProtection.Autorest/custom/Cmdlets/Platform/BackupInstance/Initialize-AzDataProtectionBackupInstance.ps1
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ function Initialize-AzDataProtectionBackupInstance {
43
43
[System.String]
44
44
${FriendlyName},
45
45
46
-
[Parameter(Mandatory=$false,HelpMessage='Backup configuration for backup. Use this parameter to configure protection for AzureKubernetesService.')]
46
+
[Parameter(Mandatory=$false,HelpMessage='Backup configuration for backup. Use this parameter to configure protection for AzureKubernetesService,AzureBlob.')]
Copy file name to clipboardExpand all lines: src/DataProtection/DataProtection.Autorest/custom/Cmdlets/Platform/Restore/Initialize-AzDataProtectionRestoreRequest.ps1
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -102,13 +102,17 @@
102
102
[Parameter(ParameterSetName="AlternateLocationILR",Mandatory=$false,HelpMessage='Container names for Item Level Recovery.')]
103
103
[System.String[]]
104
104
${ContainersList},
105
+
106
+
[Parameter(ParameterSetName="AlternateLocationILR",Mandatory=$false,HelpMessage='Use this parameter to filter block blobs by prefix in a container for alternate location ILR. When you specify a prefix, only blobs matching that prefix in the container will be restored. Input for this parameter is a hashtable where each key is a container name and each value is an array of string prefixes for that container.')]
107
+
[Hashtable]
108
+
${PrefixMatch},
105
109
106
-
[Parameter(ParameterSetName="OriginalLocationILR",Mandatory=$false,HelpMessage='Minimum matching value for Item Level Recovery.')]
110
+
[Parameter(ParameterSetName="OriginalLocationILR",Mandatory=$false,HelpMessage='Specify the blob restore start range for PITR. You can use this option to specify the starting range for a subset of blobs in each container to restore. use a forward slash (/) to separate the container name from the blob prefix pattern.')]
107
111
# [Parameter(ParameterSetName="AlternateLocationILR", Mandatory=$false, HelpMessage='Minimum matching value for Item Level Recovery.')]
108
112
[System.String[]]
109
113
${FromPrefixPattern},
110
114
111
-
[Parameter(ParameterSetName="OriginalLocationILR",Mandatory=$false,HelpMessage='Maximum matching value for Item Level Recovery.')]
115
+
[Parameter(ParameterSetName="OriginalLocationILR",Mandatory=$false,HelpMessage='Specify the blob restore end range for PITR. You can use this option to specify the ending range for a subset of blobs in each container to restore. use a forward slash (/) to separate the container name from the blob prefix pattern.')]
112
116
# [Parameter(ParameterSetName="AlternateLocationILR", Mandatory=$false, HelpMessage='Maximum matching value for Item Level Recovery.')]
0 commit comments