datastream/Get-DataStreamAggregateLogs.ps1
function Get-DataStreamAggregateLogs { Param( [Parameter(Mandatory=$true)] [string] $StreamID, [Parameter(Mandatory=$true)] [string] $Start, [Parameter(Mandatory=$true)] [string] $End, [Parameter(Mandatory=$false)] [string] $AggregateMetric, [Parameter(Mandatory=$false)] [string] $Page, [Parameter(Mandatory=$false)] [string] $Size, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'papi', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) # Support 'now' for End if($End -eq "now"){ $utime = (Get-Date).ToUniversalTime().AddSeconds(-61) # Datastream needs end to be at least 1 minute in the past $End = Get-Date -Date $utime -Format yyyy-MM-ddTHH:mm:ssZ } $DateTimeMatch = '[\d]{4}-[\d]{2}-[\d]{2}T[\d]{2}:[\d]{2}:[\d]{2}Z' if($Start -notmatch $DateTimeMatch -or $End -notmatch $DateTimeMatch){ throw "ERROR: Start & End must be in the format 'YYYY-MM-DDThh:mm:ssZ'" } $Path = "/datastream-pull-api/v1/streams/$StreamID/raw-logs?start=$Start&end=$End&aggregateMetric=$AggregateMetric&page=$Page&size=$Size&accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method GET -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |