HtmRebalanceConfiguration Property
General info
Label |
Rebalance Configuration |
Description |
A set of rules to move tags between different transportation groups. |
Data type |
String |
Default value |
"{\"meta\":{\"id\":\"urn:id:100:13\"}}" |
Type |
TableSchemaBound |
Code |
13319 |
Symbolic name |
MODEL_PROP_HTMREBALANCECONFIGURATION |
Lua access code |
syslib.model.properties.HtmRebalanceConfiguration |
Available since |
1.92 |
- Parent classes
- Parent properties
Attributes
| Name | Tooltip |
|---|---|
| PROP_CONFIGURABLE | The property is configurable and can be changed with DataStudio and the various inmation APIs. |
| PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs. |
Schema Definition
Name: HtmRebalanceConfiguration
Description:
- Columns
-
Column Data Type Nullable Unique Default Min Max Description Function Integer false false 1 Function Source Integer false false 1 Source TargetGroup String false false Target Group Name Value String false false Value
Examples
Read from or write to the HtmRebalanceConfiguration property.
-- Read from the HtmRebalanceConfiguration
syslib.getvalue("<OBJECT FULL PATH>.HtmGroupConfiguration.HtmRebalanceConfiguration")
-- Write to the HtmRebalanceConfiguration
syslib.setvalue("<OBJECT FULL PATH>.HtmGroupConfiguration.HtmRebalanceConfiguration", '{"meta":{"id":"urn:id:22:2"},"data":{"Input":[1.0,2.0],"Value":["v1","v2"]}}')
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "<username>", Password = "<password>" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the HtmRebalanceConfiguration
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.HtmGroupConfiguration.HtmRebalanceConfiguration"));
// Write to the HtmRebalanceConfiguration
Result result = sli.WriteValue(sc, new WriteItem('{"meta":{"id":"urn:id:22:2"},"data":{"Input":[1.0,2.0],"Value":["v1","v2"]}}', "<OBJECT FULL PATH>.HtmGroupConfiguration.HtmRebalanceConfiguration"));