README: Add DisableNode
Add new specifier to readme, and fix casing on a few
properties.
Change-Id: I5e1944ab175e6a70dc5f6dcd4d422abb57564b77
Signed-off-by: James Feist <james.feist@linux.intel.com>
diff --git a/README.md b/README.md
index e188efa..4350925 100644
--- a/README.md
+++ b/README.md
@@ -29,6 +29,7 @@
| "Exposes" | [{"Name" : "CPU fan"}, ...] | An array of JSON objects which are valid if the probe result is successful. These objects describe the devices BMC can interact. |
| "Status" | "disabled" | An indicator that allows for some records to be disabled by default. |
| "Bind*" | "2U System Fan connector 1" | The record isn't complete and needs to be combined with another to be functional. The value is a unique reference to a record elsewhere. |
+| "DisableNode| "Fan 1" | Sets the status of another Entity to disabled. |
Template strings in the form of "$identifier" may be used in configuration
files. The following table describes the template strings currently defined.
@@ -87,28 +88,28 @@
"Thresholds": [
[
{
- "direction": "greater than",
+ "Direction": "greater than",
"Name": "upper critical",
- "severity": 1,
- "value": 115
+ "Severity": 1,
+ "Value": 115
},
{
- "direction": "greater than",
+ "Direction": "greater than",
"Name": "upper non critical",
- "severity": 0,
- "value": 110
+ "Severity": 0,
+ "Value": 110
},
{
- "direction": "less than",
+ "Direction": "less than",
"Name": "lower non critical",
- "severity": 0,
- "value": 5
+ "Severity": 0,
+ "Value": 5
},
{
- "direction": "less than",
+ "Direction": "less than",
"Name": "lower critical",
- "severity": 1,
- "value": 0
+ "Severity": 1,
+ "Value": 0
}
]
],
@@ -121,28 +122,28 @@
"Thresholds": [
[
{
- "direction": "greater than",
+ "Direction": "greater than",
"Name": "upper critical",
- "severity": 1,
- "value": 115
+ "Severity": 1,
+ "Value": 115
},
{
- "direction": "greater than",
+ "Direction": "greater than",
"Name": "upper non critical",
- "severity": 0,
- "value": 110
+ "Severity": 0,
+ "Value": 110
},
{
- "direction": "less than",
+ "Direction": "less than",
"Name": "lower non critical",
- "severity": 0,
- "value": 5
+ "Severity": 0,
+ "Value": 5
},
{
- "direction": "less than",
+ "Direction": "less than",
"Name": "lower critical",
- "severity": 1,
- "value": 0
+ "Severity": 1,
+ "Value": 0
}
]
],