Module for execution of ServiceNow CI (configuration items)
New in version 2016.11.0.
| depends: | servicenow_rest python module |
|---|---|
| configuration: | Configure this module by specifying the name of a configuration profile in the minion config, minion pillar, or master config. The module will use the ‘servicenow’ key by default, if defined. For example: servicenow:
instance_name: ''
username: ''
password: ''
|
salt.modules.servicenow.delete_record(table, sys_id)¶Delete an existing record
| Parameters: |
|
|---|
CLI Example:
salt myminion servicenow.delete_record sys_computer 2134566
salt.modules.servicenow.non_structured_query(table, query=None, **kwargs)¶Run a non-structed (not a dict) query on a servicenow table. See http://wiki.servicenow.com/index.php?title=Encoded_Query_Strings#gsc.tab=0 for help on constructing a non-structured query string.
| Parameters: |
|
|---|
CLI Example:
salt myminion servicenow.non_structured_query sys_computer 'role=web'
salt myminion servicenow.non_structured_query sys_computer role=web type=computer
salt.modules.servicenow.set_change_request_state(change_id, state='approved')¶Set the approval state of a change request/record
| Parameters: |
|
|---|
CLI Example:
salt myminion servicenow.set_change_request_state CHG000123 declined
salt myminion servicenow.set_change_request_state CHG000123 approved
salt.modules.servicenow.update_record_field(table, sys_id, field, value)¶Update the value of a record’s field in a servicenow table
| Parameters: |
|
|---|
CLI Example:
salt myminion servicenow.update_record_field sys_user 2348234 first_name jimmy
Docs for previous releases are available on readthedocs.org.
Latest Salt release: 2018.3.3
salt.modules.serverdensity_device