Using SoftLayer's Python client, I'm trying to update the SoftLayer_Network_Subnet_IpAddress object's isReserved field to True, but it doesn't appear to work.
I call SoftLayer_Network_Subnet_IpAddress::editObject method, and pass in {'isReserved' : True}.
Here is how I call it:
client.call('SoftLayer_Network_Subnet_IpAddress', 'editObject',
{'isReserved': True}, id=123456)
The return value is True, indicating success, but the IpAddress still doesn't have it set to True.
Would appreciate if you can tell me why this is not working.