Class: Kaltura::KalturaIndexJobData

Inherits:
KalturaJobData 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

#filterObject

The filter should return the list of objects that need to be reindexed.



13251
13252
13253
# File 'lib/kaltura_types.rb', line 13251

def filter
  @filter
end

#last_index_depthObject

Indicates the last depth that reindexed, used when the batch crached, to re-run from the last crash point.



13255
13256
13257
# File 'lib/kaltura_types.rb', line 13255

def last_index_depth
  @last_index_depth
end

#last_index_idObject

Indicates the last id that reindexed, used when the batch crached, to re-run from the last crash point.



13253
13254
13255
# File 'lib/kaltura_types.rb', line 13253

def last_index_id
  @last_index_id
end

#should_updateObject

Indicates that the object columns and attributes values should be recalculated before reindexed.



13257
13258
13259
# File 'lib/kaltura_types.rb', line 13257

def should_update
  @should_update
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



13269
13270
13271
13272
13273
13274
13275
13276
13277
13278
13279
13280
13281
13282
13283
# File 'lib/kaltura_types.rb', line 13269

def from_xml(xml_element)
	super
	if xml_element.elements['filter'] != nil
		self.filter = KalturaClientBase.object_from_xml(xml_element.elements['filter'], 'KalturaFilter')
	end
	if xml_element.elements['lastIndexId'] != nil
		self.last_index_id = xml_element.elements['lastIndexId'].text
	end
	if xml_element.elements['lastIndexDepth'] != nil
		self.last_index_depth = xml_element.elements['lastIndexDepth'].text
	end
	if xml_element.elements['shouldUpdate'] != nil
		self.should_update = xml_element.elements['shouldUpdate'].text
	end
end