Set-NimbleHost
Short Description
Modifies settings of HPE Nimble storage systems.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
Set-NimbleHost -Host <CNimbleHost> [-Description <string>] [-UserName <string>] [-Password <string>] [-Credentials <CInternalCredentials>] [-Proxy <IProxy[]>] [-MountServer <CHost>] [-VolumeScanType <VBRVolumeScanType> {All | Exclude | Include}][-IncludedVolume <CSanInfrastructureVolume[]>] [-ExcludedVolume <CSanInfrastructureVolume[]>][-EnableProxyAutoSelection] [-IncludedWildcard <string[]>] [-ExcludedWildcard <string[]>] [-ProtocolPolicy <VBRStorageProtocolPolicy>] [-WhatIf] [-Confirm] [<CommonParameters>] |
Detailed Description
This cmdlet modifies settings of HPE Nimble storage systems. When you modify storage system settings, the cmdlet automatically rescans storage systems.
To modify settings, enter the necessary parameters with new values. The parameters that you omit will remain unchanged.
|
You can specify the scope of volumes that you want to rescan with the VBRVolumeScanType parameter. Run Get-NimbleInfrastructureVolume to get an array of volumes from HPE Nimble storage systems. |
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 username that 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. | False | Named | False | False |
EnableProxyAutoSelection | Indicates that Veeam Backup & Replication will use automatic proxy selection. | False | Named | False | False |
ProtocolPolicy | Specifies the protocol policy for the storage. Accepts the VBRStorageProtocolPolicy type. | False | Named | False | False |
MountServer | Specifies the mount server that you want to use to work with this storage. | False | Named | False | False |
VolumeScanType | Specifies the scope of volumes that you want to rescan. You can use the following options to rescan the volumes:
| False | Named | False |
|
IncludedVolume | For the VolumeScanType parameter with the include option. Specifies an array of storage volumes that you want to rescan. NOTE: Veeam Backup & Replication will show only rescanned volumes in the backup infrastructure. Accepts the CSanInfrastructureVolume type. | False | Named | False |
|
IncludedWildcard | For the VolumeScanType parameter with the include option. Specifies an array of storage volumes with wildcard characters. Veeam Backup & Replication will rescan only those volumes which names are specified with these wildcard characters. | False | Named | False | False |
ExcludedVolume | For the VolumeScanType parameter with the exclude option. Specifies an array of storage volumes that you do not want to rescan. NOTE: Veeam Backup & Replication will not show the excluded volumes in the backup infrastructure after the rescan. Accepts the CSanInfrastructureVolume type. | False | Named | False |
|
ExcludedWildcard | For the VolumeScanType parameter with the exclude option. Specifies an array of storage volumes with wildcard characters. Veeam Backup & Replication will not rescan the volumes which names are specified with these wildcard characters. | False | Named | False | True |
WhatIf | Defines whether the cmdlet writes a message that describes the effects of running the cmdlet without actually performing any action. | False | Named | False | False |
Confirm | Defines that the cmdlet will display the prompt that asks:
| 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 1
This example shows how to specify a backup proxy for rescan and Backup from Storage Snapshots on a HPE Nimble storage system.
- Run Get-NimbleHost to get the storage system whose settings you want to modify. Save the result to the $storage variable.
- Run Get-VBRViProxy to get the backup proxy. Save the result to the $proxy variable.
- Run Set-NimbleHost with the $storage and $proxy variables.
$storage = Get-NimbleHost -Name "HPE Nimble-FC" $proxy = Get-VBRViProxy -Name "LocalProxy" Set-NimbleHost -Host $storage -Proxy $proxy |
Example 2
This example shows how to exclude HPE Nimble volumes from the rescan.
- Run Get-NimbleHost to get the storage system whose settings you want to modify. Save the result to the $storage variable.
- Run Get-NimbleInfrastructureVolume to get volumes that you do not want to rescan. Save the result to the $volumes variable.
- Run Set-NimbleHost with the $storage and $volumes variables.
$storage = Get-NimbleHost -Name "HPE Nimble-FC" $volumes = Get-NetAppInfrastructureVolume -Name "Volume4", "Volume5", " Volume1" Set-NimbleHost -Host $storage -VolumeScanType Exclude -ExcludedVolume $volumes |
Example 3
This example shows how to rescan all volumes added to an HPE Nimble storage system.
- Run Get-NimbleHost to get the storage system whose settings you want to modify. Save the result to the $storage variable.
- Run Get-NimbleInfrastructureVolume with the Host parameter to get volumes that you want to rescan. Save the result to the $volumes variable.
- Run Set-NimbleHost with the $storage and $volumes variables.
$storage = Get-NimbleHost -Name "HPE Nimble-FC" $volumes = Get-NetAppInfrastructureVolume -Host $storage Set-NimbleHost -Host $storage -VolumeScanType Include -Included $volumes |
Related Commands