function Get-MicroserviceTiers { <# .SYNOPSIS Returns a list of arrays organizing package names into dependent tiers of installation. #> [CmdletBinding()] Param() return $_MicroserviceTiers; }