edgekv/New-EdgeKVItem.ps1
function New-EdgeKVItem { Param( [Parameter(Mandatory=$true)] [string] [ValidateSet('STAGING','PRODUCTION')] $Network, [Parameter(Mandatory=$true)] [string] $NamespaceID, [Parameter(Mandatory=$true)] [string] $GroupID, [Parameter(Mandatory=$true)] [string] $ItemID, [Parameter(Mandatory=$true)] [string] $Value, [Parameter(Mandatory=$false)] [string] $EdgeRCFile = '~\.edgerc', [Parameter(Mandatory=$false)] [string] $Section = 'default', [Parameter(Mandatory=$false)] [string] $AccountSwitchKey ) $Path = "/edgekv/v1/networks/$Network/namespaces/$NamespaceID/groups/$GroupID/items/$ItemID`?accountSwitchKey=$AccountSwitchKey" try { $Result = Invoke-AkamaiRestMethod -Method PUT -Path $Path -Body $Value -EdgeRCFile $EdgeRCFile -Section $Section return $Result } catch { throw $_.Exception } } |