Short Description
Modifies Universal Storage API integrated systems.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Storage System: IBM Spectrum Virtualize, INFINIDAT InfiniBox, Pure Storage, Huawei
Syntax
Set-StoragePluginHost -Host <CPublicPluginHost> [-Description <String>] [-UserName <String>] [-Password <String>] [-Credentials <CInternalCredentials>] [-Proxy <IProxy[]>] [-EnableProxyAutoSelection [<SwitchParameter>]] [-ProtocolPolicy <VBRStorageProtocolPolicy>] [<CommonParameters>] |
Detailed Description
This cmdlet modifies the settings of Universal Storage API integrated systems. To modify settings, enter the necessary parameters with new values. The parameters that you omit will remain unchanged.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Host | Specifies the storage you want to modify. | True | Named | True (ByValue, | False |
Description | Specifies the description of the storage. | False | Named | False | False |
UserName | Specifies the user name you want to use for authenticating with the storage. | False | Named | False | False |
Password | Specifies the password you want to use for authenticating with the storage. | False | Named | False | False |
Credentials | Specifies the credentials you want to use for authenticating with the storage. | False | Named | False | False |
Proxy | Specifies the array of proxies you want to use to work with this storage. NOTE: All previously used proxies will be unassigned from the storage. If you want Veeam to choose a proxy for your storage automatically, use the EnableProxyAutoSelection parameter. | False | Named | False | False |
EnableProxyAutoSelection | Indicates that Veeam Backup & Replication will select a proxy automatically. If you want to select proxies for the storage yourself, use the Proxy parameter. | False | Named | False | False |
ProtocolPolicy | Specifies the protocol policy for the storage. Accepts VBRStorageProtocolPolicy type. | False | Named | False | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information about common parameters, see http://go.microsoft.com/fwlink/p/?LinkID=113216.
Example
This example shows how to assign a new backup proxy to the storage.
You will need to perform the following steps:
- Run Get-StoragePluginHost to get the storage whose settings you want to modify. Save the result to the $storage variable.
- Run Get-VBRViProxy to get the backup proxy you want to assign. Save the result to the $proxy variable.
- Run Set-StoragePluginHost with the $storage and $proxy variables.
PS C:\PS> $storage = Get-StoragePluginHost -Name "IBM Spectrum" PS C:\PS> $proxy = Get-VBRViProxy -Name "LocalProxy" PS C:\PS> Set-StoragePluginHost -Host $storage -Proxy $proxy |
Related Commands