Get-NfsExport

SYNOPSIS

Gets details of the NFS exports on a PowerStore cluster.

SYNTAX

All (Default)

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

ById

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

ByName

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

ByFileSystemId

Get-NfsExport [-Cluster] <Cluster> -FileSystemId <String[]> [<CommonParameters>]

DESCRIPTION

Gets details of the NFS exports on a PowerStore cluster. The options include listing all NFS exports on the cluster, getting NFS exports by ID or name.

EXAMPLES

Example 1

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

Where $cluster is a PowerStore cluster instance. Returns a list of all NFS exports on the PowerStore cluster.

Example 2

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

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

Example 3

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

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

Example 4

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

Where $cluster is a PowerStore cluster instance. Returns NFS exports with names name1 and name2 on the PowerStore cluster.

Example 5

PS C:\> Get-NfsExport -Cluster $cluster -FileSystemId id1,id2

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

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 NFS export 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 NFS export name.

Type: String[]
Parameter Sets: ByName
Aliases:

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

-FileSystemId

ID of the File System tied to the NFS export.

Type: String[]
Parameter Sets: ByFilesystemId
Aliases:

Required: True
Position: Named
Default value: None
Accept pipeline input: False
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.NfsExport

NOTES