Am I Smoking Crack? -- it's okay if you say Yes,.. 
I am at my wits end, I'm trying to automatic some internal business workflows;
Using Orionsdk-python, I am creating subnets. While creating these subnets I notice in IPAM that the 'Automatic Scanning' 'Polling Engine' is not set.
Example:

My python 'meat' to create this subnets are as follows;
######## Python ###########
props = {
'Address': device_route.Network,
'CIDR': device_route.Mask,
'VLAN': Vlan_id,
'Location':CountyName + "." + CountyNumber,
'ParentId': parent_id,
'ScanInterval': 240,
'EngineId':1,
'DisableNeighborScanning':True
}
#get the credentials
mycreds = tsLocalTools.credentials
#Connect to SolarWinds and get ready to create subnets
swis = orionsdk.SwisClient(mycreds.credentials.swServer, mycreds.credentials.swUsername,mycreds.credentials.swPassword)
#create subnet
sw_results = swis.create('IPAM.Subnet',**props)
print(sw_results)
############ End Python ################
As you can see in the picture, the subnet is created,... but the Polling Engine is left blank.. for automatic subnet scanning
So any subnet that I create will not Automatically be scanned,..
How can I specify what polling engine to use?? Any ideas would greatly be welcomed! Thank you ahead of time, and thank you for at least reading this.
Have a great one,..
* IPAM V4.7