@tdanner,
I am trying to change a Node from ICMP to SNMP via the SDK/SWQL API via the REST calls.
I am using Perl. All the calls are working for other updates, but I am unable to update a Node to SNMP.
Here are the properties I am updating:
$machine_info->{ObjectSubType} = 'SNMP';
my $properties = {
SysObjectID => $machine_info->{SysObjectID},
Vendor => $machine_info->{Vendor},
SNMPVersion => 2,
VendorIcon => $machine_info->{VendorIcon},
NodeDescription => $machine_info->{NodeDescription},
ObjectSubType => $machine_info->{ObjectSubType},
Community => $comm_string,
};
$swqldb->update($uri, $properties);