datastream/List-DataStreams.ps1
function List-DataStreams { Param( [Parameter(Mandatory=$false)] [string] $GroupID, [Parameter(Mandatory=$false)] [ValidateSet('ACTIVATED','DEACTIVATED','IN_PROGRESS')] [string] $StreamStatus, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/datastream-config-api/v1/datastream1/streams?groupId=$GroupID&streamStatus=$StreamStatus&accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |