Get-FileTreeQuota
SYNOPSIS
Gets details of the file tree quotas on a PowerStore cluster.
SYNTAX
All (Default)
Get-FileTreeQuota [-Cluster] <Cluster> [<CommonParameters>]
ById
Get-FileTreeQuota [-Cluster] <Cluster> -Id <String[]> [<CommonParameters>]
ByFileSystemId
Get-FileTreeQuota [-Cluster] <Cluster> -FileSystemId <String[]> [<CommonParameters>]
DESCRIPTION
Gets details of the file tree quotas on a PowerStore cluster. The options include listing all file tree quota on the cluster, getting file tree quotas by ID, or getting file tree quotas by their associated FileSystemId.
EXAMPLES
Example 1
PS C:\> Get-FileTreeQuota -Cluster $cluster
Where $cluster is a PowerStore cluster instance. Returns a list of all file tree quotas on the PowerStore cluster.
Example 2
PS C:\> Get-FileTreeQuota -Cluster $cluster -Id id1,id2
Where $cluster is a PowerStore cluster instance. Returns file tree quotas with IDs id1 and id2 on the PowerStore cluster.
Example 3
PS C:\> Get-FileTreeQuota -Cluster $cluster -FileSystemId id1,id2
Where $cluster is a PowerStore cluster instance. Returns file tree quotas 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 (ByValue)
Accept wildcard characters: False
-Id
The file tree quota ID.
Type: String[]
Parameter Sets: ById
Aliases:
Required: True
Position: Named
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
-FileSystemId
ID of the file system tied to the file tree quotas to be retrieved.
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.