Class: Kaltura::KalturaSchedulerStatus
- Inherits:
-
KalturaObjectBase
- Object
- KalturaObjectBase
- Kaltura::KalturaSchedulerStatus
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#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.
-
#type ⇒ Object
The status type.
-
#value ⇒ Object
The status value.
-
#worker_configured_id ⇒ Object
The configured id of the job worker.
-
#worker_id ⇒ Object
The id of the worker.
-
#worker_type ⇒ Object
The type of the job worker.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#id ⇒ Object
The id of the Category
5190 5191 5192 |
# File 'lib/kaltura_types.rb', line 5190 def id @id end |
#scheduler_configured_id ⇒ Object
The configured id of the scheduler
5193 5194 5195 |
# File 'lib/kaltura_types.rb', line 5193 def scheduler_configured_id @scheduler_configured_id end |
#scheduler_id ⇒ Object
The id of the scheduler
5208 5209 5210 |
# File 'lib/kaltura_types.rb', line 5208 def scheduler_id @scheduler_id end |
#type ⇒ Object
The status type
5202 5203 5204 |
# File 'lib/kaltura_types.rb', line 5202 def type @type end |
#value ⇒ Object
The status value
5205 5206 5207 |
# File 'lib/kaltura_types.rb', line 5205 def value @value end |
#worker_configured_id ⇒ Object
The configured id of the job worker
5196 5197 5198 |
# File 'lib/kaltura_types.rb', line 5196 def worker_configured_id @worker_configured_id end |
#worker_id ⇒ Object
The id of the worker
5211 5212 5213 |
# File 'lib/kaltura_types.rb', line 5211 def worker_id @worker_id end |
#worker_type ⇒ Object
The type of the job worker.
5199 5200 5201 |
# File 'lib/kaltura_types.rb', line 5199 def worker_type @worker_type end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 |
# File 'lib/kaltura_types.rb', line 5235 def from_xml(xml_element) super self.id = xml_element.elements['id'].text self.scheduler_configured_id = xml_element.elements['schedulerConfiguredId'].text self.worker_configured_id = xml_element.elements['workerConfiguredId'].text self.worker_type = xml_element.elements['workerType'].text self.type = xml_element.elements['type'].text self.value = xml_element.elements['value'].text self.scheduler_id = xml_element.elements['schedulerId'].text self.worker_id = xml_element.elements['workerId'].text end |