Is it possible to assign custom properties during node creation? We have a strange case where the admin account we use to create the node has an account limitation based on a custom property, which causes the created node to be inaccessible after creation. I'd like to be able to do something like below but it looks like you can only pass properties of the Node class as opposed to the linked ones?
props = {
'IPAddress': ip_address,
'EngineID': 1,
'ObjectSubType': 'SNMP',
'SNMPVersion': 2,
'Community': community,
'DNS': '',
'SysName': ''
'CustomProperties.Property': 'value'
}
results = swis.create('Orion.Nodes', **props)