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/StorageGRID-Webscale.psm1
+24-4Lines changed: 24 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -13209,11 +13209,17 @@ function Global:Start-SgwRecovery {
13209
13209
13210
13210
## recovery-package ##
13211
13211
13212
+
# complete as of API 2.2
13213
+
13212
13214
<#
13213
13215
.SYNOPSIS
13214
-
Retrieves the log collection procedure status
13216
+
Downloads the Recovery Package
13215
13217
.DESCRIPTION
13216
-
Retrieves the log collection procedure status
13218
+
Downloads the Recovery Package
13219
+
.PARAMETER Server
13220
+
StorageGRID Webscale Management Server object. If not specified, global CurrentSgwServer object will be used.
13221
+
.PARAMETER ProfileName
13222
+
StorageGRID Profile to use for connection.
13217
13223
#>
13218
13224
function Global:Get-SgwRecoveryPackage {
13219
13225
[CmdletBinding()]
@@ -13222,15 +13228,29 @@ function Global:Get-SgwRecoveryPackage {
13222
13228
[parameter(Mandatory = $False,
13223
13229
Position = 0,
13224
13230
HelpMessage = "StorageGRID Webscale Management Server object. If not specified, global CurrentSgwServer object will be used.")][PSCustomObject]$Server,
13225
-
[parameter(Mandatory = $True,
13231
+
[parameter(Mandatory = $False,
13226
13232
Position = 1,
13233
+
HelpMessage = "StorageGRID Profile to use for connection.")][Alias("Profile")][String]$ProfileName,
0 commit comments