public/api-v2/project/Invoke-JiraGetProjectVersions.ps1
$JiraProjectVersionExpand = @("operations") #https://developer.atlassian.com/cloud/jira/platform/rest/v2/#api-rest-api-2-project-projectIdOrKey-versions-get function Invoke-JiraGetProjectVersions { [CmdletBinding()] param ( # The project ID or project key (case sensitive). [Parameter(Mandatory,Position=0)] [string] $ProjectIdOrKey, # Used to expand additional attributes [Parameter(Position=2)] [ValidateScript({ Compare-StringArraySubset $JiraProjectVersionExpand $_ })] [string[]] $Expand, # The JiraContext object to use for the request [Parameter()] [object] $JiraContext ) process { $functionPath = "/rest/api/2/project/$ProjectIdOrKey/versions" $verb = "GET" $query = New-PACRestMethodQueryParams if($PSBoundParameters.ContainsKey("Expand")){$query.Add("expand",$Expand -join ",")} $method = New-PACRestMethod $functionPath $verb $query $method.Invoke($JiraContext) } } |