test-management/List-TestSuiteConfigVersions.ps1
function List-TestSuiteConfigVersions { Param( [Parameter(Mandatory=$true)] [string] $TestSuiteID, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/test-management/v2/functional/test-suites/$TestSuiteID/associations/config-versions?accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |