Class: Kaltura::KalturaSchedulerConfig

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

#command_idObject

Id of the control panel command that created this config item



5506
5507
5508
# File 'lib/kaltura_types.rb', line 5506

def command_id
  @command_id
end

#command_statusObject

The status of the control panel command



5508
5509
5510
# File 'lib/kaltura_types.rb', line 5508

def command_status
  @command_status
end

#created_byObject

Creator name



5502
5503
5504
# File 'lib/kaltura_types.rb', line 5502

def created_by
  @created_by
end

#idObject

The id of the Category



5500
5501
5502
# File 'lib/kaltura_types.rb', line 5500

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5512
5513
5514
# File 'lib/kaltura_types.rb', line 5512

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5510
5511
5512
# File 'lib/kaltura_types.rb', line 5510

def scheduler_id
  @scheduler_id
end

#scheduler_nameObject

The name of the scheduler



5514
5515
5516
# File 'lib/kaltura_types.rb', line 5514

def scheduler_name
  @scheduler_name
end

#updated_byObject

Updater name



5504
5505
5506
# File 'lib/kaltura_types.rb', line 5504

def updated_by
  @updated_by
end

#valueObject

The value of the variable



5526
5527
5528
# File 'lib/kaltura_types.rb', line 5526

def value
  @value
end

#variableObject

The name of the variable



5522
5523
5524
# File 'lib/kaltura_types.rb', line 5522

def variable
  @variable
end

#variable_partObject

The part of the variable



5524
5525
5526
# File 'lib/kaltura_types.rb', line 5524

def variable_part
  @variable_part
end

#worker_configured_idObject

The configured id of the job worker



5518
5519
5520
# File 'lib/kaltura_types.rb', line 5518

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the job worker



5516
5517
5518
# File 'lib/kaltura_types.rb', line 5516

def worker_id
  @worker_id
end

#worker_nameObject

The name of the job worker



5520
5521
5522
# File 'lib/kaltura_types.rb', line 5520

def worker_name
  @worker_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
# File 'lib/kaltura_types.rb', line 5544

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