Public/Get-Lifecycle.ps1
function Get-Lifecycle { <# .SYNOPSIS Returns a list of lifecycles .DESCRIPTION .EXAMPLE PS C:\> Get-Lifecycle Returns an array of all lifecycles for the current space .EXAMPLE PS C:\> Get-Lifecycle -Name Default Returns the lifecycle called 'Documentation' #> [CmdletBinding( DefaultParameterSetName = "default" )] param ( # Parameter help description [Parameter(mandatory = $false, Position = 0, ParameterSetName = "byName", ValueFromPipeline = $true)] [ValidateNotNullOrEmpty()] [String] $Name, [Parameter(mandatory = $false, ParameterSetName = "byID")] [ValidateNotNullOrEmpty()] [String] $ID ) Test-OctopusConnection | Out-Null $result = [System.Collections.Generic.List[Octopus.Client.Model.ProjectGroupResource]]::new() $result = $repo._repository.lifecycles.FindAll() if ($PSCmdlet.ParameterSetName -eq "default") { return $result } if ($PSCmdlet.ParameterSetName -eq "byID") { return ($result | Where-Object ID -EQ $ID) } if ($PSCmdlet.ParameterSetName -eq "byName") { return ($result | Where-Object Name -EQ $Name) } } |