SchedulerItemPath Property
General info
Label |
Scheduler object |
Description |
The path of the scheduler item object. |
Data type |
String |
Type |
Regular |
Code |
2787 |
Symbolic name |
MODEL_PROP_SCHEDULERITEMPATH |
Lua access code |
inmation.model.properties.SchedulerItemPath |
Available since |
1.34.1.5103 |
- 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. |
PROP_OBJECTPATH | Property can receive object paths. |
Examples
Read from or write to the SchedulerItemPath
property.
-- Read from the SchedulerItemPath
inmation.getvalue("<OBJECT FULL PATH>.AnalyzerScheduling.ScheduleObject.SchedulerItemPath")
-- Write to the SchedulerItemPath
inmation.setvalue("<OBJECT FULL PATH>.AnalyzerScheduling.ScheduleObject.SchedulerItemPath", "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 SchedulerItemPath
Result result = sli.ReadValue(sc, new ReadItem("<OBJECT FULL PATH>.AnalyzerScheduling.ScheduleObject.SchedulerItemPath"));
// Write to the SchedulerItemPath
Result result = sli.WriteValue(sc, new WriteItem("new value", "<OBJECT FULL PATH>.AnalyzerScheduling.ScheduleObject.SchedulerItemPath"));