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



5287
5288
5289
# File 'lib/kaltura_types.rb', line 5287

def command_id
  @command_id
end

#command_statusObject

The status of the control panel command



5289
5290
5291
# File 'lib/kaltura_types.rb', line 5289

def command_status
  @command_status
end

#created_byObject

Creator name



5283
5284
5285
# File 'lib/kaltura_types.rb', line 5283

def created_by
  @created_by
end

#idObject

The id of the Category



5281
5282
5283
# File 'lib/kaltura_types.rb', line 5281

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5293
5294
5295
# File 'lib/kaltura_types.rb', line 5293

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5291
5292
5293
# File 'lib/kaltura_types.rb', line 5291

def scheduler_id
  @scheduler_id
end

#scheduler_nameObject

The name of the scheduler



5295
5296
5297
# File 'lib/kaltura_types.rb', line 5295

def scheduler_name
  @scheduler_name
end

#updated_byObject

Updater name



5285
5286
5287
# File 'lib/kaltura_types.rb', line 5285

def updated_by
  @updated_by
end

#valueObject

The value of the variable



5307
5308
5309
# File 'lib/kaltura_types.rb', line 5307

def value
  @value
end

#variableObject

The name of the variable



5303
5304
5305
# File 'lib/kaltura_types.rb', line 5303

def variable
  @variable
end

#variable_partObject

The part of the variable



5305
5306
5307
# File 'lib/kaltura_types.rb', line 5305

def variable_part
  @variable_part
end

#worker_configured_idObject

The configured id of the job worker



5299
5300
5301
# File 'lib/kaltura_types.rb', line 5299

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the job worker



5297
5298
5299
# File 'lib/kaltura_types.rb', line 5297

def worker_id
  @worker_id
end

#worker_nameObject

The name of the job worker



5301
5302
5303
# File 'lib/kaltura_types.rb', line 5301

def worker_name
  @worker_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
# File 'lib/kaltura_types.rb', line 5325

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