ITLogDiagnosticsCallStatus Property
General info
Label |
Call Status |
Description |
The most recent status of the IT Log object. |
Data type |
String |
Type |
Regular |
Code |
2614 |
Symbolic name |
MODEL_PROP_ITLOGDIAGNOSTICSCALLSTATUS |
Lua access code |
inmation.model.properties.ITLogDiagnosticsCallStatus |
Available since |
1.30.6.4266 |
- Parent properties
Attributes
Name | Tooltip |
---|---|
PROP_VISIBLE | The property is visible in DataStudio and can be read by the inmation APIs. |
PROP_VOLATILE | The property exists during runtime of the service only and is not saved to the image. |
Examples
Read from or write to the ITLogDiagnosticsCallStatus
property.
-- Read from the ITLogDiagnosticsCallStatus
inmation.getvalue("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus")
-- Write to the ITLogDiagnosticsCallStatus
inmation.setvalue("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus", "new value")
TcpConfig tcpcfg = new TcpConfig() { HostNameOrIp = "localhost", Port = 6512 };
SecurityCredentials sc = new SecurityCredentials() { ProfileName = "so", Password = "inmation" };
StatelessInterface sli = new StatelessInterface(tcpcfg);
// Read from the ITLogDiagnosticsCallStatus
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus"));
// Write to the ITLogDiagnosticsCallStatus
Result result = sli.WriteValue(sc, new WriteItem("new value", "<OBJECT FULL PATH>.ITLogDiagnosticsParam.ITLogDiagnosticsCallStatus"));