|
DLI LPC9 Object Model Reference
|
| object | config/ |
| Object representing configuration server | |
This object contains the following items:
Sample uom library write command:
uom.config=<...>
Sample uom library read command:
print(uom.dump(uom.config))
⇒
<...>
| array | config/links/ |
| List of user-defined links to display in the web UI | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array represents a value in persistent storage.
This array contains Link elements.
Sample CLI read command:
uom get "config/links"
⇒
[{"description":"test 5","href":"test_url7"},{"description":"test 3","href":"test_url5"}]
Sample CLI link creation command:
uom insert "config/links/1" "{\"description\":\"test 3\",\"href\":\"test_url5\"}"
See also Links list: Link
| object | config/links/N/ |
| User-defined link | |
Retrieving the value is denied if not administrative user
This object represents a value in persistent storage.
This object contains the following items:
| href | URI |
| description | Description |
Sample CLI read command (note that link_index is a variable):
uom get "config/links/${link_index}"
⇒
{"description":"test 5","href":"test_url7"}
Sample curl write command (note that :link_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"description\":\"test 5\",\"href\":\"test_url7\"}" "http://192.168.0.100/restapi/config/links/:link_index/"
| string | config/links/N/href/ |
| The target URI of the link | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample curl write command (note that :link_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"test_url7\"" "http://192.168.0.100/restapi/config/links/:link_index/href/"
Sample JS request read command (note that _link_index is a variable):
request.get({url:"config/links/"+_link_index.toString()+"/href/"},function(error,response,body) {console.log(body)});
⇒
"test_url7"
| string | config/links/N/description/ |
| The textual representation of the link | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample uom library read command (note that _link_index is a variable):
print(uom.dump(uom.config.links[_link_index].description))
⇒
"test 5"
Sample CLI write command (note that link_index is a variable):
uom set "config/links/${link_index}/description" "\"test 5\""
| array | config/plots/ |
| List of plots to display in the web UI | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array represents a value in persistent storage.
This array contains Plot elements.
Sample curl plot creation command:
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"x2\":{\"min\":null,\"softmax\":null,\"max\":null,\"tics\":null,\"mtics\":null,\"softmin\":null},\"y2\":{\"min\":null,\"softmax\":null,\"max\":null,\"tics\":null,\"mtics\":null,\"softmin\":null},\"data\":[{\"ds\":\"relay_voltage\",\"style\":{\"type\":\"solid\",\"style\":\"lines\",\"width\":1,\"color\":\"FF0000\",\"axes\":\"x1y1\",\"marker\":\"plus\",\"size\":0},\"title\":\"Relay voltage\"}],\"width\":640,\"title\":\"Relay voltage\",\"display\":true,\"y1\":{\"min\":0,\"softmax\":null,\"max\":null,\"tics\":null,\"mtics\":null,\"softmin\":null},\"x1\":{\"min\":null,\"softmax\":null,\"max\":null,\"tics\":null,\"mtics\":null,\"softmin\":null},\"height\":480}" "http://192.168.0.100/restapi/config/plots/"
Sample CLI write command:
uom set "config/plots" ...
| object | config/plots/N/ |
| Configuration of plot for measured values | |
This object contains the following items:
| title | Title |
| display | Display |
| width | Width |
| height | Height |
| x1 | X1 axis settings |
| x2 | X2 axis settings |
| y1 | Y1 axis settings |
| y2 | Y2 axis settings |
| data | Plot lines |
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/"},function(error,response,body) {console.log(body)});
⇒
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/",body:{"x2":{"min":null,"softmax":null,"max":null,"tics":null,"mtics":null,"softmin":null},"y2":{"min":null,"softmax":null,"max":null,"tics":null,"mtics":null,"softmin":null},"data":[{"ds":"buses.0.voltage","style":{"type":"solid","style":"lines","width":1,"color":"FF0000","axes":"x1y1","marker":"plus","size":0},"title":"Bus A voltage"},{"ds":"buses.1.voltage","style":{"type":"solid","style":"lines","width":1,"color":"0000FF","axes":"x1y1","marker":"plus","size":0},"title":"Bus B voltage"}],"width":640,"title":"Bus voltages","display":true,"y1":{"min":0,"softmax":110,"max":null,"tics":null,"mtics":null,"softmin":null},"x1":{"min":null,"softmax":null,"max":null,"tics":null,"mtics":null,"softmin":null},"height":480}});
See also Plot: Title
See also Plot: Display
See also Plot: Width
See also Plot: Height
See also Plot: X1 axis settings
See also Plot: X2 axis settings
See also Plot: Y1 axis settings
See also Plot: Y2 axis settings
See also Plot: Plot lines
| string | config/plots/N/title/ |
| The title of the plot | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/title/',auth=auth,headers=headers,json='Bus energy consumption')
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/title/",body:"Power voltage"});
| sum (boolean) | config/plots/N/display/ |
| Indicates whether the plot should be displayed | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Shown | The plot is shown | |
| constant false | Hidden | The plot is hidden | |
Sample CLI read command (note that plot_index is a variable):
uom get "config/plots/${plot_index}/display"
⇒
true
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "true" "http://192.168.0.100/restapi/config/plots/:plot_index/display/"
| number | config/plots/N/width/ |
| The width of the plot | |
The value represents screen length, the standard unit of which is the pixel (px).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample uom library read command (note that _plot_index is a variable):
print(uom.dump(uom.config.plots[_plot_index].width))
⇒
640
Sample curl read command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/plots/:plot_index/width/"
⇒
640
| number | config/plots/N/height/ |
| The height of the plot | |
The value represents screen length, the standard unit of which is the pixel (px).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample requests read command (note that _plot_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/height/',auth=auth,headers=headers).json())
⇒
480
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/height/",body:480});
| object | config/plots/N/x1/ |
| Configuration for X1 axis | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This object is composite, i.e. is modified as a whole.
This object represents a value in persistent storage.
This object contains the following items:
| min | Minimum, if any |
| max | Maximum, if any |
| softmin | Soft minimum, if any |
| softmax | Soft maximum, if any |
| tics | Major tick interval, if any |
| mtics | Minor ticks per major tick, if any |
Sample requests read command (note that _plot_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/x1/',auth=auth,headers=headers).json())
⇒
{'min': None, 'softmax': None, 'max': None, 'tics': None, 'mtics': None, 'softmin': None}
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/x1/",body:{"min":null,"softmax":null,"max":null,"tics":null,"mtics":null,"softmin":null}});
| sum (optional number) | config/plots/N/x1/min/ |
| Minimum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The maximum value is derived from data and the soft maximum | |
| number | Minimum | Minimum value to display on the axis | |
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/x1/min/"
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/x1/min" "null"
| sum (optional number) | config/plots/N/x1/max/ |
| Maximum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The minimum value is derived from data and the soft minimum | |
| number | Maximum | Maximum value to display on the axis | |
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/x1/max/",body:null});
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/x1/max/"
| sum (optional number) | config/plots/N/x1/softmin/ |
| Minimum value to display on the axis unless values exist below it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft maximum defined | |
| number | Soft minimum | Minimum value to display on the axis unless values exist below it | |
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/x1/softmin/"},function(error,response,body) {console.log(body)});
⇒
null
Sample uom library read command (note that _plot_index is a variable):
print(uom.dump(uom.config.plots[_plot_index].x1.softmin))
⇒
null
| sum (optional number) | config/plots/N/x1/softmax/ |
| Maximum value to display on the axis unless values exist above it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft minimum defined | |
| number | Soft maximum | Maximum value to display on the axis unless values exist above it | |
Sample uom library write command (note that _plot_index is a variable):
uom.config.plots[_plot_index].x1.softmax=null
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/x1/softmax" "null"
| sum (optional number) | config/plots/N/x1/tics/ |
| The interval, in value units, between major ticks of the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The tick interval is derived from data and size | |
| number | Major tick interval | The interval, in value units, between major ticks of the axis | |
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/x1/tics/',auth=auth,headers=headers,json=None)
Sample curl read command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/plots/:plot_index/x1/tics/"
⇒
null
| sum (optional number) | config/plots/N/x1/mtics/ |
| The number of minor ticks between two major ticks, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | There are no minor ticks | |
| number | Minor ticks per major tick | The number of minor ticks between two major ticks | all of the following is true: |
Sample uom library read command (note that _plot_index is a variable):
print(uom.dump(uom.config.plots[_plot_index].x1.mtics))
⇒
null
Sample uom library write command (note that _plot_index is a variable):
uom.config.plots[_plot_index].x1.mtics=null
| object | config/plots/N/x2/ |
| Configuration for X2 axis | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This object is composite, i.e. is modified as a whole.
This object represents a value in persistent storage.
This object contains the following items:
| min | Minimum, if any |
| max | Maximum, if any |
| softmin | Soft minimum, if any |
| softmax | Soft maximum, if any |
| tics | Major tick interval, if any |
| mtics | Minor ticks per major tick, if any |
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/x2/"},function(error,response,body) {console.log(body)});
⇒
{"min":null,"softmax":null,"max":null,"tics":null,"mtics":null,"softmin":null}
Sample curl read command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/plots/:plot_index/x2/"
⇒
{"min":null,"softmax":null,"max":null,"tics":null,"mtics":null,"softmin":null}
| sum (optional number) | config/plots/N/x2/min/ |
| Minimum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The maximum value is derived from data and the soft maximum | |
| number | Minimum | Minimum value to display on the axis | |
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/x2/min/',auth=auth,headers=headers,json=None)
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/x2/min" "null"
| sum (optional number) | config/plots/N/x2/max/ |
| Maximum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The minimum value is derived from data and the soft minimum | |
| number | Maximum | Maximum value to display on the axis | |
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/x2/max/"
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/x2/max/"},function(error,response,body) {console.log(body)});
⇒
null
| sum (optional number) | config/plots/N/x2/softmin/ |
| Minimum value to display on the axis unless values exist below it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft maximum defined | |
| number | Soft minimum | Minimum value to display on the axis unless values exist below it | |
Sample requests read command (note that _plot_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/x2/softmin/',auth=auth,headers=headers).json())
⇒
None
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/x2/softmin/",body:null});
| sum (optional number) | config/plots/N/x2/softmax/ |
| Maximum value to display on the axis unless values exist above it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft minimum defined | |
| number | Soft maximum | Maximum value to display on the axis unless values exist above it | |
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/x2/softmax/"},function(error,response,body) {console.log(body)});
⇒
null
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/x2/softmax/"
| sum (optional number) | config/plots/N/x2/tics/ |
| The interval, in value units, between major ticks of the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The tick interval is derived from data and size | |
| number | Major tick interval | The interval, in value units, between major ticks of the axis | |
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/x2/tics/"
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/x2/tics" "null"
| sum (optional number) | config/plots/N/x2/mtics/ |
| The number of minor ticks between two major ticks, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | There are no minor ticks | |
| number | Minor ticks per major tick | The number of minor ticks between two major ticks | all of the following is true: |
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/x2/mtics/"},function(error,response,body) {console.log(body)});
⇒
null
Sample requests read command (note that _plot_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/x2/mtics/',auth=auth,headers=headers).json())
⇒
None
| object | config/plots/N/y1/ |
| Configuration for Y1 axis | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This object is composite, i.e. is modified as a whole.
This object represents a value in persistent storage.
This object contains the following items:
| min | Minimum, if any |
| max | Maximum, if any |
| softmin | Soft minimum, if any |
| softmax | Soft maximum, if any |
| tics | Major tick interval, if any |
| mtics | Minor ticks per major tick, if any |
Sample uom library read command (note that _plot_index is a variable):
print(uom.dump(uom.config.plots[_plot_index].y1))
⇒
{max=null,min=0,mtics=null,softmax=110,softmin=null,tics=null}
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/y1/",body:{"min":0,"softmax":110,"max":null,"tics":null,"mtics":null,"softmin":null}});
| sum (optional number) | config/plots/N/y1/min/ |
| Minimum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The maximum value is derived from data and the soft maximum | |
| number | Minimum | Minimum value to display on the axis | |
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "0" "http://192.168.0.100/restapi/config/plots/:plot_index/y1/min/"
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/y1/min/"},function(error,response,body) {console.log(body)});
⇒
0
| sum (optional number) | config/plots/N/y1/max/ |
| Maximum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The minimum value is derived from data and the soft minimum | |
| number | Maximum | Maximum value to display on the axis | |
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/y1/max/"
Sample uom library read command (note that _plot_index is a variable):
print(uom.dump(uom.config.plots[_plot_index].y1.max))
⇒
null
| sum (optional number) | config/plots/N/y1/softmin/ |
| Minimum value to display on the axis unless values exist below it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft maximum defined | |
| number | Soft minimum | Minimum value to display on the axis unless values exist below it | |
Sample JS request read command (note that _plot_index is a variable):
request.get({url:"config/plots/"+_plot_index.toString()+"/y1/softmin/"},function(error,response,body) {console.log(body)});
⇒
null
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/y1/softmin" "null"
| sum (optional number) | config/plots/N/y1/softmax/ |
| Maximum value to display on the axis unless values exist above it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft minimum defined | |
| number | Soft maximum | Maximum value to display on the axis unless values exist above it | |
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/y1/softmax/',auth=auth,headers=headers,json=110)
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/y1/softmax/",body:null});
| sum (optional number) | config/plots/N/y1/tics/ |
| The interval, in value units, between major ticks of the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The tick interval is derived from data and size | |
| number | Major tick interval | The interval, in value units, between major ticks of the axis | |
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/y1/tics/',auth=auth,headers=headers,json=None)
Sample uom library write command (note that _plot_index is a variable):
uom.config.plots[_plot_index].y1.tics=null
| sum (optional number) | config/plots/N/y1/mtics/ |
| The number of minor ticks between two major ticks, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | There are no minor ticks | |
| number | Minor ticks per major tick | The number of minor ticks between two major ticks | all of the following is true: |
Sample uom library write command (note that _plot_index is a variable):
uom.config.plots[_plot_index].y1.mtics=null
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/y1/mtics/"
| object | config/plots/N/y2/ |
| Configuration for Y2 axis | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This object is composite, i.e. is modified as a whole.
This object represents a value in persistent storage.
This object contains the following items:
| min | Minimum, if any |
| max | Maximum, if any |
| softmin | Soft minimum, if any |
| softmax | Soft maximum, if any |
| tics | Major tick interval, if any |
| mtics | Minor ticks per major tick, if any |
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/y2/',auth=auth,headers=headers,json={'min': None, 'softmax': None, 'max': None, 'tics': None, 'mtics': None, 'softmin': None})
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/y2" "{\"min\":null,\"softmax\":null,\"max\":null,\"tics\":null,\"mtics\":null,\"softmin\":null}"
| sum (optional number) | config/plots/N/y2/min/ |
| Minimum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The maximum value is derived from data and the soft maximum | |
| number | Minimum | Minimum value to display on the axis | |
Sample CLI read command (note that plot_index is a variable):
uom get "config/plots/${plot_index}/y2/min"
⇒
0
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "0" "http://192.168.0.100/restapi/config/plots/:plot_index/y2/min/"
| sum (optional number) | config/plots/N/y2/max/ |
| Maximum value to display on the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The minimum value is derived from data and the soft minimum | |
| number | Maximum | Maximum value to display on the axis | |
Sample CLI write command (note that plot_index is a variable):
uom set "config/plots/${plot_index}/y2/max" "null"
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/y2/max/",body:null});
| sum (optional number) | config/plots/N/y2/softmin/ |
| Minimum value to display on the axis unless values exist below it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft maximum defined | |
| number | Soft minimum | Minimum value to display on the axis unless values exist below it | |
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/y2/softmin/",body:null});
Sample requests read command (note that _plot_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/y2/softmin/',auth=auth,headers=headers).json())
⇒
None
| sum (optional number) | config/plots/N/y2/softmax/ |
| Maximum value to display on the axis unless values exist above it, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No soft minimum defined | |
| number | Soft maximum | Maximum value to display on the axis unless values exist above it | |
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/y2/softmax/"
Sample requests write command (note that _plot_index is a variable):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/y2/softmax/',auth=auth,headers=headers,json=None)
| sum (optional number) | config/plots/N/y2/tics/ |
| The interval, in value units, between major ticks of the axis, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Automatic | The tick interval is derived from data and size | |
| number | Major tick interval | The interval, in value units, between major ticks of the axis | |
Sample uom library read command (note that _plot_index is a variable):
print(uom.dump(uom.config.plots[_plot_index].y2.tics))
⇒
null
Sample curl write command (note that :plot_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "null" "http://192.168.0.100/restapi/config/plots/:plot_index/y2/tics/"
| sum (optional number) | config/plots/N/y2/mtics/ |
| The number of minor ticks between two major ticks, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | There are no minor ticks | |
| number | Minor ticks per major tick | The number of minor ticks between two major ticks | all of the following is true: |
Sample requests read command (note that _plot_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/y2/mtics/',auth=auth,headers=headers).json())
⇒
None
Sample uom library write command (note that _plot_index is a variable):
uom.config.plots[_plot_index].y2.mtics=null
| object | config/plots/N/data/N/style/ |
| Style of the plot line | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This object is a part of a composite value which is modified as a whole.
This object represents a value in persistent storage.
This object contains the following items:
| style | Line style |
| type | Line type |
| color | Line color |
| width | Line width |
| marker | Marker type |
| size | Marker size |
| axes | Base axes |
Sample curl write command (note that :plot_index and :plot_line_configuration_index are URL template arguments):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"type\":\"solid\",\"style\":\"lines\",\"width\":1,\"color\":\"FF0000\",\"axes\":\"x1y1\",\"marker\":\"plus\",\"size\":0}" "http://192.168.0.100/restapi/config/plots/:plot_index/data/:plot_line_configuration_index/style/"
Sample uom library read command (note that _plot_index and _plot_line_configuration_index are variables):
print(uom.dump(uom.config.plots[_plot_index].data[_plot_line_configuration_index].style))
⇒
{axes="x1y1",color="FF0000",marker="plus",size=0,style="lines",type="solid",width=1}
| string | config/plots/N/data/N/style/style/ |
| The style of the line | |
The value is subject to the following constraints: plot styles[the value]
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample requests read command (note that _plot_index and _plot_line_configuration_index are variables):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/style/style/',auth=auth,headers=headers).json())
⇒
'lines'
Sample JS request read command (note that _plot_index and _plot_line_configuration_index are variables):
request.get({url:"config/plots/"+_plot_index.toString()+"/data/"+_plot_line_configuration_index.toString()+"/style/style/"},function(error,response,body) {console.log(body)});
⇒
"lines"
| string | config/plots/N/data/N/style/type/ |
| The type of the line | |
The value is subject to the following constraints: line types[the value]
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample requests write command (note that _plot_index and _plot_line_configuration_index are variables):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/style/type/',auth=auth,headers=headers,json='solid')
Sample uom library write command (note that _plot_index and _plot_line_configuration_index are variables):
uom.config.plots[_plot_index].data[_plot_line_configuration_index].style.type="solid"
| string | config/plots/N/data/N/style/color/ |
| The color of the line | |
The value is subject to the following constraints: the value matches ^[0-9A-F]{6}$
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample JS request read command (note that _plot_index and _plot_line_configuration_index are variables):
request.get({url:"config/plots/"+_plot_index.toString()+"/data/"+_plot_line_configuration_index.toString()+"/style/color/"},function(error,response,body) {console.log(body)});
⇒
"FF0000"
Sample requests read command (note that _plot_index and _plot_line_configuration_index are variables):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/style/color/',auth=auth,headers=headers).json())
⇒
'FF0000'
| number | config/plots/N/data/N/style/width/ |
| The width of the line | |
The value represents screen length, the standard unit of which is the pixel (px).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
This number represents a value in persistent storage.
Sample CLI read command (note that plot_index and plot_line_configuration_index are variables):
uom get "config/plots/${plot_index}/data/${plot_line_configuration_index}/style/width"
⇒
1
Sample JS request read command (note that _plot_index and _plot_line_configuration_index are variables):
request.get({url:"config/plots/"+_plot_index.toString()+"/data/"+_plot_line_configuration_index.toString()+"/style/width/"},function(error,response,body) {console.log(body)});
⇒
1
| string | config/plots/N/data/N/style/marker/ |
| The type of the marker | |
The value is subject to the following constraints: marker types[the value]
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample curl read command (note that :plot_index and :plot_line_configuration_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/plots/:plot_index/data/:plot_line_configuration_index/style/marker/"
⇒
"plus"
Sample requests write command (note that _plot_index and _plot_line_configuration_index are variables):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/style/marker/',auth=auth,headers=headers,json='plus')
| number | config/plots/N/data/N/style/size/ |
| The size of the markers | |
The value represents screen length, the standard unit of which is the pixel (px).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
This number represents a value in persistent storage.
Sample CLI write command (note that plot_index and plot_line_configuration_index are variables):
uom set "config/plots/${plot_index}/data/${plot_line_configuration_index}/style/size" "0"
Sample requests read command (note that _plot_index and _plot_line_configuration_index are variables):
print(requests.get('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/style/size/',auth=auth,headers=headers).json())
⇒
0
| string | config/plots/N/data/N/style/axes/ |
| The axes on which the line should be plotted. Units of lines plotted on the same axes must match | |
The value is subject to the following constraints: axes[the value]
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample CLI read command (note that plot_index and plot_line_configuration_index are variables):
uom get "config/plots/${plot_index}/data/${plot_line_configuration_index}/style/axes"
⇒
"x1y1"
Sample uom library read command (note that _plot_index and _plot_line_configuration_index are variables):
print(uom.dump(uom.config.plots[_plot_index].data[_plot_line_configuration_index].style.axes))
⇒
"x1y1"
| array | config/plots/N/data/ |
| Configurations of values to plot | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
This array contains Plot line configuration elements.
Sample JS request write command (note that _plot_index is a variable):
request.put({url:"config/plots/"+_plot_index.toString()+"/data/",body:[{"ds":"buses.0.current","style":{"type":"solid","style":"lines","width":1,"color":"FF0000","axes":"x1y1","marker":"plus","size":0},"title":"Bus A current"},{"ds":"buses.1.current","style":{"type":"solid","style":"lines","width":1,"color":"0000FF","axes":"x1y1","marker":"plus","size":0},"title":"Bus B current"}]});
Sample CLI plot line configuration creation command (note that plot_index is a variable):
uom insert "config/plots/${plot_index}/data/0" "{\"ds\":\"power_voltage\",\"style\":{\"type\":\"solid\",\"style\":\"lines\",\"width\":1,\"color\":\"FF0000\",\"axes\":\"x1y1\",\"marker\":\"plus\",\"size\":0},\"title\":\"Power voltage\"}"
| object | config/plots/N/data/N/ |
| Properties of a plot line | |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
| ds | Data source |
| title | Title |
| style | Style |
Sample requests deletion command (note that _plot_index and _plot_line_configuration_index are variables):
requests.delete('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/',auth=auth,headers=headers)
Sample CLI deletion command (note that plot_index and plot_line_configuration_index are variables):
uom remove "config/plots/${plot_index}/data/${plot_line_configuration_index}"
| string | config/plots/N/data/N/ds/ |
| Identifier of the data source to use | |
The value is subject to the following constraints: measured values[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample JS request read command (note that _plot_index and _plot_line_configuration_index are variables):
request.get({url:"config/plots/"+_plot_index.toString()+"/data/"+_plot_line_configuration_index.toString()+"/ds/"},function(error,response,body) {console.log(body)});
⇒
"environment.temperature"
Sample curl read command (note that :plot_index and :plot_line_configuration_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/plots/:plot_index/data/:plot_line_configuration_index/ds/"
⇒
"environment.illuminance"
| string | config/plots/N/data/N/title/ |
| The title of the plot line | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample uom library read command (note that _plot_index and _plot_line_configuration_index are variables):
print(uom.dump(uom.config.plots[_plot_index].data[_plot_line_configuration_index].title))
⇒
"Bus B current"
Sample requests write command (note that _plot_index and _plot_line_configuration_index are variables):
requests.put('http://192.168.0.100/restapi/config/plots/'+str(_plot_index)+'/data/'+str(_plot_line_configuration_index)+'/title/',auth=auth,headers=headers,json='Bus B total energy')
See also Plot line configuration: Style
| array | config/meters/ |
| List of meters to display in the web UI | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array represents a value in persistent storage.
This array contains Meter configuration elements.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/meters/"
⇒
...
Sample CLI meter configuration creation command:
uom insert "config/meters/1" "{\"decimals\":1,\"color\":\"\",\"sectors\":[{\"color\":\"00FF00\",\"name\":\"Optimal\",\"value\":12},{\"color\":\"FF0000\",\"name\":\"High\",\"value\":15}],\"data\":\"buses.0.current\",\"width\":128,\"title\":\"Bus A current\",\"display\":true,\"min_value\":0,\"scale\":\"linear\",\"height\":64}"
| object | config/meters/N/ |
| Configuration of meter for a measured value | |
This object contains the following items:
| title | Title |
| display | Display |
| data | Data source |
| width | Width |
| height | Height |
| scale | Display scale |
| decimals | Decimals |
| color | Arrow color |
| min_value | Minimum value |
| sectors | Meter sectors |
Sample requests read command (note that _meter_configuration_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/meters/'+str(_meter_configuration_index)+'/',auth=auth,headers=headers).json())
⇒
Sample curl read command (note that :meter_configuration_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/meters/:meter_configuration_index/"
⇒
See also Meter configuration: Title
See also Meter configuration: Display
See also Meter configuration: Data source
See also Meter configuration: Width
See also Meter configuration: Height
See also Meter configuration: Display scale
See also Meter configuration: Decimals
See also Meter configuration: Arrow color
See also Meter configuration: Minimum value
See also Meter configuration: Meter sectors
| string | config/meters/N/title/ |
| The title of the meter | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample CLI write command (note that meter_configuration_index is a variable):
uom set "config/meters/${meter_configuration_index}/title" "\"Relay voltage\""
Sample uom library write command (note that _meter_configuration_index is a variable):
uom.config.meters[_meter_configuration_index].title="Bus A voltage"
| sum (boolean) | config/meters/N/display/ |
| Indicates whether the meter should be displayed | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Shown | The meter is shown | |
| constant false | Hidden | The meter is hidden | |
Sample curl read command (note that :meter_configuration_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/meters/:meter_configuration_index/display/"
⇒
true
Sample CLI write command (note that meter_configuration_index is a variable):
uom set "config/meters/${meter_configuration_index}/display" "false"
| string | config/meters/N/data/ |
| Identifier of the data source to use | |
The value is subject to the following constraints: measured values[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample CLI read command (note that meter_configuration_index is a variable):
uom get "config/meters/${meter_configuration_index}/data"
⇒
"buses.1.voltage"
Sample curl write command (note that :meter_configuration_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"environment.temperature\"" "http://192.168.0.100/restapi/config/meters/:meter_configuration_index/data/"
| number | config/meters/N/width/ |
| The width of the meter | |
The value represents screen length, the standard unit of which is the pixel (px).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample JS request read command (note that _meter_configuration_index is a variable):
request.get({url:"config/meters/"+_meter_configuration_index.toString()+"/width/"},function(error,response,body) {console.log(body)});
⇒
128
Sample uom library write command (note that _meter_configuration_index is a variable):
uom.config.meters[_meter_configuration_index].width=128
| number | config/meters/N/height/ |
| The height of the meter | |
The value represents screen length, the standard unit of which is the pixel (px).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample JS request read command (note that _meter_configuration_index is a variable):
request.get({url:"config/meters/"+_meter_configuration_index.toString()+"/height/"},function(error,response,body) {console.log(body)});
⇒
64
Sample requests read command (note that _meter_configuration_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/meters/'+str(_meter_configuration_index)+'/height/',auth=auth,headers=headers).json())
⇒
64
| string | config/meters/N/scale/ |
| The scale function to use for display | |
The value is subject to the following constraints: plot scales[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample requests read command (note that _meter_configuration_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/meters/'+str(_meter_configuration_index)+'/scale/',auth=auth,headers=headers).json())
⇒
'linear'
Sample uom library read command (note that _meter_configuration_index is a variable):
print(uom.dump(uom.config.meters[_meter_configuration_index].scale))
⇒
"linear"
| number | config/meters/N/decimals/ |
| Number of decimal places to show in displayed value | |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample CLI read command (note that meter_configuration_index is a variable):
uom get "config/meters/${meter_configuration_index}/decimals"
⇒
1
Sample requests read command (note that _meter_configuration_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/meters/'+str(_meter_configuration_index)+'/decimals/',auth=auth,headers=headers).json())
⇒
2
| string | config/meters/N/color/ |
| The color of the meter arrow | |
The value is subject to the following constraints: the value matches ^[0-9A-F]{6}$
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample JS request read command (note that _meter_configuration_index is a variable):
request.get({url:"config/meters/"+_meter_configuration_index.toString()+"/color/"},function(error,response,body) {console.log(body)});
⇒
""
Sample uom library read command (note that _meter_configuration_index is a variable):
print(uom.dump(uom.config.meters[_meter_configuration_index].color))
⇒
""
| number | config/meters/N/min_value/ |
| The minimum value to be displayed on the meter | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample requests read command (note that _meter_configuration_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/meters/'+str(_meter_configuration_index)+'/min_value/',auth=auth,headers=headers).json())
⇒
8
Sample CLI write command (note that meter_configuration_index is a variable):
uom set "config/meters/${meter_configuration_index}/min_value" "0"
| array | config/meters/N/sectors/ |
| Configuration of meter sectors | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
This array contains Sector configuration elements.
Sample uom library write command (note that _meter_configuration_index is a variable):
uom.config.meters[_meter_configuration_index].sectors={{color="0000FF",name="Low",value=100},{color="00FF00",name="Optimal",value=1000},{color="FF0000",name="High",value=10000}}
Sample CLI write command (note that meter_configuration_index is a variable):
uom set "config/meters/${meter_configuration_index}/sectors" "[{\"color\":\"0000FF\",\"name\":\"Low\",\"value\":100},{\"color\":\"00FF00\",\"name\":\"Optimal\",\"value\":127},{\"color\":\"FF0000\",\"name\":\"High\",\"value\":140}]"
| object | config/meters/N/sectors/N/ |
| Configuration of a meter sector | |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
| name | Name |
| value | Maximum value |
| color | Color |
Sample JS request deletion command (note that _meter_configuration_index and _sector_configuration_index are variables):
request.delete({url:"config/meters/"+_meter_configuration_index.toString()+"/sectors/"+_sector_configuration_index.toString()+"/"});
Sample uom library write command (note that _meter_configuration_index and _sector_configuration_index are variables):
uom.config.meters[_meter_configuration_index].sectors[_sector_configuration_index]={color="00FF00",name="Optimal",value=127}
| string | config/meters/N/sectors/N/name/ |
| The name of the sector | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample curl write command (note that :meter_configuration_index and :sector_configuration_index are URL template arguments):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"High\"" "http://192.168.0.100/restapi/config/meters/:meter_configuration_index/sectors/:sector_configuration_index/name/"
Sample uom library write command (note that _meter_configuration_index and _sector_configuration_index are variables):
uom.config.meters[_meter_configuration_index].sectors[_sector_configuration_index].name="Low"
| number | config/meters/N/sectors/N/value/ |
| The maximum value for the sector | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
This number represents a value in persistent storage.
Sample curl read command (note that :meter_configuration_index and :sector_configuration_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/meters/:meter_configuration_index/sectors/:sector_configuration_index/value/"
⇒
4.5
Sample CLI read command (note that meter_configuration_index and sector_configuration_index are variables):
uom get "config/meters/${meter_configuration_index}/sectors/${sector_configuration_index}/value"
⇒
127
| string | config/meters/N/sectors/N/color/ |
| The color of the sector | |
The value is subject to the following constraints: the value matches ^[0-9A-F]{6}$
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample uom library write command (note that _meter_configuration_index and _sector_configuration_index are variables):
uom.config.meters[_meter_configuration_index].sectors[_sector_configuration_index].color="FF0000"
Sample JS request write command (note that _meter_configuration_index and _sector_configuration_index are variables):
request.put({url:"config/meters/"+_meter_configuration_index.toString()+"/sectors/"+_sector_configuration_index.toString()+"/color/",body:"FF0000"});
| string | config/contact/ |
| The person or entity responsible for this unit and information on how to contact them | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample CLI read command:
uom get "config/contact"
⇒
"support@example.com"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/contact/',auth=auth,headers=headers).json())
⇒
'support@example.com'
| map | config/contacts/ |
| Contacts related to the unit in different ways | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This map represents a value in persistent storage.
This map contains Contact elements.
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/contacts/',auth=auth,headers=headers,json={})
Sample uom library contact creation command:
uom.insert(uom.config.contacts,"features",{email="features@baz.example.com",fax=null,name="Features",phone=null})
See also Related contacts: Contact
| object | config/contacts/S/ |
| Contact properties | |
The value is subject to the following constraints: not index of the value matches ^(|$.*)$
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This object represents a value in persistent storage.
This object contains the following items:
| name | Name |
| Email, if any | |
| phone | Phone number, if any |
| fax | Fax number, if any |
Sample CLI deletion command (note that contact is a variable):
uom remove "config/contacts/${contact}"
Sample JS request read command (note that _contact is a variable):
request.get({url:"config/contacts/"+_contact+"/"},function(error,response,body) {console.log(body)});
⇒
{"phone":"+149839710720441","fax":null,"name":"Sales","email":"sales@baz.example.com"}
| string | config/contacts/S/name/ |
| Contact name | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample requests read command (note that _contact is a variable):
print(requests.get('http://192.168.0.100/restapi/config/contacts/'+_contact+'/name/',auth=auth,headers=headers).json())
⇒
'Features'
Sample uom library write command (note that _contact is a variable):
uom.config.contacts[_contact].name="Features"
| sum (optional string) | config/contacts/S/email/ |
| Contact email address, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No email address stored | |
| string | Contact email address | the value is not equal to "" | |
Sample CLI write command (note that contact is a variable):
uom set "config/contacts/${contact}/email" "\"security@baz.example.com\""
Sample requests write command (note that _contact is a variable):
requests.put('http://192.168.0.100/restapi/config/contacts/'+_contact+'/email/',auth=auth,headers=headers,json='engineering@bar.example.com')
| sum (optional string) | config/contacts/S/phone/ |
| Contact phone number, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No phone number stored | |
| string | Phone number | Contact phone number | the value is not equal to "" |
Sample curl write command (note that :contact is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"+5910501557888\"" "http://192.168.0.100/restapi/config/contacts/:contact/phone/"
Sample requests read command (note that _contact is a variable):
print(requests.get('http://192.168.0.100/restapi/config/contacts/'+_contact+'/phone/',auth=auth,headers=headers).json())
⇒
'+07449938591897'
| sum (optional string) | config/contacts/S/fax/ |
| Contact fax number, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | None | No fax number stored | |
| string | Fax number | Contact fax number | the value is not equal to "" |
Sample CLI read command (note that contact is a variable):
uom get "config/contacts/${contact}/fax"
⇒
null
Sample requests write command (note that _contact is a variable):
requests.put('http://192.168.0.100/restapi/config/contacts/'+_contact+'/fax/',auth=auth,headers=headers,json=None)
| string | config/location/ |
| The physical location of this unit (e.g. '1st floor, rack 9') | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample uom library read command:
print(uom.dump(uom.config.location))
⇒
"Server room"
Sample CLI read command:
uom get "config/location"
⇒
"Server room"
| string | config/oid/ |
| Object identifier of unit model (should be registered under dliRegistration OID) | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/oid/"
⇒
"1.3.6.1.4.1.45770.1.3"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/oid/',auth=auth,headers=headers).json())
⇒
'1.3.6.1.4.1.45770.1.3'
| string | config/version/ |
| Version number of frontend software | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample JS request read command:
request.get({url:"config/version/"},function(error,response,body) {console.log(body)});
⇒
"1.8.1.0"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/version/',auth=auth,headers=headers).json())
⇒
'1.8.1.0'
| string | config/bootloader_id/ |
| Hash of bootloader | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/bootloader_id/',auth=auth,headers=headers).json())
⇒
'feb2b37ad3c6678440d61ea497e544b3365e9d9705d6d6b2688772b09a6df112'
Sample JS request read command:
request.get({url:"config/bootloader_id/"},function(error,response,body) {console.log(body)});
⇒
"142c6741cf3c325fc2c1524741d79b0af2669a86ac2ee8dab9c0c171258b0960"
| string | config/art_id/ |
| Hash of ART settings | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/art_id/',auth=auth,headers=headers).json())
⇒
'd6411705853719e126ff738f22f9f9cdf1f08f6159973785e855bd4ef47fd4dd'
Sample CLI read command:
uom get "config/art_id"
⇒
"2f19112b843ae1c09d079cfe0e4f42e62f0313ea7245305de64724522a27c0ee"
| string | config/hardware_id/ |
| Identifier of unit hardware model | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/hardware_id/',auth=auth,headers=headers).json())
⇒
'EPCR5'
Sample JS request read command:
request.get({url:"config/hardware_id/"},function(error,response,body) {console.log(body)});
⇒
"EPCR5"
| string | config/serial/ |
| Unit's serial number | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample JS request read command:
request.get({url:"config/serial/"},function(error,response,body) {console.log(body)});
⇒
"LPC92203123456"
Sample CLI read command:
uom get "config/serial"
⇒
"LPC92203123456"
| string | config/outlet_label/ |
| User-visible label for an outlet controlled by a relay | |
This string does not support direct modification.
This string represents a value in persistent storage.
Sample JS request read command:
request.get({url:"config/outlet_label/"},function(error,response,body) {console.log(body)});
⇒
"Outlet"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/outlet_label/',auth=auth,headers=headers).json())
⇒
'Outlet'
| string | config/brand_company_name/ |
| The name of the company which produced the device | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/brand_company_name/"
⇒
"Digital Loggers, Inc."
Sample JS request read command:
request.get({url:"config/brand_company_name/"},function(error,response,body) {console.log(body)});
⇒
"Digital Loggers, Inc."
| string | config/brand_name/ |
| Default brand name, unless overridden | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample uom library read command:
print(uom.dump(uom.config.brand_name))
⇒
"Ethernet Power Controller"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/brand_name/',auth=auth,headers=headers).json())
⇒
'Ethernet Power Controller'
| string | config/brand_url/ |
| Default brand URL, unless overridden | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/brand_url/',auth=auth,headers=headers).json())
⇒
'http://baz.example.com:80/quux/bar/bar/foo/quux/baz/foo.htm'
Sample JS request read command:
request.get({url:"config/brand_url/"},function(error,response,body) {console.log(body)});
⇒
"https://baz.example.com/foo.html"
| string | config/brand_manual_url/ |
| Brand product manual URL | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample uom library read command:
print(uom.dump(uom.config.brand_manual_url))
⇒
"https://foo.example.com/quux/quux.htm"
Sample JS request read command:
request.get({url:"config/brand_manual_url/"},function(error,response,body) {console.log(body)});
⇒
"http://baz.example.com/baz/foo/foo/baz/quux/bar/baz/baz/bar/baz/quux/baz/bar/foo.htm"
| string | config/brand_faq_url/ |
| Brand product FAQ URL | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/brand_faq_url/"
⇒
"http://bar.example.com:8051/quux/quux.htm"
Sample uom library read command:
print(uom.dump(uom.config.brand_faq_url))
⇒
"http://baz.example.com/baz.html"
| string | config/brand_product_info_url/ |
| Brand product information URL | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample JS request read command:
request.get({url:"config/brand_product_info_url/"},function(error,response,body) {console.log(body)});
⇒
"https://foo.example.com/foo/bar.html"
Sample uom library read command:
print(uom.dump(uom.config.brand_product_info_url))
⇒
"https://baz.example.com/foo/quux/bar/quux/baz/baz/foo/bar.html"
| string | config/support_email/ |
| Product support email | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/support_email/',auth=auth,headers=headers).json())
⇒
'support@example.com'
Sample uom library read command:
print(uom.dump(uom.config.support_email))
⇒
"support@example.com"
| string | config/register_url/ |
| Default registration URL, unless overridden | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample uom library read command:
print(uom.dump(uom.config.register_url))
⇒
"https://foo.example.com:8443/bar/quux.htm"
Sample JS request read command:
request.get({url:"config/register_url/"},function(error,response,body) {console.log(body)});
⇒
"https://foo.example.com:18443/bar.html"
| string | config/support_url/ |
| Default support URL, unless overridden | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample uom library read command:
print(uom.dump(uom.config.support_url))
⇒
"http://baz.example.com:8/quux/bar/foo/quux/baz/quux.htm"
Sample CLI read command:
uom get "config/support_url"
⇒
"http://bar.example.com/foo/foo/foo/baz/quux.htm"
| string | config/update_url/ |
| Default update URL, unless overridden | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
Sample CLI read command:
uom get "config/update_url"
⇒
"https://foo.example.com:38443/bar/quux.html"
Sample JS request read command:
request.get({url:"config/update_url/"},function(error,response,body) {console.log(body)});
⇒
"http://bar.example.com:8078/quux/quux/quux/bar/foo.html"
| sum (optional string) | config/custom_brand_company_name/ |
| User-visible brand company name, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default brand company name | |
| string | Custom brand company name | User-visible brand company name | the value is not equal to "" |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/custom_brand_company_name/',auth=auth,headers=headers,json='Whatever Systems Inc.')
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"Whatever Systems Inc.\"" "http://192.168.0.100/restapi/config/custom_brand_company_name/"
| sum (optional string) | config/custom_brand_name/ |
| User-visible product brand name, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default product brand name | |
| string | Custom brand name | User-visible product brand name | the value is not equal to "" |
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"Amazing Controller III\"" "http://192.168.0.100/restapi/config/custom_brand_name/"
Sample uom library write command:
uom.config.custom_brand_name="Amazing Controller III"
| sum (optional string) | config/custom_brand_url/ |
| User-visible brand URL, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default brand URL | |
| string | Custom brand URL | User-visible brand URL | the value is not equal to "" |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/custom_brand_url/',auth=auth,headers=headers,json='https://baz.example.com/foo/baz/foo/bar/quux/foo/bar/quux/bar/foo/quux/quux/foo.html')
Sample JS request write command:
request.put({url:"config/custom_brand_url/",body:"http://baz.example.com:80/quux/foo/foo/bar.html"});
| sum (optional string) | config/custom_brand_logo/ |
| User-visible brand logo URL, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default brand logo | |
| string | Custom brand logo URL | User-visible brand logo URL | the value is not equal to "" |
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"http://foo.example.com:8/baz.jpg\"" "http://192.168.0.100/restapi/config/custom_brand_logo/"
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/custom_brand_logo/"
⇒
"http://baz.example.com/quux/foo.gif"
| sum (optional number) | config/custom_brand_logo_width/ |
| User-visible brand logo width, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default brand logo width | |
| number | Custom brand logo width | User-visible brand logo width | |
Sample JS request write command:
request.put({url:"config/custom_brand_logo_width/",body:22});
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/custom_brand_logo_width/',auth=auth,headers=headers,json=22)
| sum (optional number) | config/custom_brand_logo_height/ |
| User-visible brand logo height, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default brand logo height | |
| number | Custom brand logo height | User-visible brand logo height | |
Sample uom library read command:
print(uom.dump(uom.config.custom_brand_logo_height))
⇒
32
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/custom_brand_logo_height/',auth=auth,headers=headers,json=32)
| sum (optional string) | config/custom_support_email/ |
| User-visible product support email, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default support email | |
| string | Custom support email | User-visible product support email | the value is not equal to "" |
Sample CLI write command:
uom set "config/custom_support_email" "\"support@example.com\""
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/custom_support_email/',auth=auth,headers=headers).json())
⇒
'support@example.com'
| sum (optional string) | config/custom_register_url/ |
| User-visible registration URL, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default registration URL | |
| string | Custom registration URL | User-visible registration URL | the value is not equal to "" |
Sample JS request write command:
request.put({url:"config/custom_register_url/",body:"https://baz.example.com:8443/baz/quux.htm"});
Sample CLI read command:
uom get "config/custom_register_url"
⇒
"https://bar.example.com/foo/bar/bar/bar.html"
| sum (optional string) | config/custom_support_url/ |
| User-visible support URL, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default support URL | |
| string | Custom support URL | User-visible support URL | the value is not equal to "" |
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/custom_support_url/',auth=auth,headers=headers).json())
⇒
'http://baz.example.com/baz.html'
Sample JS request write command:
request.put({url:"config/custom_support_url/",body:"https://baz.example.com/quux/foo/bar/foo.htm"});
| sum (optional string) | config/custom_update_url/ |
| User-visible update URL, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Use default update URL | |
| string | Custom update URL | User-visible update URL | the value is not equal to "" |
Sample JS request write command:
request.put({url:"config/custom_update_url/",body:"http://bar.example.com:1/foo.htm"});
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/custom_update_url/',auth=auth,headers=headers,json='http://bar.example.com/foo/foo.htm')
| sum (optional string) | config/custom_help_url/ |
| User-visible help URL, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Internal help | Use the internal embedded help system | |
| string | Custom help URL | User-visible help URL | the value is not equal to "" |
Sample uom library read command:
print(uom.dump(uom.config.custom_help_url))
⇒
"http://baz.example.com:80/bar/bar/baz/bar/baz/baz/baz.html"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/custom_help_url/',auth=auth,headers=headers).json())
⇒
'https://bar.example.com/quux/bar/foo/baz/quux/foo/baz/baz.htm'
| sum (optional enumerated string) | config/customization_status/ |
| Status of customization options | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Default | Customization options can be changed and/or locked | |
| constant "open" | Open | Customization options can be changed, but cannot be locked | |
| constant "locked" | Locked | Customization options are locked and cannot be changed | |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/customization_status/',auth=auth,headers=headers,json='locked')
Sample uom library write command:
uom.config.customization_status="open"
| sum (boolean) | config/registration_status/ |
| Status of the unit registration | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Defined | The user has either registered the unit, or refused to do so | |
| constant false | Undefined | The user hasn't decided on registering the unit and needs to be reminded | |
Sample JS request write command:
request.put({url:"config/registration_status/",body:true});
Sample JS request read command:
request.get({url:"config/registration_status/"},function(error,response,body) {console.log(body)});
⇒
false
| sum (boolean) | config/refresh_enabled/ |
| Periodically refresh web UI status page | |
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/refresh_enabled/"
⇒
true
Sample uom library write command:
uom.config.refresh_enabled=true
| number | config/refresh_delay_minutes/ |
| Status page refresh delay, if refresh is enabled | |
The value represents time, the standard unit of which is the second (s).
The value is subject to the following constraints: the value is greater than 0
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample JS request write command:
request.put({url:"config/refresh_delay_minutes/",body:1});
Sample uom library read command:
print(uom.dump(uom.config.refresh_delay_minutes))
⇒
1
| string | config/image_format/ |
| Default image format for plots and meters | |
The value is subject to the following constraints: image formats[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample uom library write command:
uom.config.image_format="svg"
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"gif\"" "http://192.168.0.100/restapi/config/image_format/"
| string | config/hostname/ |
| Host name of the unit (sent by DHCP client, redirected to on network configuration changes when next IP address is unknown) | |
The value is subject to the following constraints: the value matches ^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]).)*([A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample CLI read command:
uom get "config/hostname"
⇒
"baz.example.com"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/hostname/',auth=auth,headers=headers).json())
⇒
'foo.example.com'
| string | config/timezone/ |
| System time zone | |
The value is subject to the following constraints: known timezones[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This string represents a value in persistent storage.
Sample CLI write command:
uom set "config/timezone" "\"UTC\""
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/timezone/',auth=auth,headers=headers).json())
⇒
'UTC'
| array | config/http_ports/ |
| HTTP port bindings | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
Changes to this array do not take effect immediately.
This array contains Port binding elements.
Sample JS request read command:
request.get({url:"config/http_ports/"},function(error,response,body) {console.log(body)});
⇒
[{"port":"9","address":"192.168.0.9"},{"port":"80","address":"192.168.0.6"},{"port":"8048","address":"192.168.0.17"}]
Sample uom library write command:
uom.config.http_ports={{address="192.168.0.85",port="8027"},{address="192.168.0.88",port="8019"},{address="192.168.0.5",port="6"},{address="192.168.0.2",port="8075"},{address="192.168.0.6",port="80"},{address="192.168.0.6",port="8097"},{address="192.168.0.55",port="1"}}
See also HTTP ports: Port binding
| object | config/http_ports/N/ |
| Address and port to bind service to | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This object is a part of a composite value which is modified as a whole.
This object represents a value in persistent storage.
Changes to this object do not take effect immediately.
This object contains the following items:
| address | Address |
| port | Port |
Sample CLI read command (note that port_binding_index is a variable):
uom get "config/http_ports/${port_binding_index}"
⇒
{"port":"8008","address":"192.168.0.44"}
Sample requests deletion command (note that _port_binding_index is a variable):
requests.delete('http://192.168.0.100/restapi/config/http_ports/'+str(_port_binding_index)+'/',auth=auth,headers=headers)
| sum (string) | config/http_ports/N/address/ |
| Address to listen on | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| string | IPv4 address | IPv4 address to listen on | the value matches ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$ |
| string | IPv6 address | IPv6 address to listen on | the value matches ^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$ |
Sample curl write command (note that :port_binding_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"192.168.0.14\"" "http://192.168.0.100/restapi/config/http_ports/:port_binding_index/address/"
Sample requests write command (note that _port_binding_index is a variable):
requests.put('http://192.168.0.100/restapi/config/http_ports/'+str(_port_binding_index)+'/address/',auth=auth,headers=headers,json='192.168.0.2')
| number | config/http_ports/N/port/ |
| Port number to bind to | |
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This number is a part of a composite value which is modified as a whole.
This number represents a value in persistent storage.
Changes to this number do not take effect immediately.
Sample curl read command (note that :port_binding_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/http_ports/:port_binding_index/port/"
⇒
"80"
Sample uom library read command (note that _port_binding_index is a variable):
print(uom.dump(uom.config.http_ports[_port_binding_index].port))
⇒
"2"
| array | config/https_ports/ |
| HTTPS port bindings | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
Changes to this array do not take effect immediately.
This array contains Port binding elements.
Sample curl port binding creation command:
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"port\":\"3\",\"address\":\"192.168.0.20\"}" "http://192.168.0.100/restapi/config/https_ports/"
Sample CLI write command:
uom set "config/https_ports" "[{\"port\":\"80\",\"address\":\"192.168.0.4\"},{\"port\":\"8081\",\"address\":\"192.168.0.68\"}]"
See also HTTPS ports: Port binding
| object | config/https_ports/N/ |
| Address and port to bind service to | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This object is a part of a composite value which is modified as a whole.
This object represents a value in persistent storage.
Changes to this object do not take effect immediately.
This object contains the following items:
| address | Address |
| port | Port |
Sample uom library write command (note that _port_binding_index is a variable):
uom.config.https_ports[_port_binding_index]={address="192.168.0.2",port="8011"}
Sample CLI deletion command (note that port_binding_index is a variable):
uom remove "config/https_ports/${port_binding_index}"
| sum (string) | config/https_ports/N/address/ |
| Address to listen on | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum is a part of a composite value which is modified as a whole.
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| string | IPv4 address | IPv4 address to listen on | the value matches ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$ |
| string | IPv6 address | IPv6 address to listen on | the value matches ^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]))$ |
Sample uom library write command (note that _port_binding_index is a variable):
uom.config.https_ports[_port_binding_index].address="192.168.0.55"
Sample CLI read command (note that port_binding_index is a variable):
uom get "config/https_ports/${port_binding_index}/address"
⇒
"192.168.0.2"
| number | config/https_ports/N/port/ |
| Port number to bind to | |
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This number is a part of a composite value which is modified as a whole.
This number represents a value in persistent storage.
Changes to this number do not take effect immediately.
Sample requests read command (note that _port_binding_index is a variable):
print(requests.get('http://192.168.0.100/restapi/config/https_ports/'+str(_port_binding_index)+'/port/',auth=auth,headers=headers).json())
⇒
'8039'
Sample uom library write command (note that _port_binding_index is a variable):
uom.config.https_ports[_port_binding_index].port="6"
| object | config/https_cert/ |
| HTTPS certificate configuration | |
Retrieving the value is denied if not administrative user
This object contains the following items:
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "..." "http://192.168.0.100/restapi/config/https_cert/"
Sample uom library write command:
uom.config.https_cert=<...>
| number | config/https_cert/bits/ |
| Size of new private keys | |
The value represents count, the standard unit of which is the time (times).
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This number represents a value in persistent storage.
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/https_cert/bits/',auth=auth,headers=headers).json())
⇒
4096
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/bits/"
⇒
8192
| map | config/https_cert/distinguished_name/ |
| New certificate distinguished name elements | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This map is composite, i.e. is modified as a whole.
This map represents a value in persistent storage.
This map contains Values elements.
Sample CLI read command:
uom get "config/https_cert/distinguished_name"
⇒
{"commonName":["Digital Loggers Unit"],"countryName":["US"],"stateOrProvinceName":["California"],"localityName":["Santa Clara"]}
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/https_cert/distinguished_name/',auth=auth,headers=headers).json())
⇒
{'commonName': ['Digital Loggers Unit'], 'countryName': ['US'], 'stateOrProvinceName': ['California'], 'localityName': ['Santa Clara']}
See also Distinguished name: Values
| sum (enumerated string) | config/https_cert/string_mask/ |
| The set of string types to use for new certificates | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant "default" | OpenSSL default | PrintableString, T61String and BMPString | |
| constant "pkix" | PKIX | PrintableString and BMPString | |
| constant "utf8only" | UTF-8 strings only | UTF8String | |
| constant "nombstr" | No multibyte strings | PrintableString and T61String | |
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"default\"" "http://192.168.0.100/restapi/config/https_cert/string_mask/"
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/string_mask/"
⇒
"nombstr"
| sum (optional array) | config/https_cert/domains/ |
| Explicit domain name list to certify for when enrolling certificate, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Use hostname | Certify for the current hostname when enrolling certificate | |
| array | Domain names override | Explicit domain name list to certify for when enrolling certificate | |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/https_cert/domains/',auth=auth,headers=headers,json=['baz.example.com', 'baz.example.com', 'foo.example.com'])
Sample CLI read command:
uom get "config/https_cert/domains"
⇒
null
See also Domain names override, if any: Domain names override
| sum (optional array) | config/https_cert/addresses/ |
| Explicit list of addresses to certify for when enrolling certificate, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Use all known addresses | Certify for all current addresses when enrolling certificate automatically | |
| array | Addresses override | Explicit list of addresses to certify for when enrolling certificate | |
Sample CLI write command:
uom set "config/https_cert/addresses" "null"
Sample uom library write command:
uom.config.https_cert.addresses=null
See also Addresses override, if any: Addresses override
| sum (boolean) | config/https_cert/automatic_renewal/ |
| Automatic renewal of certificate at or near expiry | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample uom library read command:
print(uom.dump(uom.config.https_cert.automatic_renewal))
⇒
false
Sample CLI write command:
uom set "config/https_cert/automatic_renewal" "false"
| string | config/https_cert/renewal_method/ |
| Method to use when renewing the certificate | |
The value is subject to the following constraints: renewal methods[the value]
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Sample uom library read command:
print(uom.dump(uom.config.https_cert.renewal_method))
⇒
"est"
Sample CLI read command:
uom get "config/https_cert/renewal_method"
⇒
"est"
See also HTTPS certificate settings: Data
| sum (variant) | config/https_cert/csr/ |
| The certificate signing request to sign (read may fail if key generation is in progress) | |
Retrieving the value is denied if not administrative user
This sum does not support direct modification.
This sum can change as if by itself or indirectly because of other actions.
Changes to this sum cannot be tracked.
This sum can assume the following values:
| string | HTTPS certificate signing request | The certificate signing request you need to sign in order to obtain an HTTPS certificate for the unit, to be honored by an external entity | |
| constant false | Certificate signing request generation failure | No valid certificate signing request could be generated, check distinguished name settings | |
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/csr/"
⇒
Sample JS request read command:
request.get({url:"config/https_cert/csr/"},function(error,response,body) {console.log(body)});
⇒
| string | config/https_cert/cert/ |
| HTTPS certificate chain presented by the unit to clients (read may fail if renewal is in progress) | |
The value contains PEM format data (has native MIME type application/x-pem-file).
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
Using the string as a field for indexing into the grandparent collection is denied
This string represents a value in persistent storage.
This string can change as if by itself or indirectly because of other actions.
Changes to this string cannot be tracked.
Changes to this string may have an effect besides setting value.
Changes to this string do not take effect immediately.
Sample JS request read command:
request.get({url:"config/https_cert/cert/"},function(error,response,body) {console.log(body)});
⇒
"-----BEGIN CERTIFICATE-----\nMIIxwr571dzxeu6XEAQF+38654Kv6RwjXjgUboeeRdb5Xkfox54xBE4IKRDTuACS\nyXjdBAGpIqazeX5kUI/acL2sry33R/+QYj3lwMbECBEtlLeGgfsJ1wCuvH+NI/ps\nuehGFyVTCPEa3WHlPcpMqkI7khRlWJWR+DkFCGkRh/1nYL=\n-----END CERTIFICATE-----\n"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/https_cert/cert/',auth=auth,headers=headers).json())
⇒
'-----BEGIN CERTIFICATE-----\nMIIFm6TyBQeA8SWlK207MZR9ocFs0kYU0GlpPFodhSqsxMdIQfRpEu+3WGyZ1W43\nvE7juqCki96MTY1wOIrPOOhMzku4qjxl+5Uuxiegun2OM6KmQCBqcuCcf7iWsgHs\nonlXRSRFWrdfCP5Rcy3XBiDKQlD735xtviQMAuejmHO/iWSLV=\n-----END CERTIFICATE-----\n'
| string | config/https_cert/key/ |
| The key used by the HTTPS certificate presented by the unit; certificate will be renewed as a side effect of writing; writing actual data is not recommended, please use the certificate request signing path instead | |
The value contains PEM format data (has native MIME type application/x-pem-file).
Retrieving the value is denied
Changing the value is denied if not administrative user
Using the string as a field for indexing into the grandparent collection is denied
This string represents a value in persistent storage.
This string can change as if by itself or indirectly because of other actions.
Changes to this string cannot be tracked.
Changes to this string may have an effect besides setting value.
Changes to this string do not take effect immediately.
This string should be displayed in a secure manner.
Representation of the resource cannot be obtained. Attempts to do so via a JSON API will succeed but return '{"$ref":""}' which means "the value of this resource".
Sample uom library write command:
uom.config.https_cert.key="-----BEGIN PRIVATE KEY-----\ MIILiH2/Ewzn2c9lnBMRKc7nbadnKj6JFBg+Vk/lh+YldkWRxuuHX158elx+V3Kn\ noopZVq8GTuowsjq9GuHRY2OZaUwNnzBcn0CJsMbMHQI9A9LT4ewfjKFJrBjfAwH\ yVJruxDBNYNZjl3qQ/V9MmVDzEuAABB9jX1dUGquqEUa/ZQRaydyk8CkP6wcK8n3\ riB7Z5+pcbrB2In0xmn6+XX7U9UfzaMqIa+ui/jKcaXhvLjs7X+84YIbjpGjPfaj\ aezbNJE+sxwDhoNEpYLNty7iFt8wTuB4YAiyWyzOwvedk2tZdFzXD7GV0QRWKfcv\ KtOJspFnUvXYp7C46mKG2rIVJqr/TmtpgI9Y7RLdMvCB2RHBDeTIV==\ -----END PRIVATE KEY-----\ "
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/https_cert/key/',auth=auth,headers=headers,json='-----BEGIN PRIVATE KEY-----\nMIIKjI1bNHWNVzu/wIjoYDfgSWNCqVSpkJAUeD52WdR2cL4ZfpOE23xWbKlSsDIc\n6EjEIFulKX6Q7oFX2Jd/sEMdjEt1tTX/jGF1YAoujxLslcPqy2rqJDU2UO5NtfPc\nhgWtVRcSoUDRw4P/xGKBnPiBX55CWk9DQi7x9lQ+GgRCmsEj9axy0fAZnHnK2zaU\njStUutnaK0MDG6Pt4OvlaUZuHvyGVT+ExtlsnYS8brO==\n-----END PRIVATE KEY-----\n')
See also HTTPS certificate settings: Renew certificate
See also HTTPS certificate settings: Generate key
See also HTTPS certificate settings: Known DN OIDs
| map | config/https_cert/known_renewal_methods/ |
| Known renewal methods | |
Retrieving the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map does not support direct modification.
This map contains Renewal method elements.
Creating elements in this collection is not supported.
Sample uom library read command:
print(uom.dump(uom.config.https_cert.known_renewal_methods))
⇒
<...>
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/',auth=auth,headers=headers).json())
⇒
<...>
See also Renewal methods: Renewal method
| array | config/https_cert/distinguished_name/S/ |
| Distinguished name element value set | |
The value is subject to the following constraints: any of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array is a part of a composite value which is modified as a whole.
This array represents a value in persistent storage.
This array contains Value elements.
Sample CLI read command (note that values is a variable):
uom get "config/https_cert/distinguished_name/${values}"
⇒
["Santa Clara"]
Sample curl read command (note that :values is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/distinguished_name/:values/"
⇒
["Digital Loggers Unit"]
| string | config/https_cert/distinguished_name/S/N/ |
| Distinguished name element value | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Sample JS request deletion command (note that _values and _value_index are variables):
request.delete({url:"config/https_cert/distinguished_name/"+_values+"/"+_value_index.toString()+"/"});
Sample CLI deletion command (note that values and value_index are variables):
uom remove "config/https_cert/distinguished_name/${values}/${value_index}"
| (possibly) array | config/https_cert/domains/ |
| Explicit domain name list to certify for when enrolling certificate | |
This array contains Hostname elements.
Sample JS request hostname creation command:
request.post({url:"config/https_cert/domains/",body:"baz.example.com"});
Sample uom library hostname creation command:
uom.insert(uom.config.https_cert.domains,1,"bar.example.com")
| string | config/https_cert/domains/N/ |
| Hostname to certify for | |
The value is subject to the following constraints: the value matches ^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]).)*([A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Sample requests write command (note that _hostname_index is a variable):
requests.put('http://192.168.0.100/restapi/config/https_cert/domains/'+str(_hostname_index)+'/',auth=auth,headers=headers,json='bar.example.com')
Sample curl write command (note that :hostname_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"foo.example.com\"" "http://192.168.0.100/restapi/config/https_cert/domains/:hostname_index/"
| (possibly) array | config/https_cert/addresses/ |
| Explicit list of addresses to certify for when enrolling certificate | |
This array contains IPv4 address elements.
Sample curl IPv4 address creation command:
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "\"110.226.65.137\"" "http://192.168.0.100/restapi/config/https_cert/addresses/"
Sample requests IPv4 address creation command:
requests.post('http://192.168.0.100/restapi/config/https_cert/addresses/',auth=auth,headers=headers,json='111.250.99.220')
| string | config/https_cert/addresses/N/ |
| IPv4 address to certify for, in dotted quad notation | |
The value is subject to the following constraints: the value matches ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Sample CLI write command (note that ipv4_address_index is a variable):
uom set "config/https_cert/addresses/${ipv4_address_index}" "\"210.76.4.250\""
Sample CLI read command (note that ipv4_address_index is a variable):
uom get "config/https_cert/addresses/${ipv4_address_index}"
⇒
"3.240.6.5"
| map | config/https_cert/renewal_data/ |
| Renewal-method-specific data | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This map represents a value in persistent storage.
This map contains Data item elements.
Sample requests data item creation command:
requests.put('http://192.168.0.100/restapi/config/https_cert/renewal_data/password/',auth=auth,headers=headers,json='')
Sample uom library data item creation command:
uom.insert(uom.config.https_cert.renewal_data,"acmev1_key_type","rsa")
| string | config/https_cert/renewal_data/S/ |
| Item of renewal-method-specific data | |
The value is subject to the following constraints: the value matches renewal methods[certificate renewal method].data_items[index of the value].regexp
Retrieving the value is denied if any of the following is true:
Changing the value is denied if any of the following is true:
Using the string as a field for indexing into the grandparent collection is denied if any of the following is true:
This string represents a value in persistent storage.
This string should be displayed in a secure manner if all of the following is true:
Sample requests deletion command (note that _data_item is a variable):
requests.delete('http://192.168.0.100/restapi/config/https_cert/renewal_data/'+_data_item+'/',auth=auth,headers=headers)
Sample uom library write command (note that _data_item is a variable):
uom.config.https_cert.renewal_data[_data_item]="2244700"
| call | config/https_cert/renew_cert/ |
| Initiate attempt to renew the certificate using the selected method | |
Performing the function call is denied if any of the following is true:
The call has no arguments (supply empty tuple).
The call returns the following results:
Sample CLI invocation:
uom invoke "config/https_cert/renew_cert"
⇒
(no output)
Sample requests invocation:
requests.post('http://192.168.0.100/restapi/config/https_cert/renew_cert/',auth=auth,headers=headers,json={})
⇒
(no output)
| constant null | config/https_cert/renew_cert/results: 1/ |
| No additional information available | |
This constant does not correspond to an actual resource.
| call | config/https_cert/generate_key/ |
| Initiate generation of a new private key; certificate renewal will be attempted as a side effect; if that fails, the key is unchanged | |
Performing the function call is denied if any of the following is true:
The call has no arguments (supply empty tuple).
The call returns the following results:
Sample requests invocation:
requests.post('http://192.168.0.100/restapi/config/https_cert/generate_key/',auth=auth,headers=headers,json={})
⇒
(no output)
Sample CLI invocation:
uom invoke "config/https_cert/generate_key"
⇒
(no output)
| constant null | config/https_cert/generate_key/results: 1/ |
| No additional information available | |
This constant does not correspond to an actual resource.
| map | config/https_cert/known_dn_oids/ |
| Known distinguished name element object identifiers | |
Retrieving the value is denied if not administrative user
This map does not support direct modification.
This map contains OID elements.
Creating elements in this collection is not supported.
Sample CLI read command:
uom get "config/https_cert/known_dn_oids"
⇒
Sample JS request read command:
request.get({url:"config/https_cert/known_dn_oids/"},function(error,response,body) {console.log(body)});
⇒
| string | config/https_cert/known_dn_oids/S/ |
| Object identifier value | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
Sample curl read command (note that :oid is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/known_dn_oids/:oid/"
⇒
"2.5.4.7"
Sample JS request read command (note that _oid is a variable):
request.get({url:"config/https_cert/known_dn_oids/"+_oid+"/"},function(error,response,body) {console.log(body)});
⇒
"2.5.4.17"
| object | config/https_cert/known_renewal_methods/S/data_items/S/ |
| Properties of data item | |
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
| name | Name |
| regexp | Regular expression |
| secret | Secret |
Sample JS request read command (note that _renewal_method and _data_item_properties are variables):
request.get({url:"config/https_cert/known_renewal_methods/"+_renewal_method+"/data_items/"+_data_item_properties+"/"},function(error,response,body) {console.log(body)});
⇒
{"regexp":"[A-Za-z_-][A-Za-z0-9_@-]*","name":"Username to authenticate as","secret":false}
Sample uom library write command (note that _renewal_method and _data_item_properties are variables):
uom.config.https_cert.known_renewal_methods[_renewal_method].data_items[_data_item_properties]={name="Number of days to issue new certificates for",regexp="^[1-9][0-9]*$",secret=false}
| string | config/https_cert/known_renewal_methods/S/data_items/S/name/ |
| Data item name | |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample JS request read command (note that _renewal_method and _data_item_properties are variables):
request.get({url:"config/https_cert/known_renewal_methods/"+_renewal_method+"/data_items/"+_data_item_properties+"/name/"},function(error,response,body) {console.log(body)});
⇒
"ACMEv1 contact URLs, whitespace-separated"
Sample curl read command (note that :renewal_method and :data_item_properties are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/:renewal_method/data_items/:data_item_properties/name/"
⇒
"ACMEv2 directory endpoint URL"
| string | config/https_cert/known_renewal_methods/S/data_items/S/regexp/ |
| Regular expression which the data item must match | |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample requests read command (note that _renewal_method and _data_item_properties are variables):
print(requests.get('http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/'+_renewal_method+'/data_items/'+_data_item_properties+'/regexp/',auth=auth,headers=headers).json())
⇒
'^https?://(]|[!#&\'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))+$'
Sample CLI read command (note that renewal_method and data_item_properties are variables):
uom get "config/https_cert/known_renewal_methods/${renewal_method}/data_items/${data_item_properties}/regexp"
⇒
"^[1-9][0-9]*$"
| sum (boolean) | config/https_cert/known_renewal_methods/S/data_items/S/secret/ |
| Flag indicating whether the data item can contain private information | |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum can assume the following values:
| constant true | Secret | The data item can contain private information | |
| constant false | Not secret | The data item contains only public information | |
Sample curl read command (note that :renewal_method and :data_item_properties are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/:renewal_method/data_items/:data_item_properties/secret/"
⇒
false
Sample JS request read command (note that _renewal_method and _data_item_properties are variables):
request.get({url:"config/https_cert/known_renewal_methods/"+_renewal_method+"/data_items/"+_data_item_properties+"/secret/"},function(error,response,body) {console.log(body)});
⇒
false
| object | config/https_cert/known_renewal_methods/S/ |
| Method of certificate renewal | |
Retrieving the value is denied if not administrative user
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
| name | Name |
| data_items | Supported data items |
Sample JS request write command (note that _renewal_method is a variable):
request.put({url:"config/https_cert/known_renewal_methods/"+_renewal_method+"/",body:{"name":"Obtain a certificate from an ACME v2 endpoint (e.g. Let's Encrypt)","data_items":{"acmev2_auth_algorithm":{"regexp":"^(RS256|RS384|RS512|ES256|ES384|ES512)$","name":"ACMEv2 authentication algorithm","secret":false},"acmev2_contacts":{"regexp":"^((]|[!#&'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))| )+$","name":"ACMEv2 contact URLs, whitespace-separated","secret":false},"acmev2_agreement":{"regexp":"^((]|[!#&'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))| )+$","name":"ACMEv2 service agreement","secret":false},"acmev2_url":{"regexp":"^https?://(]|[!#&'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))+$","name":"ACMEv2 directory endpoint URL","secret":false}}}});
Sample requests write command (note that _renewal_method is a variable):
requests.put('http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/'+_renewal_method+'/',auth=auth,headers=headers,json={'name': 'Obtain a certificate from an ACME v1 endpoint (e.g. Let\'s Encrypt)', 'data_items': {'acmev1_key_size': {'regexp': '^[1-9][0-9]*$', 'name': 'ACMEv1 default account key size in bits', 'secret': False}, 'acmev1_url': {'regexp': '^https?://(]|[!#&\'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))+$', 'name': 'ACMEv1 directory endpoint URL', 'secret': False}, 'acmev1_agreement': {'regexp': '^((]|[!#&\'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))| )+$', 'name': 'ACMEv1 service agreement', 'secret': False}, 'acmev1_key_type': {'regexp': '^(rsa|dsa|dh)$', 'name': 'ACMEv1 default account key type', 'secret': False}, 'acmev1_contacts': {'regexp': '^((]|[!#&\'()*+,/:;=?@[$A-Za-z0-9._~-]|(%[0-9A-Fa-f][0-9A-Fa-f]))| )+$', 'name': 'ACMEv1 contact URLs, whitespace-separated', 'secret': False}}})
| string | config/https_cert/known_renewal_methods/S/name/ |
| Renewal method name | |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample JS request read command (note that _renewal_method is a variable):
request.get({url:"config/https_cert/known_renewal_methods/"+_renewal_method+"/name/"},function(error,response,body) {console.log(body)});
⇒
"Obtain a certificate from an ACME v1 endpoint (e.g. Let's Encrypt)"
Sample requests read command (note that _renewal_method is a variable):
print(requests.get('http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/'+_renewal_method+'/name/',auth=auth,headers=headers).json())
⇒
'Generate a self-signed certificate'
| map | config/https_cert/known_renewal_methods/S/data_items/ |
| Properties of supported data items | |
Retrieving the value is denied if not administrative user
This map is a part of a composite value which is modified as a whole.
This map does not support direct modification.
This map contains Data item properties elements.
Creating elements in this collection is not supported.
Sample JS request read command (note that _renewal_method is a variable):
request.get({url:"config/https_cert/known_renewal_methods/"+_renewal_method+"/data_items/"},function(error,response,body) {console.log(body)});
⇒
Sample curl read command (note that :renewal_method is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/https_cert/known_renewal_methods/:renewal_method/data_items/"
⇒
See also Supported data items: Data item properties
| map | config/certificates/ |
| Map of known certificates and their settings | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This map represents a value in persistent storage.
Changes to this map do not take effect immediately.
This map contains Certificate elements.
Sample CLI write command:
uom set "config/certificates" ...
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "..." "http://192.168.0.100/restapi/config/certificates/"
See also Certificate collection: Certificate
| object | config/certificates/S/ |
| Certificate settings | |
The value is subject to the following constraints: index of the value matches ^[^./][^/]*$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This object represents a value in persistent storage.
Changes to this object do not take effect immediately.
This object contains the following items:
| data | Data |
| status | Trust status |
Sample CLI read command (note that certificate is a variable):
uom get "config/certificates/${certificate}"
⇒
{"data":"-----BEGIN CERTIFICATE-----\nMII3Sd0QEPdtSkLRTTIvFpRxgYsNR3HW+MbT/evG4ZAYJX0p0KkIACGsm8FDEZmF\nkz1gF8GRib+kQ05BLIPdABoSR32DK/d5+hoFr4iZijK8mSM7mnnz+bSSgWi1XL8Y\nypv3Y=\n-----END CERTIFICATE-----\n","status":true}
Sample requests deletion command (note that _certificate is a variable):
requests.delete('http://192.168.0.100/restapi/config/certificates/'+_certificate+'/',auth=auth,headers=headers)
| string | config/certificates/S/data/ |
| Certificate data | |
The value contains PEM format data (has native MIME type application/x-pem-file).
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample uom library read command (note that _certificate is a variable):
print(uom.dump(uom.config.certificates[_certificate].data))
⇒
Sample CLI read command (note that certificate is a variable):
uom get "config/certificates/${certificate}/data"
⇒
"-----BEGIN CERTIFICATE-----\nMIIbdYmFmh4RtYv3fKXYo5ZRDT3GrAGDouqRSdiFKpiENeJ3+tdo/CGEiLWZXopL\noCJXTfMCvmsFrt8Vh9kzQSLy1unsGXY5lteEZ1SVqKmhDxDx7zxZSJYWEMPWvzdg\nIxSLP+Bmmv0j9+s9ySdH0AXPb3Kaj1U1+zPQzdDlYFVkGOvEtZXwl4=\n-----END CERTIFICATE-----\n"
| sum (boolean) | config/certificates/S/status/ |
| Whether the certificate is trusted by default | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant true | Trusted | The certificate is trusted by all software with default settings | |
| constant false | Untrusted | The certificate is not trusted by all software with default settings | |
Sample CLI write command (note that certificate is a variable):
uom set "config/certificates/${certificate}/status" "true"
Sample requests read command (note that _certificate is a variable):
print(requests.get('http://192.168.0.100/restapi/config/certificates/'+_certificate+'/status/',auth=auth,headers=headers).json())
⇒
True
| map | config/crls/ |
| Map of known certificate revocation lists and their settings | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This map represents a value in persistent storage.
Changes to this map do not take effect immediately.
This map contains Certificate revocation list elements.
Sample curl certificate revocation list creation command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"data\":\"-----BEGIN X509 CRL-----\\nMIIsrxCjsfyyJGbr9TJHywUcVLM79WGfBlY3jnobTnao3BgFh/Zfx3HTQgcbDuHQ\\nWQfK188dzErfVYh4DfAX8cEmEThYwOQSq5ptGzXFDPxlzerDJ2nUg1HxX+VTOyyE\\no8Moid27ap7FhMblA5SDPPnPxHqvF5/4GNu+1y8eoHvVgXHsfl64BvV9CM4TT6al\\nUmZTwDHD9pwi6oNuwT5r/H3OOZtW9f2g=\\n-----END X509 CRL-----\\n\",\"status\":true}" "http://192.168.0.100/restapi/config/crls/CyberBarSystems_Trusted_Certification_Authority/"
Sample CLI certificate revocation list creation command:
uom insert "config/crls/CyberBaz_Primary_Certification_Authority" "{\"data\":\"-----BEGIN X509 CRL-----\\nMIIAfYFyMW3k/Tntj1+yf+ekQRNSmmUZXsmDR1BqaGabmNVVQVU6V9tycGRP3x+d\\nsIq38QMl188Zgb4BkcMeb/w3Q01RftEXC4cMW/7a9I9swG3hvRLXTIcvKfN/ZdZn\\nCAGDKtPf3HcLMJHqhqJ/TFM9fNlIzY2BlKQ6EsnJ9PhYl\\n-----END X509 CRL-----\\n\",\"status\":true}"
See also Certificate revocation list collection: Certificate revocation list
| object | config/crls/S/ |
| Certificate revocation list settings | |
The value is subject to the following constraints: index of the value matches ^[^./][^/]*$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This object represents a value in persistent storage.
Changes to this object do not take effect immediately.
This object contains the following items:
| data | Data |
| status | Usage status |
Sample requests read command (note that _certificate_revocation_list is a variable):
print(requests.get('http://192.168.0.100/restapi/config/crls/'+_certificate_revocation_list+'/',auth=auth,headers=headers).json())
⇒
{'data': '-----BEGIN X509 CRL-----\nMIIK5FWR4UmNsZ5A/grsPQaU42fxY/cjEW4Lodpv7bI/BQBC635YWh2clkaJlC30\nNZoCUyqp+1FCGOHNyq41Ssn2CZGHb2T/dID8G4+G8GUQgoqfexj7pXB16ULkYqlC\n/NR5NkGgEiN\n-----END X509 CRL-----\n', 'status': False}
Sample CLI write command (note that certificate_revocation_list is a variable):
uom set "config/crls/${certificate_revocation_list}" "{\"data\":\"-----BEGIN X509 CRL-----\\nMIIuy/Ehrj+YtQSjPgSY9G2UXsSa6m6JnFEmGVT7EUi8xAuMtMx2e0ZBu1o1qxMe\\nQV8wePRMZOYTmSskWWm6kg9Zj0W6glm7Gw4wMXJxyuRkMKVvtH1d+DDkFltyXf6p\\nCmzm6xk0PVPm0LfJOJKeY4vKzute0iGFUG1dEnffJ5SLS7htS1X07TN7NGnQ+4hV\\nl9cZqIuymGQvzJO1sRAMqKl67C7EwfchqFHhaCfMU6IURjXKAki04U8EiIUfz7Nq\\ngX+vDNPLivpRSAdCvfJPqZ883p8DC/dvZeqo1GAlB0CgCsv8XEZOqkZwak9plolK\\nb9XuLI6OXodQkn+/NOr7znkjyZVnKrGy0ptO8/oiqR8aF8beZSoYFYIE8q1VhKTk\\nM9KO+3ESEqjO=\\n-----END X509 CRL-----\\n\",\"status\":false}"
| string | config/crls/S/data/ |
| CRL data | |
The value contains PEM format data (has native MIME type application/x-pem-file).
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample requests read command (note that _certificate_revocation_list is a variable):
print(requests.get('http://192.168.0.100/restapi/config/crls/'+_certificate_revocation_list+'/data/',auth=auth,headers=headers).json())
⇒
Sample uom library write command (note that _certificate_revocation_list is a variable):
uom.config.crls[_certificate_revocation_list].data="-----BEGIN X509 CRL-----\ MIIwzlzvK0v8ma4jNziuaDsU1WjyKxDbDxYCjX83a4DMgJ54Jq+w4sQ7O96l7MMM\ b3Um84sNTZjbf2Rf+XYRhycqkmC68Y3mdZYogQC9/xng0FM1owUWv7Nfvco4Btsr\ QfAttMur9buQ+xFwSoscBXYpMe1FWulzZxsTJnLVPFxPDCMi0EKEou4AZ7S61D5d\ +6XoU2Em/g/E3kHJ5X8/eLbnpjq3rTHscqg7vxvwdwBihU2o2CqiZRWPAMU2snwV\ ceZaZWDWkyDE02JFu2rLaGYzncrbZNGC1rodO2980PP3TkLNpClPVKOJzGwYfDmj\ bMVfYfi==\ -----END X509 CRL-----\ "
| sum (boolean) | config/crls/S/status/ |
| Whether the certificate revocation list is used by default | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant true | Used | The certificate revocation list is used by all software with default settings | |
| constant false | Unused | The certificate revocation list is not used by all software with default settings | |
Sample requests write command (note that _certificate_revocation_list is a variable):
requests.put('http://192.168.0.100/restapi/config/crls/'+_certificate_revocation_list+'/status/',auth=auth,headers=headers,json=True)
Sample CLI read command (note that certificate_revocation_list is a variable):
uom get "config/crls/${certificate_revocation_list}/status"
⇒
false
| sum (boolean) | config/ssh_enabled/ |
| Whether the SSH server should be enabled | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample uom library read command:
print(uom.dump(uom.config.ssh_enabled))
⇒
true
Sample JS request write command:
request.put({url:"config/ssh_enabled/",body:true});
| number | config/ssh_port/ |
| Port number of the SSH server | |
The value is subject to the following constraints: all of the following is true:
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This number represents a value in persistent storage.
Changes to this number do not take effect immediately.
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "22" "http://192.168.0.100/restapi/config/ssh_port/"
Sample uom library write command:
uom.config.ssh_port=22
| array | config/ssh_authorized_keys/ |
| List of public keys allowed to log in | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array is composite, i.e. is modified as a whole.
This array represents a value in persistent storage.
Changes to this array do not take effect immediately.
This array contains SSH authorized key elements.
Sample JS request read command:
request.get({url:"config/ssh_authorized_keys/"},function(error,response,body) {console.log(body)});
⇒
Sample curl SSH authorized key creation command:
curl --digest -u admin:1234 -H "X-CSRF: x" -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"data\":\"ecdsa-sha2-nistp384 k===\",\"options\":\"\",\"comment\":\"\"}" "http://192.168.0.100/restapi/config/ssh_authorized_keys/"
See also SSH authorized keys: SSH authorized key
| object | config/ssh_authorized_keys/N/ |
| Public key allowed to log in | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This object is a part of a composite value which is modified as a whole.
This object represents a value in persistent storage.
Changes to this object do not take effect immediately.
This object contains the following items:
| data | Data |
| options | Options |
| comment | Comment |
Sample JS request write command (note that _ssh_authorized_key_index is a variable):
request.put({url:"config/ssh_authorized_keys/"+_ssh_authorized_key_index.toString()+"/",body:{"data":"ssh-dss Rh2guQ6Ju1","options":"","comment":""}});
Sample curl write command (note that :ssh_authorized_key_index is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"data\":\"ecdsa-sha2-nistp256 H66G===\",\"options\":\"jvesvixv\",\"comment\":\"\"}" "http://192.168.0.100/restapi/config/ssh_authorized_keys/:ssh_authorized_key_index/"
| string | config/ssh_authorized_keys/N/data/ |
| Public key data | |
The value is subject to the following constraints: the value matches ^(([0-9])+ *([0-9])+ *([0-9])+|(ecdsa-sha2-nistp256|ecdsa-sha2-nistp384|ecdsa-sha2-nistp521|ssh-ed25519|ssh-dss|ssh-rsa) *([0-9A-Za-z+/]+[=]{0,3}))$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample requests write command (note that _ssh_authorized_key_index is a variable):
requests.put('http://192.168.0.100/restapi/config/ssh_authorized_keys/'+str(_ssh_authorized_key_index)+'/data/',auth=auth,headers=headers,json='ssh-ed25519 j')
Sample JS request write command (note that _ssh_authorized_key_index is a variable):
request.put({url:"config/ssh_authorized_keys/"+_ssh_authorized_key_index.toString()+"/data/",body:"ecdsa-sha2-nistp521 Ha==="});
| string | config/ssh_authorized_keys/N/options/ |
| Public key options | |
The value is subject to the following constraints: the value matches ^([^ "]+|"[^"]*")*$
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample curl read command (note that :ssh_authorized_key_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/ssh_authorized_keys/:ssh_authorized_key_index/options/"
⇒
""
Sample JS request write command (note that _ssh_authorized_key_index is a variable):
request.put({url:"config/ssh_authorized_keys/"+_ssh_authorized_key_index.toString()+"/options/",body:"gu,ws=2615,ey=3,w,mxph,jo=ozb,ah,ky=w"});
| string | config/ssh_authorized_keys/N/comment/ |
| Public key comment | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string is a part of a composite value which is modified as a whole.
This string represents a value in persistent storage.
Changes to this string do not take effect immediately.
Sample uom library read command (note that _ssh_authorized_key_index is a variable):
print(uom.dump(uom.config.ssh_authorized_keys[_ssh_authorized_key_index].comment))
⇒
"zo"
Sample uom library write command (note that _ssh_authorized_key_index is a variable):
uom.config.ssh_authorized_keys[_ssh_authorized_key_index].comment="f"
| sum (boolean) | config/ssh_password_auth_enabled/ |
| Whether the SSH password authentication should be enabled | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample uom library write command:
uom.config.ssh_password_auth_enabled=true
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/ssh_password_auth_enabled/',auth=auth,headers=headers,json=False)
| sum (boolean) | config/ntp_server_enabled/ |
| Whether the device should act as NTP server | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample CLI read command:
uom get "config/ntp_server_enabled"
⇒
true
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/ntp_server_enabled/"
⇒
true
| array | config/ntp_peers/ |
| List of NTP servers to get time information from | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array represents a value in persistent storage.
Changes to this array do not take effect immediately.
This array contains NTP peer elements.
Sample CLI read command:
uom get "config/ntp_peers"
⇒
["0.ntp-pool.example.com","1.ntp-pool.example.com","2.ntp-pool.example.com","3.ntp-pool.example.com"]
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "[\"0.ntp-pool.example.com\",\"1.ntp-pool.example.com\",\"2.ntp-pool.example.com\",\"3.ntp-pool.example.com\"]" "http://192.168.0.100/restapi/config/ntp_peers/"
| sum (string) | config/ntp_peers/N/ |
| NTP server to get time information from | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| string | Hostname | Hostname | the value matches ^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]).)*([A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$ |
| string | IPv4 address | IPv4 address in dotted quad notation | the value matches ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$ |
Sample requests write command (note that _ntp_peer_index is a variable):
requests.put('http://192.168.0.100/restapi/config/ntp_peers/'+str(_ntp_peer_index)+'/',auth=auth,headers=headers,json='2.ntp-pool.example.com')
Sample uom library read command (note that _ntp_peer_index is a variable):
print(uom.dump(uom.config.ntp_peers[_ntp_peer_index]))
⇒
"1.ntp-pool.example.com"
| sum (enumerated number) | config/syslog_minimal_severity/ |
| Threshold severity for system messages, below which they are not logged | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant 1 | Emergency | Log when unit becomes unstable or unusable | |
| constant 2 | Alert | Log conditions requiring immediate action | |
| constant 3 | Critical | Log critical conditions | |
| constant 4 | Error | Log error conditions | |
| constant 5 | Warning | Log warning conditions | |
| constant 6 | Notice | Log normal but significant conditions | |
| constant 7 | Informational | Log informational messages | |
| constant 8 | Debug | Log tracing and debugging messages | |
Sample CLI read command:
uom get "config/syslog_minimal_severity"
⇒
8
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/syslog_minimal_severity/"
⇒
8
| sum (optional string) | config/syslog_ip_address/ |
| Host name or IPv4 address of the syslog server to forward log messages to, if any | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
Changes to this sum do not take effect immediately.
This sum can assume the following values:
| constant null | Syslog server disabled | System log messages are not forwarded to a server | |
| string | Hostname | Hostname | the value matches ^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9-]*[a-zA-Z0-9]).)*([A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?|[A-Za-z0-9][A-Za-z0-9-]*[A-Za-z]([A-Za-z0-9-]*[A-Za-z0-9])?)$ |
| string | IPv4 address | IPv4 address in dotted quad notation | the value matches ^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5]).){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])$ |
Sample JS request write command:
request.put({url:"config/syslog_ip_address/",body:null});
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/syslog_ip_address/',auth=auth,headers=headers,json=None)
| sum (boolean) | config/allow_jsonrpc/ |
| Enable HTTP clients to perform JSON-RPC requests | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/allow_jsonrpc/',auth=auth,headers=headers).json())
⇒
False
Sample uom library read command:
print(uom.dump(uom.config.allow_jsonrpc))
⇒
true
| sum (boolean) | config/allow_jsonrpc_nonadmin/ |
| Enable JSON-RPC API requests from users which are not administrators | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/allow_jsonrpc_nonadmin/',auth=auth,headers=headers,json=True)
Sample JS request write command:
request.put({url:"config/allow_jsonrpc_nonadmin/",body:true});
| sum (boolean) | config/allow_restapi/ |
| Enable HTTP clients to perform REST-like API requests | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/allow_restapi/',auth=auth,headers=headers,json=True)
Sample JS request read command:
request.get({url:"config/allow_restapi/"},function(error,response,body) {console.log(body)});
⇒
true
| sum (boolean) | config/allow_restapi_nonadmin/ |
| Enable REST-like API requests from users which are not administrators | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/allow_restapi_nonadmin/',auth=auth,headers=headers,json=True)
Sample uom library read command:
print(uom.dump(uom.config.allow_restapi_nonadmin))
⇒
false
| array | config/allow_restapi_origins/ |
| List of origins permitted to access the REST-like API | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
This array contains Allowed REST-like API client origin elements.
Sample uom library write command:
uom.config.allow_restapi_origins={"https://baz.example.com"}
Sample CLI read command:
uom get "config/allow_restapi_origins"
⇒
["http://bar.example.com","http://foo.example.com:8089","https://baz.example.com:8443","http://baz.example.com:5","https://bar.example.com","https://foo.example.com:8443"]
| string | config/allow_restapi_origins/N/ |
| Origin permitted to access the REST-like API | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Sample uom library deletion command (note that _allowed_rest_like_api_client_origin_index is a variable):
uom.remove(uom.config.allow_restapi_origins,_allowed_rest_like_api_client_origin_index)
Sample uom library read command (note that _allowed_rest_like_api_client_origin_index is a variable):
print(uom.dump(uom.config.allow_restapi_origins[_allowed_rest_like_api_client_origin_index]))
⇒
"http://baz.example.com:9"
| sum (boolean) | config/allow_coapws/ |
| Enable HTTP clients to establish CoAP over WebSockets connections | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample uom library read command:
print(uom.dump(uom.config.allow_coapws))
⇒
false
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/allow_coapws/',auth=auth,headers=headers,json=False)
| sum (boolean) | config/allow_coapws_nonadmin/ |
| Enable CoAP over WebSockets connections from users which are not administrators | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/allow_coapws_nonadmin/',auth=auth,headers=headers).json())
⇒
False
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "true" "http://192.168.0.100/restapi/config/allow_coapws_nonadmin/"
| array | config/allow_coapws_origins/ |
| List of origins permitted to access CoAP over WebSockets | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This array represents a value in persistent storage.
This array represents an unordered set (order of its elements doesn't matter, and each value should not be supplied more than once).
This array contains Allowed CoAP over WebSockets client origin elements.
Sample CLI allowed CoAP over WebSockets client origin creation command:
uom insert "config/allow_coapws_origins/2" "\"https://bar.example.com:58443\""
Sample uom library read command:
print(uom.dump(uom.config.allow_coapws_origins))
⇒
{"http://bar.example.com","http://bar.example.com:3","http://baz.example.com:5"}
| string | config/allow_coapws_origins/N/ |
| Origin permitted to access CoAP over WebSockets | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This string represents a value in persistent storage.
Sample CLI read command (note that allowed_coap_over_websockets_client_origin_index is a variable):
uom get "config/allow_coapws_origins/${allowed_coap_over_websockets_client_origin_index}"
⇒
"http://baz.example.com"
Sample CLI deletion command (note that allowed_coap_over_websockets_client_origin_index is a variable):
uom remove "config/allow_coapws_origins/${allowed_coap_over_websockets_client_origin_index}"
| sum (boolean) | config/relax_nonhtml_methods/ |
| Enable HTTP clients to perform PUT/PATCH/DELETE API requests without a CSRF protection header (currently cannot be sent via an HTML form) | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample CLI read command:
uom get "config/relax_nonhtml_methods"
⇒
true
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/relax_nonhtml_methods/',auth=auth,headers=headers,json=False)
| sum (boolean) | config/relax_nonhtml_content_types/ |
| Enable HTTP clients to perform API requests with e.g. application/json or application/json-rpc without a CSRF protection header (currently cannot be sent via an HTML form) | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/relax_nonhtml_content_types/',auth=auth,headers=headers).json())
⇒
True
Sample uom library read command:
print(uom.dump(uom.config.relax_nonhtml_content_types))
⇒
false
| sum (boolean) | config/allow_plaintext_logins/ |
| Allow HTTP clients to authenticate using Basic authentication or plaintext login form | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample CLI write command:
uom set "config/allow_plaintext_logins" "false"
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "false" "http://192.168.0.100/restapi/config/allow_plaintext_logins/"
| sum (boolean) | config/allow_plaintext_url_logins/ |
| Allow HTTP clients to authenticate to certain API types by supplying plaintext credentials in URL | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/allow_plaintext_url_logins/"
⇒
[]
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/allow_plaintext_url_logins/',auth=auth,headers=headers).json())
⇒
{}
| sum (boolean) | config/allow_modifying_get/ |
| Allow HTTP clients to use GET web UI requests for changing state | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample CLI read command:
uom get "config/allow_modifying_get"
⇒
true
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "false" "http://192.168.0.100/restapi/config/allow_modifying_get/"
| sum (boolean) | config/name_always_visible/ |
| Flag enabling visibility of relay name | |
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Everywhere | Relay name visible everywhere, including the login page | |
| constant false | Authorized users only | Relay name visible only on pages which require authorization | |
Sample CLI read command:
uom get "config/name_always_visible"
⇒
true
Sample JS request write command:
request.put({url:"config/name_always_visible/",body:false});
| sum (boolean) | config/hide_passwords/ |
| Whether user passwords should be hidden | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Hide | Do not display user passwords in web UI | |
| constant false | Show | Display user passwords in web UI | |
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/hide_passwords/',auth=auth,headers=headers,json=False)
Sample CLI read command:
uom get "config/hide_passwords"
⇒
false
| sum (boolean) | config/hide_wifi_key/ |
| Whether the WiFi key should be hidden | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Hide | Do not display WiFi key in web UI | |
| constant false | Show | Display WiFi key in web UI | |
Sample JS request write command:
request.put({url:"config/hide_wifi_key/",body:false});
Sample requests write command:
requests.put('http://192.168.0.100/restapi/config/hide_wifi_key/',auth=auth,headers=headers,json=True)
| number | config/lockout_delay_minutes/ |
| Time during which, after several unsuccessful logins, subsequent logins are denied | |
The value represents time, the standard unit of which is the second (s).
The value is subject to the following constraints: the value is greater or equal to 0
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This number represents a value in persistent storage.
Sample JS request read command:
request.get({url:"config/lockout_delay_minutes/"},function(error,response,body) {console.log(body)});
⇒
60
Sample CLI write command:
uom set "config/lockout_delay_minutes" "60"
| sum (boolean) | config/protect_firmware/ |
| Protect firmware from being overwritten | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed | |
| constant false | Not protected | Associated object can be changed | |
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "false" "http://192.168.0.100/restapi/config/protect_firmware/"
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/protect_firmware/',auth=auth,headers=headers).json())
⇒
False
| sum (boolean) | config/protect_admin/ |
| Protect admin settings from being modified | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed | |
| constant false | Not protected | Associated object can be changed | |
Sample uom library write command:
uom.config.protect_admin=true
Sample JS request write command:
request.put({url:"config/protect_admin/",body:true});
| sum (boolean) | config/protect_network/ |
| Protect network settings from being modified | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed | |
| constant false | Not protected | Associated object can be changed | |
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/protect_network/"
⇒
false
Sample JS request write command:
request.put({url:"config/protect_network/",body:true});
| sum (boolean) | config/protect_private_config/ |
| Protect private configuration settings from being stored in backups | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed | |
| constant false | Not protected | Associated object can be changed | |
Sample CLI write command:
uom set "config/protect_private_config" "true"
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "false" "http://192.168.0.100/restapi/config/protect_private_config/"
| sum (boolean) | config/protect_restore/ |
| Protect settings from being restored from backups | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed | |
| constant false | Not protected | Associated object can be changed | |
Sample CLI write command:
uom set "config/protect_restore" "true"
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "false" "http://192.168.0.100/restapi/config/protect_restore/"
| sum (boolean) | config/protect_maintenance/ |
| Disable remote maintenance support | |
Retrieving the value is denied if not administrative user
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed | |
| constant false | Not protected | Associated object can be changed | |
Sample JS request read command:
request.get({url:"config/protect_maintenance/"},function(error,response,body) {console.log(body)});
⇒
false
Sample uom library read command:
print(uom.dump(uom.config.protect_maintenance))
⇒
true
| sum (variant) | config/protect_notification/ |
| Protect notification settings from being modified | |
Retrieving the value is denied if all of the following is true:
Changing the value is denied if any of the following is true:
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Protected | Associated object cannot be changed, and its security-related parameters cannot be read | |
| constant false | Not protected | Associated object can be changed, and its security-related parameters can be read | |
| constant "sender" | Protect sender configuration | Associated object cannot be changed, and its security-related parameters cannot be read; properties not related to sender configuration can still be read and changed | |
Sample JS request read command:
request.get({url:"config/protect_notification/"},function(error,response,body) {console.log(body)});
⇒
false
Sample JS request write command:
request.put({url:"config/protect_notification/",body:false});
| sum (boolean) | config/upgrade_notify_beep/ |
| Indicate firmware upgrade progress by beeping | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample curl write command:
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "true" "http://192.168.0.100/restapi/config/upgrade_notify_beep/"
Sample JS request read command:
request.get({url:"config/upgrade_notify_beep/"},function(error,response,body) {console.log(body)});
⇒
true
| sum (boolean) | config/upgrade_notify_blink/ |
| Indicate firmware upgrade progress by blinking | |
Retrieving the value is denied if not administrative user
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Enabled | The feature is enabled | |
| constant false | Disabled | The feature is disabled | |
Sample uom library write command:
uom.config.upgrade_notify_blink=true
Sample CLI write command:
uom set "config/upgrade_notify_blink" "false"
| map | config/known_quantities/ |
| Map of known physical quantities | |
This map does not support direct modification.
This map represents a value in persistent storage.
This map contains Quantity elements.
Creating elements in this collection is not supported.
Sample JS request read command:
request.get({url:"config/known_quantities/"},function(error,response,body) {console.log(body)});
⇒
<...>
Sample CLI read command:
uom get "config/known_quantities"
⇒
...
| object | config/known_quantities/S/ |
| Physical quantity | |
This object contains the following items:
| name | Name |
| units | Known units |
| preferred_unit | Preferred unit, if any |
Sample curl write command (note that :quantity is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"preferred_unit\":\"kWh\",\"name\":\"Energy\",\"units\":{\"kWh\":{\"offset\":0,\"name\":\"kilowatt-hour\",\"scale\":2.77777778e-07},\"J\":{\"offset\":0,\"name\":\"joule\",\"scale\":1}}}" "http://192.168.0.100/restapi/config/known_quantities/:quantity/"
Sample JS request read command (note that _quantity is a variable):
request.get({url:"config/known_quantities/"+_quantity+"/"},function(error,response,body) {console.log(body)});
⇒
{"preferred_unit":"fc","name":"Illuminance","units":{"lx":{"offset":0,"internal":true,"name":"lux","scale":1},"fc":{"offset":0,"internal":true,"name":"foot-candle","scale":0.09290226681531}}}
See also Quantity: Name
See also Quantity: Known units
See also Quantity: Preferred unit, if any
| string | config/known_quantities/S/name/ |
| Quantity name | |
This string does not support direct modification.
This string represents a value in persistent storage.
Sample curl read command (note that :quantity is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_quantities/:quantity/name/"
⇒
"Count"
Sample requests read command (note that _quantity is a variable):
print(requests.get('http://192.168.0.100/restapi/config/known_quantities/'+_quantity+'/name/',auth=auth,headers=headers).json())
⇒
'Screen length'
| map | config/known_quantities/S/units/ |
| Map of known units for quantity | |
Changing the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map represents a value in persistent storage.
This map contains Unit elements.
Sample CLI write command (note that quantity is a variable):
uom set "config/known_quantities/${quantity}/units" "{\"K\":{\"offset\":0,\"name\":\"kelvin\",\"scale\":1},\"C\":{\"offset\":-273.16,\"name\":\"degree Celsius\",\"scale\":1},\"F\":{\"offset\":-459.67,\"internal\":false,\"name\":\"degree Fahrenheit\",\"scale\":1.8}}"
Sample curl unit creation command (note that :quantity is a URL template argument):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"offset\":0,\"internal\":false,\"name\":\"foot-candle\",\"scale\":0.09290226681531}" "http://192.168.0.100/restapi/config/known_quantities/:quantity/units/fc/"
| object | config/known_quantities/S/units/S/ |
| Unit of physical quantity | |
Changing the value is denied if not administrative user
This object is a part of a composite value which is modified as a whole.
This object does not support direct modification if internal.
This object represents a value in persistent storage.
This object contains the following items:
| name | Name |
| scale | Scaling factor |
| offset | Offset |
| internal | Internal |
Sample curl write command (note that :quantity and :unit are URL template arguments):
curl --digest -u admin:1234 -H "X-CSRF: x" -X PUT -H "Content-type: application/json" -H "Accept: application/json" --data-binary "{\"offset\":0,\"internal\":false,\"name\":\"foot-candle\",\"scale\":0.09290226681531}" "http://192.168.0.100/restapi/config/known_quantities/:quantity/units/:unit/"
Sample CLI read command (note that quantity and unit are variables):
uom get "config/known_quantities/${quantity}/units/${unit}"
⇒
{"offset":0,"internal":true,"name":"time","scale":1}
| string | config/known_quantities/S/units/S/name/ |
| Unit name | |
Changing the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification if internal.
This string represents a value in persistent storage.
Sample uom library read command (note that _quantity and _unit are variables):
print(uom.dump(uom.config.known_quantities[_quantity].units[_unit].name))
⇒
"volt"
Sample JS request write command (note that _quantity and _unit are variables):
request.put({url:"config/known_quantities/"+_quantity+"/units/"+_unit+"/name/",body:"time"});
| number | config/known_quantities/S/units/S/scale/ |
| Scaling factor for conversion from standard SI unit | |
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
This number does not support direct modification if internal.
This number represents a value in persistent storage.
Sample CLI read command (note that quantity and unit are variables):
uom get "config/known_quantities/${quantity}/units/${unit}/scale"
⇒
1
Sample requests write command (note that _quantity and _unit are variables):
requests.put('http://192.168.0.100/restapi/config/known_quantities/'+_quantity+'/units/'+_unit+'/scale/',auth=auth,headers=headers,json=1)
| number | config/known_quantities/S/units/S/offset/ |
| Offset for conversion from standard SI unit | |
Changing the value is denied if not administrative user
This number is a part of a composite value which is modified as a whole.
This number does not support direct modification if internal.
This number represents a value in persistent storage.
Sample requests read command (note that _quantity and _unit are variables):
print(requests.get('http://192.168.0.100/restapi/config/known_quantities/'+_quantity+'/units/'+_unit+'/offset/',auth=auth,headers=headers).json())
⇒
0
Sample uom library read command (note that _quantity and _unit are variables):
print(uom.dump(uom.config.known_quantities[_quantity].units[_unit].offset))
⇒
0
| sum (boolean) | config/known_quantities/S/units/S/internal/ |
| Flag indicating whether this measurement unit is internal | |
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant true | Internal | This unit is internal and cannot be modified | |
| constant false | User | This unit is user-supplied and can be modified | |
Sample JS request read command (note that _quantity and _unit are variables):
request.get({url:"config/known_quantities/"+_quantity+"/units/"+_unit+"/internal/"},function(error,response,body) {console.log(body)});
⇒
true
Sample curl read command (note that :quantity and :unit are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_quantities/:quantity/units/:unit/internal/"
⇒
true
| sum (optional string) | config/known_quantities/S/preferred_unit/ |
| Default UI unit for quantity, if any | |
Changing the value is denied if not administrative user
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | Standard unit | UI shows quantity in SI units | |
| string | Preferred unit | Default UI unit for quantity | known units[the value] |
Sample JS request read command (note that _quantity is a variable):
request.get({url:"config/known_quantities/"+_quantity+"/preferred_unit/"},function(error,response,body) {console.log(body)});
⇒
null
Sample curl read command (note that :quantity is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_quantities/:quantity/preferred_unit/"
⇒
"times"
| map | config/known_timezones/ |
| Map of known time zones | |
Retrieving the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map does not support direct modification.
This map represents a value in persistent storage.
This map contains Timezone elements.
Creating elements in this collection is not supported.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_timezones/"
⇒
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/known_timezones/',auth=auth,headers=headers).json())
⇒
| string | config/known_timezones/S/ |
| Time zone name | |
Retrieving the value is denied if not administrative user
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
This string represents a value in persistent storage.
Sample CLI read command (note that timezone is a variable):
uom get "config/known_timezones/${timezone}"
⇒
"UTC-4"
Sample uom library read command (note that _timezone is a variable):
print(uom.dump(uom.config.known_timezones[_timezone]))
⇒
"UTC+5"
| map | config/known_protection_bits/ |
| Map of known protection bits | |
Retrieving the value is denied if not administrative user
This map is composite, i.e. is modified as a whole.
This map does not support direct modification.
This map contains Protection bit elements.
Creating elements in this collection is not supported.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_protection_bits/"
⇒
Sample requests read command:
print(requests.get('http://192.168.0.100/restapi/config/known_protection_bits/',auth=auth,headers=headers).json())
⇒
See also Known protection bits: Protection bit
| object | config/known_protection_bits/S/ |
| Protection bit properties | |
Retrieving the value is denied if not administrative user
This object is a part of a composite value which is modified as a whole.
This object contains the following items:
| name | Name |
| status | Protection status |
Sample uom library write command (note that _protection_bit is a variable):
uom.config.known_protection_bits[_protection_bit]={name="Protection from restore from backup",status="You have enabled that and that service which allows to bypass this protection"}
Sample JS request read command (note that _protection_bit is a variable):
request.get({url:"config/known_protection_bits/"+_protection_bit+"/"},function(error,response,body) {console.log(body)});
⇒
{"name":"Protection from restore from backup","status":false}
| string | config/known_protection_bits/S/name/ |
| Protection bit name | |
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
Sample JS request read command (note that _protection_bit is a variable):
request.get({url:"config/known_protection_bits/"+_protection_bit+"/name/"},function(error,response,body) {console.log(body)});
⇒
"Maintenance mode protection"
Sample curl read command (note that :protection_bit is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_protection_bits/:protection_bit/name/"
⇒
"Maintenance mode protection"
| sum (variant) | config/known_protection_bits/S/status/ |
| Status of protection | |
Retrieving the value is denied if not administrative user
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum can change as if by itself or indirectly because of other actions.
Changes to this sum cannot be tracked.
This sum can assume the following values:
| constant true | Enabled | Protection is enabled and effective | |
| constant false | Disabled | Protection is disabled | |
| string | Ineffective | Protection is enabled, but not effective for the following reason | |
Sample uom library read command (note that _protection_bit is a variable):
print(uom.dump(uom.config.known_protection_bits[_protection_bit].status))
⇒
false
Sample CLI read command (note that protection_bit is a variable):
uom get "config/known_protection_bits/${protection_bit}/status"
⇒
false
| map | config/known_component_versions/ |
| Map of known component version ranges and their status | |
This map is composite, i.e. is modified as a whole.
This map does not support direct modification.
This map represents a value in persistent storage.
This map contains Component information elements.
Creating elements in this collection is not supported.
Sample uom library read command:
print(uom.dump(uom.config.known_component_versions))
⇒
<...>
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_component_versions/"
⇒
...
| object | config/known_component_versions/S/ |
| Version information for a component | |
This object is a part of a composite value which is modified as a whole.
This object does not support direct modification.
This object represents a value in persistent storage.
This object contains the following items:
| name | Name |
| path | Path |
| versions | Versions |
| unknown_version_warning | Unknown version warning |
Sample CLI read command (note that component_information is a variable):
uom get "config/known_component_versions/${component_information}"
⇒
Sample requests read command (note that _component_information is a variable):
print(requests.get('http://192.168.0.100/restapi/config/known_component_versions/'+_component_information+'/',auth=auth,headers=headers).json())
⇒
<...>
See also Component information: Name
See also Component information: Path
See also Component information: Versions
See also Component information: Unknown version warning
| string | config/known_component_versions/S/name/ |
| Component name | |
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command (note that _component_information is a variable):
print(requests.get('http://192.168.0.100/restapi/config/known_component_versions/'+_component_information+'/name/',auth=auth,headers=headers).json())
⇒
'ART EEPROM'
Sample uom library read command (note that _component_information is a variable):
print(uom.dump(uom.config.known_component_versions[_component_information].name))
⇒
"AVR"
| array | config/known_component_versions/S/path/ |
| Component version path relative to object model root | |
This array is a part of a composite value which is modified as a whole.
This array does not support direct modification.
This array represents a value in persistent storage.
This array contains Path component elements.
Creating elements in this collection is not supported.
Sample uom library read command (note that _component_information is a variable):
print(uom.dump(uom.config.known_component_versions[_component_information].path))
⇒
{"relay","version"}
Sample CLI read command (note that component_information is a variable):
uom get "config/known_component_versions/${component_information}/path"
⇒
["relay","version"]
| sum (variant) | config/known_component_versions/S/path/N/ |
| Element of component version path | |
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum represents a value in persistent storage.
This sum can assume the following values:
| string | String | String path component | |
| number | Number | Number path component | |
Sample requests read command (note that _component_information and _path_component_index are variables):
print(requests.get('http://192.168.0.100/restapi/config/known_component_versions/'+_component_information+'/path/'+str(_path_component_index)+'/',auth=auth,headers=headers).json())
⇒
'art_id'
Sample uom library read command (note that _component_information and _path_component_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].path[_path_component_index]))
⇒
"art_id"
| sum (variant) | config/known_component_versions/S/versions/N/1/N/ |
| Condition for matching the version | |
This sum is a part of a composite value which is modified as a whole.
This sum can assume the following values:
| string | Exact match | Matches this exact version | |
| tuple | Range match | Matches dot-separated versions in this range, including start but excluding end | |
Sample requests write command (note that _component_information, _version_data_index and _version_match_item_index are variables):
requests.put('http://192.168.0.100/restapi/config/known_component_versions/'+_component_information+'/versions/'+str(_version_data_index)+'/0/'+str(_version_match_item_index)+'/',auth=auth,headers=headers,json='b7ed28c74c6e25cf39637b2d8e39e2099e7b633bfa92062309774a4c8866a6f3')
Sample CLI read command (note that component_information, version_data_index and version_match_item_index are variables):
uom get "config/known_component_versions/${component_information}/versions/${version_data_index}/0/${version_match_item_index}"
⇒
"67719180ca98f54d8b19a04d5c0dcd435c5eddf98927f757261c76ad2abe8f2d"
| (possibly) tuple | config/known_component_versions/S/versions/N/1/N/ |
| Matches dot-separated versions in this range, including start but excluding end | |
This tuple is a part of a composite value which is modified as a whole.
This tuple does not support direct modification.
This tuple represents a value in persistent storage.
This tuple contains the following items:
| 1 | Range start, if any |
| 2 | Range end, if any |
| sum (optional string) | config/known_component_versions/S/versions/N/1/N/1/ |
| Start of range to match (included), if any | |
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | No range start limit | Match arbitrarily old versions | |
| string | Range start | Start of range to match (included) | |
Sample uom library read command (note that _component_information, _version_data_index and _version_match_item_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][1][_version_match_item_index][1]))
⇒
null
Sample curl read command (note that :component_information, :version_data_index and :version_match_item_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_component_versions/:component_information/versions/:version_data_index/0/:version_match_item_index/0/"
⇒
"1.16.4.0"
| sum (optional string) | config/known_component_versions/S/versions/N/1/N/2/ |
| End of range to match (excluded), if any | |
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant null | No range end limit | Match arbitrarily new versions | |
| string | Range end | End of range to match (excluded) | |
Sample uom library read command (note that _component_information, _version_data_index and _version_match_item_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][1][_version_match_item_index][2]))
⇒
"1.31.76.0"
Sample JS request read command (note that _component_information, _version_data_index and _version_match_item_index are variables):
request.get({url:"config/known_component_versions/"+_component_information+"/versions/"+_version_data_index.toString()+"/0/"+_version_match_item_index.toString()+"/1/"},function(error,response,body) {console.log(body)});
⇒
null
| tuple | config/known_component_versions/S/versions/N/2/N/ |
| Known issue description | |
This tuple is a part of a composite value which is modified as a whole.
This tuple does not support direct modification.
This tuple represents a value in persistent storage.
This tuple contains the following items:
| 1 | Kind |
| 2 | Title |
| 3 | Description |
| 4 | Importance |
Sample uom library read command (note that _component_information, _version_data_index and _issue_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][2][_issue_index]))
⇒
{"bug","","",0.7}
Sample JS request read command (note that _component_information, _version_data_index and _issue_index are variables):
request.get({url:"config/known_component_versions/"+_component_information+"/versions/"+_version_data_index.toString()+"/1/"+_issue_index.toString()+"/"},function(error,response,body) {console.log(body)});
⇒
["missing-feature","","",0.1]
| sum (enumerated string) | config/known_component_versions/S/versions/N/2/N/1/ |
| Kind of issue | |
This sum is a part of a composite value which is modified as a whole.
This sum does not support direct modification.
This sum represents a value in persistent storage.
This sum can assume the following values:
| constant "bug" | Bug | Problem present in the version(s) | |
| constant "missing-feature" | Missing feature | Feature not present in the version(s) | |
Sample curl read command (note that :component_information, :version_data_index and :issue_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_component_versions/:component_information/versions/:version_data_index/1/:issue_index/0/"
⇒
"bug"
Sample uom library read command (note that _component_information, _version_data_index and _issue_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][2][_issue_index][1]))
⇒
"bug"
| string | config/known_component_versions/S/versions/N/2/N/2/ |
| Title of the issue | |
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
This string represents a value in persistent storage.
Sample requests read command (note that _component_information, _version_data_index and _issue_index are variables):
print(requests.get('http://192.168.0.100/restapi/config/known_component_versions/'+_component_information+'/versions/'+str(_version_data_index)+'/1/'+str(_issue_index)+'/1/',auth=auth,headers=headers).json())
⇒
''
Sample uom library read command (note that _component_information, _version_data_index and _issue_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][2][_issue_index][2]))
⇒
""
| string | config/known_component_versions/S/versions/N/2/N/3/ |
| Textual description of the issue | |
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
This string represents a value in persistent storage.
Sample JS request read command (note that _component_information, _version_data_index and _issue_index are variables):
request.get({url:"config/known_component_versions/"+_component_information+"/versions/"+_version_data_index.toString()+"/1/"+_issue_index.toString()+"/2/"},function(error,response,body) {console.log(body)});
⇒
""
Sample CLI read command (note that component_information, version_data_index and issue_index are variables):
uom get "config/known_component_versions/${component_information}/versions/${version_data_index}/1/${issue_index}/2"
⇒
""
| number | config/known_component_versions/S/versions/N/2/N/4/ |
| Relative importance of the issue | |
This number is a part of a composite value which is modified as a whole.
This number does not support direct modification.
This number represents a value in persistent storage.
Sample JS request read command (note that _component_information, _version_data_index and _issue_index are variables):
request.get({url:"config/known_component_versions/"+_component_information+"/versions/"+_version_data_index.toString()+"/1/"+_issue_index.toString()+"/3/"},function(error,response,body) {console.log(body)});
⇒
0.7
Sample CLI read command (note that component_information, version_data_index and issue_index are variables):
uom get "config/known_component_versions/${component_information}/versions/${version_data_index}/1/${issue_index}/3"
⇒
0.3
| array | config/known_component_versions/S/versions/ |
| List of known versions or ranges | |
This array is a part of a composite value which is modified as a whole.
This array does not support direct modification.
This array represents a value in persistent storage.
This array contains Version data elements.
Creating elements in this collection is not supported.
Sample uom library read command (note that _component_information is a variable):
print(uom.dump(uom.config.known_component_versions[_component_information].versions))
⇒
<...>
Sample CLI read command (note that component_information is a variable):
uom get "config/known_component_versions/${component_information}/versions"
⇒
[[["1.8.53.0",["1.6.3.0","1.17.21.0"]],[["missing-feature","","",0.8],["bug","","",0.2],["bug","","",0.2],["bug","","",0.8],["bug","","",0.4]]]]
| tuple | config/known_component_versions/S/versions/N/ |
| Version information | |
This tuple is a part of a composite value which is modified as a whole.
This tuple does not support direct modification.
This tuple represents a value in persistent storage.
This tuple contains the following items:
| 1 | Version match |
| 2 | Issues |
Sample JS request read command (note that _component_information and _version_data_index are variables):
request.get({url:"config/known_component_versions/"+_component_information+"/versions/"+_version_data_index.toString()+"/"},function(error,response,body) {console.log(body)});
⇒
[[[null,"1.69.9.0"],"1.8.4.0",["1.56.5.0",null],["1.53.9.0",null]],[["missing-feature","","",0.9]]]
Sample curl read command (note that :component_information and :version_data_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_component_versions/:component_information/versions/:version_data_index/"
⇒
| array | config/known_component_versions/S/versions/N/1/ |
| Conditions for matching the version | |
This array is a part of a composite value which is modified as a whole.
This array does not support direct modification.
This array represents a value in persistent storage.
This array contains Version match item elements.
Creating elements in this collection is not supported.
Sample uom library read command (note that _component_information and _version_data_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][1]))
⇒
{"1.33.4.0",{"1.51.6.0","1.85.4.0"}}
Sample JS request read command (note that _component_information and _version_data_index are variables):
request.get({url:"config/known_component_versions/"+_component_information+"/versions/"+_version_data_index.toString()+"/0/"},function(error,response,body) {console.log(body)});
⇒
See also Version match: Version match item
| array | config/known_component_versions/S/versions/N/2/ |
| Known issues with components in this range | |
This array is a part of a composite value which is modified as a whole.
This array does not support direct modification.
This array represents a value in persistent storage.
This array contains Issue elements.
Creating elements in this collection is not supported.
Sample curl read command (note that :component_information and :version_data_index are URL template arguments):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_component_versions/:component_information/versions/:version_data_index/1/"
⇒
[["missing-feature","","",0.2],["missing-feature","","",1],["missing-feature","","",0.6],["bug","","",0.3]]
Sample uom library read command (note that _component_information and _version_data_index are variables):
print(uom.dump(uom.config.known_component_versions[_component_information].versions[_version_data_index][2]))
⇒
{{"missing-feature","","",0.5}}
See also Issues: Issue
| string | config/known_component_versions/S/unknown_version_warning/ |
| Warning to display if version matched no entries | |
This string is a part of a composite value which is modified as a whole.
This string does not support direct modification.
This string represents a value in persistent storage.
Sample CLI read command (note that component_information is a variable):
uom get "config/known_component_versions/${component_information}/unknown_version_warning"
⇒
"WiFi and/or boot issues possible"
Sample curl read command (note that :component_information is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/known_component_versions/:component_information/unknown_version_warning/"
⇒
"Boot, reboot, upgrade state conservation, power-up state restoration, etc. issues possible"
| array | config/relay_ports/ |
| List of devices to which relay modules are connected | |
Retrieving the value is denied if not administrative user
This array does not support direct modification.
This array represents a value in persistent storage.
This array is expected to be visible to advanced users only.
This array contains Relay port elements.
Creating elements in this collection is not supported.
Sample curl read command:
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/relay_ports/"
⇒
["ttyATH0"]
Sample CLI read command:
uom get "config/relay_ports"
⇒
["ttyATH0"]
| string | config/relay_ports/N/ |
| Filename of a relay module device | |
Retrieving the value is denied if not administrative user
This string does not support direct modification.
This string represents a value in persistent storage.
This string is expected to be visible to advanced users only.
Sample curl read command (note that :relay_port_index is a URL template argument):
curl --digest -u admin:1234 -H "Accept: application/json" "http://192.168.0.100/restapi/config/relay_ports/:relay_port_index/"
⇒
"ttyATH0"
Sample JS request read command (note that _relay_port_index is a variable):
request.get({url:"config/relay_ports/"+_relay_port_index.toString()+"/"},function(error,response,body) {console.log(body)});
⇒
"ttyATH0"