Syntax
Set-VsanIscsiLun [-Lun] <VsanIscsiLun[]> [-Name <String>] [-IsOnline <Boolean>] [-CapacityGB <Decimal>] [-LunId <Int32>] [-StoragePolicy <SpbmStoragePolicy>] [-Server <VIServer[]>] [-RunAsync] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Online versionDetailed Description
This cmdlet modifies the specified vSAN iSCSI LUNs.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Lun | VsanIscsiLun[] | Specifies the vSAN iSCSI LUNs you want to modify. | true | true (ByValue) | |
CapacityGB | Decimal | Specifies the new capacity of the vSAN iSCSI LUN in gigabytes (GB). The LUN size can only increase. This operation is possible only when the LUN is in offline state. | false | false | |
Confirm | SwitchParameter | If the value is $true, indicates that the cmdlet asks for confirmation before running. If the value is $false, the cmdlet runs without asking for user confirmation. | false | false | |
IsOnline | Boolean | Puts the iSCSI LUN in offline or online state. | false | false | |
LunId | Int32 | Specifies the new LUN ID of the iSCSI LUN. The value must be in the range from 0 to 255. The LUN ID can be changed only when the LUN is in offline state. | false | false | |
Name | String | Specifies the new name of the vSAN iSCSI LUN. | false | false | |
RunAsync | SwitchParameter | Indicates that the command returns immediately without waiting for the task to complete. In this mode, the output of the cmdlet is a Task object. For more information about the RunAsync parameter run "help About_RunAsync" in the VMware PowerCLI console. | false | false | |
Server | VIServer[] | Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer. | false | false | |
StoragePolicy | SpbmStoragePolicy | Specifies the storage policy associated with the vSAN iSCSI LUN. | false | false | |
WhatIf | SwitchParameter | Indicates that the cmdlet is run only to display the changes that would be made and actually no objects are modified. | false | false |
Return Type
The list of modified VsanIscsiLun objectsNotes
Examples
-------------- Example 1 --------------
Set-VsanIscsiLun -Lun $lun -CapacityGB 3
Increases the capacity of the $lun iSCSI LUN to 3 GB.
-------------- Example 2 --------------
Set-VsanIscsiLun -Lun $lun -IsOnline $false
Puts the $lun iSCSI LUN in offline state.