< Back

Get-JIRAProject

Fri Jan 10, 2020 9:31 pm

NAME Get-JIRAProject



SYNOPSIS

Get one or more JIRAProject objects.





SYNTAX

Get-JIRAProject -Key <String> [-Session <AtlassianSession>] [<CommonParameters>]



Get-JIRAProject -Name <String> [-Session <AtlassianSession>] [<CommonParameters>]



Get-JIRAProject -All [-Session <AtlassianSession>] [<CommonParameters>]





DESCRIPTION

The Get-JIRAProject cmdlet gets a specified JIRAProject object or performs a search to get multiple JIRAProject

objects.





PARAMETERS

-Key <String>

Specifies the key to be used to retrieve the JIRAProject object(s).



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-Name <String>

Specifies the full name or a part of the name used to retrieve the JIRAProject object(s).



Required? true

Position? named

Default value

Accept pipeline input? false

Accept wildcard characters? false



-All [<SwitchParameter>]

Specifies if you want to retrieve all JIRAProjects available to the specified AtlassianSession.



Required? true

Position? named

Default value False

Accept pipeline input? false

Accept wildcard characters? false



-Session <AtlassianSession>

Specifies the AtlassianSession to use to perform this task.

If none is specified Get-AtlassianSession is called.



Required? false

Position? named

Default value (Get-AtlassianSession)

Accept pipeline input? false

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

You cannot pipe input to this cmdlet.





OUTPUTS

JIRAProject

Returns one or more JIRAProject objects.





-------------------------- EXAMPLE 1 --------------------------



PS C:\\>Get-JIRAProject -Name 'Test'



Get all projects that have 'Test' in their name using the already imported AtlassianSession











RELATED LINKS