Class: Kaltura::KalturaSchedulerStatus

Inherits:
KalturaObjectBase show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#idObject

The id of the Category



5313
5314
5315
# File 'lib/kaltura_types.rb', line 5313

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5315
5316
5317
# File 'lib/kaltura_types.rb', line 5315

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5325
5326
5327
# File 'lib/kaltura_types.rb', line 5325

def scheduler_id
  @scheduler_id
end

#typeObject

The status type



5321
5322
5323
# File 'lib/kaltura_types.rb', line 5321

def type
  @type
end

#valueObject

The status value



5323
5324
5325
# File 'lib/kaltura_types.rb', line 5323

def value
  @value
end

#worker_configured_idObject

The configured id of the job worker



5317
5318
5319
# File 'lib/kaltura_types.rb', line 5317

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the worker



5327
5328
5329
# File 'lib/kaltura_types.rb', line 5327

def worker_id
  @worker_id
end

#worker_typeObject

The type of the job worker.



5319
5320
5321
# File 'lib/kaltura_types.rb', line 5319

def worker_type
  @worker_type
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
# File 'lib/kaltura_types.rb', line 5351

def from_xml(xml_element)
  super
  if xml_element.elements['id'] != nil
    self.id = xml_element.elements['id'].text
  end
  if xml_element.elements['schedulerConfiguredId'] != nil
    self.scheduler_configured_id = xml_element.elements['schedulerConfiguredId'].text
  end
  if xml_element.elements['workerConfiguredId'] != nil
    self.worker_configured_id = xml_element.elements['workerConfiguredId'].text
  end
  if xml_element.elements['workerType'] != nil
    self.worker_type = xml_element.elements['workerType'].text
  end
  if xml_element.elements['type'] != nil
    self.type = xml_element.elements['type'].text
  end
  if xml_element.elements['value'] != nil
    self.value = xml_element.elements['value'].text
  end
  if xml_element.elements['schedulerId'] != nil
    self.scheduler_id = xml_element.elements['schedulerId'].text
  end
  if xml_element.elements['workerId'] != nil
    self.worker_id = xml_element.elements['workerId'].text
  end
end