class Kaltura::KalturaSchedulerConfig
Attributes
command_id[RW]
Id of the control panel command that created this config item
command_status[RW]
The status of the control panel command
created_by[RW]
Creator name
id[RW]
The id of the Category
scheduler_configured_id[RW]
The configured id of the scheduler
scheduler_id[RW]
The id of the scheduler
scheduler_name[RW]
The name of the scheduler
updated_by[RW]
Updater name
value[RW]
The value of the variable
variable[RW]
The name of the variable
variable_part[RW]
The part of the variable
worker_configured_id[RW]
The configured id of the job worker
worker_id[RW]
The id of the job worker
worker_name[RW]
The name of the job worker
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaObjectBase#from_xml
# File lib/kaltura_types.rb, line 5427 def from_xml(xml_element) super if xml_element.elements['id'] != nil self.id = xml_element.elements['id'].text end if xml_element.elements['createdBy'] != nil self.created_by = xml_element.elements['createdBy'].text end if xml_element.elements['updatedBy'] != nil self.updated_by = xml_element.elements['updatedBy'].text end if xml_element.elements['commandId'] != nil self.command_id = xml_element.elements['commandId'].text end if xml_element.elements['commandStatus'] != nil self.command_status = xml_element.elements['commandStatus'].text end if xml_element.elements['schedulerId'] != nil self.scheduler_id = xml_element.elements['schedulerId'].text end if xml_element.elements['schedulerConfiguredId'] != nil self.scheduler_configured_id = xml_element.elements['schedulerConfiguredId'].text end if xml_element.elements['schedulerName'] != nil self.scheduler_name = xml_element.elements['schedulerName'].text end if xml_element.elements['workerId'] != nil self.worker_id = xml_element.elements['workerId'].text end if xml_element.elements['workerConfiguredId'] != nil self.worker_configured_id = xml_element.elements['workerConfiguredId'].text end if xml_element.elements['workerName'] != nil self.worker_name = xml_element.elements['workerName'].text end if xml_element.elements['variable'] != nil self.variable = xml_element.elements['variable'].text end if xml_element.elements['variablePart'] != nil self.variable_part = xml_element.elements['variablePart'].text end if xml_element.elements['value'] != nil self.value = xml_element.elements['value'].text end end
id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 5411 def id=(val) @id = val.to_i end
scheduler_configured_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 5417 def scheduler_configured_id=(val) @scheduler_configured_id = val.to_i end
scheduler_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 5414 def scheduler_id=(val) @scheduler_id = val.to_i end
worker_configured_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 5423 def worker_configured_id=(val) @worker_configured_id = val.to_i end
worker_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 5420 def worker_id=(val) @worker_id = val.to_i end