Fetch the permissions of a specific Filter.
Get-JiraFilterPermission [-Filter] <JiraPS.Filter> [[-Credential] <PSCredential>]
[<CommonParameters>]
Get-JiraFilterPermission [-Id] <UInt32[]> [[-Credential] <PSCredential>]
[<CommonParameters>]
This allows the user to retrieve all the sharing permissions set for a Filter.
Get-JiraFilterPermission -Filter (Get-JiraFilter 12345)
#-------
Get-JiraFilterPermission -Id 12345
Two methods for retrieving the permissions set for Filter 12345.
12345 | Get-JiraFilterPermission
#-------
Get-JiraFilter 12345 | Add-JiraFilterPermission
Two methods for retrieve the permissions set for Filter 12345 by using the pipeline.
The Id could be read from a file.
Filter object from which to retrieve the permissions
Type: JiraPS.Filter
Parameter Sets: ByInputObject
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Id of the Filter from which to retrieve the permissions
Type: UInt32[]
Parameter Sets: ById
Aliases:
Required: True
Position: 0
Default value: None
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Credentials to use to connect to JIRA.
If not specified, this function will use anonymous access.
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
Position: 1
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
This function requires either the -Credential
parameter to be passed or
a persistent JIRA session.
See New-JiraSession
for more details.
If neither are supplied, this function will run with anonymous access to JIRA.