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



5261
5262
5263
# File 'lib/kaltura_types.rb', line 5261

def command_id
  @command_id
end

#command_statusObject

The status of the control panel command



5264
5265
5266
# File 'lib/kaltura_types.rb', line 5264

def command_status
  @command_status
end

#created_byObject

Creator name



5255
5256
5257
# File 'lib/kaltura_types.rb', line 5255

def created_by
  @created_by
end

#idObject

The id of the Category



5252
5253
5254
# File 'lib/kaltura_types.rb', line 5252

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5270
5271
5272
# File 'lib/kaltura_types.rb', line 5270

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5267
5268
5269
# File 'lib/kaltura_types.rb', line 5267

def scheduler_id
  @scheduler_id
end

#scheduler_nameObject

The name of the scheduler



5273
5274
5275
# File 'lib/kaltura_types.rb', line 5273

def scheduler_name
  @scheduler_name
end

#updated_byObject

Updater name



5258
5259
5260
# File 'lib/kaltura_types.rb', line 5258

def updated_by
  @updated_by
end

#valueObject

The value of the variable



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

def value
  @value
end

#variableObject

The name of the variable



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

def variable
  @variable
end

#variable_partObject

The part of the variable



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

def variable_part
  @variable_part
end

#worker_configured_idObject

The configured id of the job worker



5279
5280
5281
# File 'lib/kaltura_types.rb', line 5279

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the job worker



5276
5277
5278
# File 'lib/kaltura_types.rb', line 5276

def worker_id
  @worker_id
end

#worker_nameObject

The name of the job worker



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

def worker_name
  @worker_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
# File 'lib/kaltura_types.rb', line 5309

def from_xml(xml_element)
	super
	self.id = xml_element.elements['id'].text
	self.created_by = xml_element.elements['createdBy'].text
	self.updated_by = xml_element.elements['updatedBy'].text
	self.command_id = xml_element.elements['commandId'].text
	self.command_status = xml_element.elements['commandStatus'].text
	self.scheduler_id = xml_element.elements['schedulerId'].text
	self.scheduler_configured_id = xml_element.elements['schedulerConfiguredId'].text
	self.scheduler_name = xml_element.elements['schedulerName'].text
	self.worker_id = xml_element.elements['workerId'].text
	self.worker_configured_id = xml_element.elements['workerConfiguredId'].text
	self.worker_name = xml_element.elements['workerName'].text
	self.variable = xml_element.elements['variable'].text
	self.variable_part = xml_element.elements['variablePart'].text
	self.value = xml_element.elements['value'].text
end