Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.19 KB

BatchUpdatePlugin.md

File metadata and controls

33 lines (24 loc) · 1.19 KB

BatchUpdatePlugin

Upgrade plugins on multiple tasks

Properties

Name Type Description Notes
entity BatchTaskEntity
action TemplateModificationOperation
query BatchTaskQuery
action_parameters PluginUpdateSpec

Example

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)

[Back to Model list] [Back to API list] [Back to README]