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



5218
5219
5220
# File 'lib/kaltura_types.rb', line 5218

def command_id
  @command_id
end

#command_statusObject

The status of the control panel command



5220
5221
5222
# File 'lib/kaltura_types.rb', line 5220

def command_status
  @command_status
end

#created_byObject

Creator name



5214
5215
5216
# File 'lib/kaltura_types.rb', line 5214

def created_by
  @created_by
end

#idObject

The id of the Category



5212
5213
5214
# File 'lib/kaltura_types.rb', line 5212

def id
  @id
end

#scheduler_configured_idObject

The configured id of the scheduler



5224
5225
5226
# File 'lib/kaltura_types.rb', line 5224

def scheduler_configured_id
  @scheduler_configured_id
end

#scheduler_idObject

The id of the scheduler



5222
5223
5224
# File 'lib/kaltura_types.rb', line 5222

def scheduler_id
  @scheduler_id
end

#scheduler_nameObject

The name of the scheduler



5226
5227
5228
# File 'lib/kaltura_types.rb', line 5226

def scheduler_name
  @scheduler_name
end

#updated_byObject

Updater name



5216
5217
5218
# File 'lib/kaltura_types.rb', line 5216

def updated_by
  @updated_by
end

#valueObject

The value of the variable



5238
5239
5240
# File 'lib/kaltura_types.rb', line 5238

def value
  @value
end

#variableObject

The name of the variable



5234
5235
5236
# File 'lib/kaltura_types.rb', line 5234

def variable
  @variable
end

#variable_partObject

The part of the variable



5236
5237
5238
# File 'lib/kaltura_types.rb', line 5236

def variable_part
  @variable_part
end

#worker_configured_idObject

The configured id of the job worker



5230
5231
5232
# File 'lib/kaltura_types.rb', line 5230

def worker_configured_id
  @worker_configured_id
end

#worker_idObject

The id of the job worker



5228
5229
5230
# File 'lib/kaltura_types.rb', line 5228

def worker_id
  @worker_id
end

#worker_nameObject

The name of the job worker



5232
5233
5234
# File 'lib/kaltura_types.rb', line 5232

def worker_name
  @worker_name
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
# File 'lib/kaltura_types.rb', line 5256

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