netstorage/Set-NSStorageGroup.ps1
function Set-NSStorageGroup { Param( [Parameter(Mandatory=$true)] [string] $StorageGroupID, [Parameter(Mandatory=$false, ValueFromPipeline)] [System.Object] $StorageGroup, [Parameter(Mandatory=$false)] [string] $Body, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) # Must use Process block as using ValueFromPipeline process { $Path = "/storage/v1/storage-groups/$StorageGroupID`?accountSwitchKey=$AccountSwitchKey" try { if($StorageGroup){ $Body = $StorageGroup | ConvertTo-Json -Depth 100 } $Result = Invoke-AkamaiRestMethod -Method PUT -Path $Path -EdgeRCFile $EdgeRCFile -Section $Section -Body $Body return $Result } catch { throw $_.Exception } } } |