Syntax
Get-ScsiLun [[-CanonicalName] <String[]>] [-VmHost] <VMHost[]> [-Key <String[]>] [-LunType <String[]>] [-Server <VIServer[]>] [<CommonParameters>]Related Commands
Online versionDetailed Description
Retrieves the SCSI devices available on the the vSphere server. Examples of SCSI logical unit objects include disks which may contain file system volumes or parts of volumes for the host or might serve as raw disks to a virtual machine. Other examples include SCSI passthrough devices that can be used by virtual machines.Parameters
Return Type
ScsiLunNotes
Examples
-------------- Example 1 --------------
Get-ScsiLun -VMHost 10.23.123.100 -LunType disk
Retrieves the SCSI devices of "disk" type for the virtual machine host with an IP address 10.23.123.100.
-------------- Example 2 --------------
Get-VMHost | Get-ScsiLun -CanonicalName "naa.*"
Retrieves the SCSI devices with canonical names that starts with "naa." on the provided host.
-------------- Example 3 --------------
$hba = Get-VMHost | Get-VMHostHba -Type ParallelScsi Get-ScsiLun -Hba $hba -LunType disk
Retrieves the SCSI devices of "disk" type for the specified HBA devices.
-------------- Example 4 --------------
Get-ScsiLun -Datastore Datastore -Key "key-vim.host.ScsiDisk-*"
For the Datastore datastore, retrieves the SCSI devices that have the specified linkable identifiers.