I’m writing a custom Cloud Plugin and I have a few questions.
-
I need to retain some data about my cloud instances. I can’t store it on the object (self), the class (CloudPluginWrapper) or as a module global as it seems everything is reinstanciated every time one of the methods is called. I want to store some details when CreateInstances() is called and use those details when GetActiveInstances() is called. Is there a mechanism I can use for this?
-
Is it possible to query the ‘Region’ name from inside the Cloud Plugin?