You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -179,6 +208,9 @@ register_dal_methods(py::module& m)
179
208
m.def("session_get_all_applications", &session_get_all_applications, "Get list of ALL applications (regardless of enabled/disabled state) in the requested session");
180
209
m.def("session_get_enabled_applications", &session_get_enabled_applications, "Get list of enabled applications in the requested session");
181
210
211
+
m.def("disable_component", &disable_component, "Disable a Resource-derived object (e.g. a Segment)");
212
+
m.def("enable_component", &enable_component, "Enable a Resource-derived object (e.g. a Segment)");
213
+
182
214
m.def("component_disabled", &component_disabled, "Determine if a Resource-derived object (e.g. a Segment) has been disabled");
183
215
m.def("component_get_parents", &component_get_parents, "Get the Resource-derived class instances of the parent(s) of the Resource-derived object in question");
184
216
m.def("daqapp_get_used_resources", &daq_application_get_used_hostresources, "Get list of HostResources used by DAQApplication");
<classname="ActionPlan"description="A set of steps for an application to carry out a command">
86
86
<attributename="execution_policy"description="How the application should dispatch the command to modules matched by each step of the ActionPlan"type="enum"range="modules-in-parallel,modules-in-series"init-value="modules-in-parallel"/>
@@ -369,6 +369,12 @@
369
369
<methodname="resource_root"description="Pure virtual method to get the ResourceSet at the root of the ResourceTree.">
0 commit comments