Upgrade plugins on multiple tasks
Name | Type | Description | Notes |
---|---|---|---|
entity | BatchTaskEntity | ||
action | TemplateModificationOperation | ||
query | BatchTaskQuery | ||
action_parameters | PluginUpdateSpec |
from waylay.services.rules.models.batch_update_plugin import BatchUpdatePlugin
# TODO update the JSON string below
json = "{}"
# create an instance of BatchUpdatePlugin from a JSON string
batch_update_plugin_instance = BatchUpdatePlugin.from_json(json)
# print the JSON string representation of the object
print BatchUpdatePlugin.to_json()
# convert the object into a dict
batch_update_plugin_dict = batch_update_plugin_instance.to_dict()
# create an instance of BatchUpdatePlugin from a dict
batch_update_plugin_form_dict = batch_update_plugin.from_dict(batch_update_plugin_dict)