image-manager/Get-ImageManagerPolicy.ps1
function Get-ImageManagerPolicy { Param( [Parameter(Mandatory=$true)] [string] $PolicySetAPIKey, [Parameter(Mandatory=$true)] [string] $PolicyID, [Parameter(Mandatory=$true)] [string] [ValidateSet('Staging', 'Production')] $Network, [Parameter(Mandatory=$false)] [string] $ContractID, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Network = $Network.ToLower() $Path = "/imaging/v2/network/$Network/policies/$PolicyID`?accountSwitchKey=$AccountSwitchKey" $AdditionalHeaders = @{ 'Luna-Token' = $PolicySetAPIKey } if($ContractID -ne ''){ $AdditionalHeaders['Contract'] = $ContractID } try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -AdditionalHeaders $AdditionalHeaders -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |