Manage a local persistent data structure that can hold any arbitrary data specific to the minion
Check and set a value in the minion datastore
CLI Example:
salt '*' data.cas <key> <value> <old_value>
Clear out all of the data in the minion datastore, this function is destructive!
CLI Example:
salt '*' data.clear
Replace the entire datastore with a passed data structure
CLI Example:
salt '*' data.dump '{'eggs': 'spam'}'
Get a (list of) value(s) from the minion datastore
New in version 2015.8.0.
CLI Example:
salt '*' data.get key
salt '*' data.get '["key1", "key2"]'
Check if key is in the minion datastore
New in version 2015.8.0.
CLI Example:
salt '*' data.has_key <mykey>
Get items from the minion datastore
New in version 2015.8.0.
CLI Example:
salt '*' data.items
Get all keys from the minion datastore
New in version 2015.8.0.
CLI Example:
salt '*' data.keys
Return all of the data in the minion datastore
CLI Example:
salt '*' data.load
Pop (return & delete) a value from the minion datastore
New in version 2015.5.2.
CLI Example:
salt '*' data.pop <key> "there was no val"
Update a key with a value in the minion datastore
CLI Example:
salt '*' data.update <key> <value>
Get values from the minion datastore
New in version 2015.8.0.
CLI Example:
salt '*' data.values