lds/List-LDSLogFormatsByType.ps1
function List-LDSLogFormatsByType { Param( [Parameter(Mandatory=$false)] [string] $logSourceType = "cpcode-products", [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/lds-api/v3/log-sources/$logSourceType/log-formats?accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |