I'm trying to programmatically add devices, discover them, and import resources using python. Currently I'm tryin to import resources, I'm using the following:
- ScheduleListResources - to do a List Resources on the node
- GetScheduledListResourcesStatus - to determine when it's ready to import
- ImportListResourcesResult - to import the resulting resources that were found
However, this appears to import EVERYTHING. I'd like to be able to iterate through the resources found and pick and choose prior to importing. However, I don't see any way to get the resulting list, and to selectively choose what to import. The ScheduleListResources merely returns the jobId, GetScheduleListResourcesStatus merely lets me know of success/failure, and ImportListResourcesResult appears to only take the jobId and NodeID of the resulting job to import everything.
Anyone know how to get a list of the resources found and then import only what I want?
thanks!
Paul