plugin store
This command inserts, updates or deletes a BigFix cloud plugin setting. Plugin store settings are named values that can be encrypted or otherwise. Each plugin store setting has a timestamp associated with it.
| Version | Platforms |
|---|---|
| 10.0.0.0 | Red Hat, Windows |
Syntax
plugin store "<pluginName>" set "<pluginKey>" value "<value>" on "<date>"
plugin store "<pluginName>" set encrypted "<pluginKey>" value "<value>" on "<date>"
plugin store "<plugin name>" multiple set "<percent encoded json>" on "{now}"
plugin store "<plugin name>" multiple set encrypted "<percent encoded json>" on "{now}"
plugin store "<pluginName>" delete "<pluginKey>"
plugin store "<pluginName>" delete all
Where:
pluginName describes the name of the plugin
pluginKey describes the key name of the plugin
value is the value to set
date is a timestamp
percent encoded json is a percent encoded string which represents a JSON file with the following format:
{
"pluginKey1":"value1",
"pluginKey2":"value2",
...
}
and
set is the command to insert or update a plugin key value
set encrypted is the command to insert or update a plugin key value in encrypted mode
multiple set is the command to insert or update a list of plugin settings defined in a percent encoded json string
multiple set encrypted is the command to insert or update a list of plugin settings, whose values are encrypted, defined in a percent encoded json string
delete is the command to delete plugin keys
delete all is the command to delete all plugin keys
Examples
plugin store "AWSAssetDiscoveryPlugin" set "UName" value "JUser" on "31 Jan 2007 21:09:36 gmt"plugin store "AWSAssetDiscoveryPlugin" set encrypted "UPassword" value "W34dfT_ghy7" on "{now}"plugin store "AWSAssetDiscoveryPlugin" delete "UPassword"plugin store "AWSAssetDiscoveryPlugin" delete allplugin store "AWSAssetDiscoveryPlugin" multiple set "%7B%22foo%22%3A%22bar%22%7D" on "31 Jan 2007 21:09:36 gmt"