salt.modules.rallydev
Support for RallyDev
New in version 2015.8.0.
Requires a username
and a password
in /etc/salt/minion
:
rallydev: username: [email protected] password: 123pass
-
List items of a particular type
CLI Examples:
salt myminion rallydev.list_<item name>s salt myminion rallydev.list_users salt myminion rallydev.list_artifacts
salt.modules.rallydev.list_items(name)
-
List the users
CLI Example:
salt myminion rallydev.list_users
salt.modules.rallydev.list_users()
-
Query a type of record for one or more items. Requires a valid query string. See https://rally1.rallydev.com/slm/doc/webservice/introduction.jsp for information on query syntax.
CLI Example:
salt myminion rallydev.query_<item name> <query string> [<order>] salt myminion rallydev.query_task '(Name contains github)' salt myminion rallydev.query_task '(Name contains reactor)' Rank
salt.modules.rallydev.query_item(name, query_string, order='Rank')
-
Update a user
CLI Example:
salt myminion rallydev.query_user '(Name contains Jo)'
salt.modules.rallydev.query_user(query_string, order='UserName')
-
Show an artifact
CLI Example:
salt myminion rallydev.show_artifact <artifact id>
salt.modules.rallydev.show_artifact(id_)
-
Show an item
CLI Example:
salt myminion rallydev.show_<item name> <item id>
salt.modules.rallydev.show_item(name, id_)
-
Show a user
CLI Example:
salt myminion rallydev.show_user <user id>
salt.modules.rallydev.show_user(id_)
-
Update an item. Either a field and a value, or a chunk of POST data, may be used, but not both.
CLI Example:
salt myminion rallydev.update_<item name> <item id> field=<field> value=<value> salt myminion rallydev.update_<item name> <item id> postdata=<post data>
salt.modules.rallydev.update_item(name, id_, field=None, value=None, postdata=None)
-
Update a user
CLI Example:
salt myminion rallydev.update_user <user id> <field> <new value>
salt.modules.rallydev.update_user(id_, field, value)
© 2021 SaltStack.
Licensed under the Apache License, Version 2.0.
https://docs.saltproject.io/en/latest/ref/modules/all/salt.modules.rallydev.html