Get-FileSystem

SYNOPSIS

Gets details of the file systems on a PowerStore cluster.

SYNTAX

All (Default)

Get-FileSystem [-Cluster] <Cluster> [-Identify] [<CommonParameters>]

ByName

Get-FileSystem [-Cluster] <Cluster> -Name <String[]> [<CommonParameters>]

ById

Get-FileSystem [-Cluster] <Cluster> -Id <String[]> [<CommonParameters>]

ByNasServer

Get-FileSystem [-Cluster] <Cluster> -NasServerId <String[]> [<CommonParameters>]

ByParentId

Get-FileSystem [-Cluster] <Cluster> -ParentId <String[]> [<CommonParameters>]

DESCRIPTION

Gets details of the file systems on a PowerStore cluster. The options include listing all file systems on the cluster, getting file systems by ID, name, NAS server, and parent ID.

CAUTION: There can be more than one file system on a cluster with the same name. This could lead to unexpected results when piping the output to cmdlets that remove file systems.

EXAMPLES

Example 1

PS C:\> Get-FileSystem -Cluster $cluster

Where $cluster is a PowerStore cluster instance. Returns a list of all file systems on the PowerStore cluster.

Example 2

PS C:\> Get-FileSystem -Cluster $cluster -Identify

Where $cluster is a PowerStore cluster instance. Returns a list of Identity objects with the ID and name of each file system on the PowerStore cluster.

Example 3

PS C:\> Get-FileSystem -Cluster $cluster -Id id1,id2

Where $cluster is a PowerStore cluster instance. Returns file systems with IDs id1 and id2 on the PowerStore cluster.

Example 4

PS C:\> Get-FileSystem -Cluster $cluster -Name name1,name2

Where $cluster is a PowerStore cluster instance. Returns file systems with names name1 and name2 on the PowerStore cluster. CAUTION: There can be more than one file system on a cluster with the same name. This could lead to unexpected results when piping the output to cmdlets that remove file systems.

PARAMETERS

-Cluster

The PowerStore cluster instance.

Type: Cluster
Parameter Sets: (All)
Aliases:

Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-Identify

Returns Identity objects which contain the ID and name properties of each entity.

Type: SwitchParameter
Parameter Sets: All
Aliases: List

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-Id

The file system ID.

Type: String[]
Parameter Sets: ById
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName, ByValue)
Accept wildcard characters: False

-Name

The file system name.

Type: String[]
Parameter Sets: ByName
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False

-NasServerId

The NAS server ID.

Type: String[]
Parameter Sets: ByNasServer
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-ParentId

The parent ID.

Type: String[]
Parameter Sets: ByParentId
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

INPUTS

Dell.PowerStore.Management.Model.Cluster

System.String[]

OUTPUTS

Dell.PowerStore.Management.Model.Identity

Dell.PowerStore.Management.Model.FileSystem

NOTES