Are you interested in our Early Access Program (EAP)? This program allows you to preview code, test in your lab and provide feedback prior to General Availability (GA) release of all Infoblox products. If so, please click the link here.

API & Integration, DevOps,NetOps,SecOps

Reply

Getting unicode object does not support item assignment error

Techie
Posts: 3
2005     0
Hi Team,

I written basic powershell code to add a host.
But getting Admconerror: none ('unicode' object does not support item assignment) internal error.

Please share your inputs if you come across this error

Re: Getting unicode object does not support item assignment error

Moderator
Moderator
Posts: 224
2005     0

Could you please post a code example so we can provide insight.  Be sure to use code tags to make it readable in the forum.

Re: Getting unicode object does not support item assignment error

Techie
Posts: 3
2005     0

Please find pseduo code below

<p>

<code>

$Creds = Get-Credential

$URL = https://x.x.x.x/wapi/v2.7.1/record:host

$data = '{"ipv4addrs":[{"ipv4addr":"y.y.y.y"}],"name":"test.acme.com","view":"default"}'

$data = $data | ConvertTo-Json

INvoke-RestMethod -uri $URL -Method POST -Credential $creds -Body $data -contenttype 'application/json'

</code>

</p>

Re: Getting unicode object does not support item assignment error

Techie
Posts: 3
2006     0
Fixed the issue. Explicitly declare @[pscustomobject]. Thank you.
Showing results for 
Search instead for 
Did you mean: 

Recommended for You