Update Event Script Actor and Resources

Hello,

How to call the Parameters on the Gateway Update Script?

I can’t seem find a video or example on how to use the parameters for Gateway Update Script.

Thanks,
Mon

Hello, you simply call out actor or resources. Copy the script below and check the wrapper.log for the print statements. If you don’t have access to the console, you can you system.util.getLogger() to print to the gateway status log web page.

print 'actor:', actor
print 'resources added:', resources['added']
print 'resources modified:', resources['modified']
print 'resources removed:', resources['removed']
1 Like

Thanks!

1 Like