Class: Kaltura::KalturaSchedulerConfig
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaSchedulerConfig
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#command_id ⇒ Object
Id of the control panel command that created this config item.
-
#command_status ⇒ Object
The status of the control panel command.
-
#created_by ⇒ Object
Creator name.
-
#id ⇒ Object
The id of the Category.
-
#scheduler_configured_id ⇒ Object
The configured id of the scheduler.
-
#scheduler_id ⇒ Object
The id of the scheduler.
-
#scheduler_name ⇒ Object
The name of the scheduler.
-
#updated_by ⇒ Object
Updater name.
-
#value ⇒ Object
The value of the variable.
-
#variable ⇒ Object
The name of the variable.
-
#variable_part ⇒ Object
The part of the variable.
-
#worker_configured_id ⇒ Object
The configured id of the job worker.
-
#worker_id ⇒ Object
The id of the job worker.
-
#worker_name ⇒ Object
The name of the job worker.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#command_id ⇒ Object
Id of the control panel command that created this config item
5532 5533 5534 |
# File 'lib/kaltura_types.rb', line 5532 def command_id @command_id end |
#command_status ⇒ Object
The status of the control panel command
5534 5535 5536 |
# File 'lib/kaltura_types.rb', line 5534 def command_status @command_status end |
#created_by ⇒ Object
Creator name
5528 5529 5530 |
# File 'lib/kaltura_types.rb', line 5528 def created_by @created_by end |
#id ⇒ Object
The id of the Category
5526 5527 5528 |
# File 'lib/kaltura_types.rb', line 5526 def id @id end |
#scheduler_configured_id ⇒ Object
The configured id of the scheduler
5538 5539 5540 |
# File 'lib/kaltura_types.rb', line 5538 def scheduler_configured_id @scheduler_configured_id end |
#scheduler_id ⇒ Object
The id of the scheduler
5536 5537 5538 |
# File 'lib/kaltura_types.rb', line 5536 def scheduler_id @scheduler_id end |
#scheduler_name ⇒ Object
The name of the scheduler
5540 5541 5542 |
# File 'lib/kaltura_types.rb', line 5540 def scheduler_name @scheduler_name end |
#updated_by ⇒ Object
Updater name
5530 5531 5532 |
# File 'lib/kaltura_types.rb', line 5530 def updated_by @updated_by end |
#value ⇒ Object
The value of the variable
5552 5553 5554 |
# File 'lib/kaltura_types.rb', line 5552 def value @value end |
#variable ⇒ Object
The name of the variable
5548 5549 5550 |
# File 'lib/kaltura_types.rb', line 5548 def variable @variable end |
#variable_part ⇒ Object
The part of the variable
5550 5551 5552 |
# File 'lib/kaltura_types.rb', line 5550 def variable_part @variable_part end |
#worker_configured_id ⇒ Object
The configured id of the job worker
5544 5545 5546 |
# File 'lib/kaltura_types.rb', line 5544 def worker_configured_id @worker_configured_id end |
#worker_id ⇒ Object
The id of the job worker
5542 5543 5544 |
# File 'lib/kaltura_types.rb', line 5542 def worker_id @worker_id end |
#worker_name ⇒ Object
The name of the job worker
5546 5547 5548 |
# File 'lib/kaltura_types.rb', line 5546 def worker_name @worker_name end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 |
# File 'lib/kaltura_types.rb', line 5570 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 |