class Kaltura::KalturaServerNodeBaseFilter
Attributes
created_at_greater_than_or_equal[RW]
created_at_less_than_or_equal[RW]
dc_equal[RW]
dc_in[RW]
environment_equal[RW]
environment_in[RW]
heartbeat_time_greater_than_or_equal[RW]
heartbeat_time_less_than_or_equal[RW]
host_name_like[RW]
host_name_multi_like_and[RW]
host_name_multi_like_or[RW]
id_equal[RW]
id_in[RW]
name_equal[RW]
name_in[RW]
parent_id_like[RW]
parent_id_multi_like_and[RW]
parent_id_multi_like_or[RW]
status_equal[RW]
status_in[RW]
system_name_equal[RW]
system_name_in[RW]
type_equal[RW]
type_in[RW]
updated_at_greater_than_or_equal[RW]
updated_at_less_than_or_equal[RW]
Public Instance Methods
created_at_greater_than_or_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14983 def created_at_greater_than_or_equal=(val) @created_at_greater_than_or_equal = val.to_i end
created_at_less_than_or_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14986 def created_at_less_than_or_equal=(val) @created_at_less_than_or_equal = val.to_i end
dc_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 15004 def dc_equal=(val) @dc_equal = val.to_i end
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaFilter#from_xml
# File lib/kaltura_types.rb, line 15008 def from_xml(xml_element) super if xml_element.elements['idEqual'] != nil self.id_equal = xml_element.elements['idEqual'].text end if xml_element.elements['idIn'] != nil self.id_in = xml_element.elements['idIn'].text end if xml_element.elements['createdAtGreaterThanOrEqual'] != nil self.created_at_greater_than_or_equal = xml_element.elements['createdAtGreaterThanOrEqual'].text end if xml_element.elements['createdAtLessThanOrEqual'] != nil self.created_at_less_than_or_equal = xml_element.elements['createdAtLessThanOrEqual'].text end if xml_element.elements['updatedAtGreaterThanOrEqual'] != nil self.updated_at_greater_than_or_equal = xml_element.elements['updatedAtGreaterThanOrEqual'].text end if xml_element.elements['updatedAtLessThanOrEqual'] != nil self.updated_at_less_than_or_equal = xml_element.elements['updatedAtLessThanOrEqual'].text end if xml_element.elements['heartbeatTimeGreaterThanOrEqual'] != nil self.heartbeat_time_greater_than_or_equal = xml_element.elements['heartbeatTimeGreaterThanOrEqual'].text end if xml_element.elements['heartbeatTimeLessThanOrEqual'] != nil self.heartbeat_time_less_than_or_equal = xml_element.elements['heartbeatTimeLessThanOrEqual'].text end if xml_element.elements['nameEqual'] != nil self.name_equal = xml_element.elements['nameEqual'].text end if xml_element.elements['nameIn'] != nil self.name_in = xml_element.elements['nameIn'].text end if xml_element.elements['systemNameEqual'] != nil self.system_name_equal = xml_element.elements['systemNameEqual'].text end if xml_element.elements['systemNameIn'] != nil self.system_name_in = xml_element.elements['systemNameIn'].text end if xml_element.elements['hostNameLike'] != nil self.host_name_like = xml_element.elements['hostNameLike'].text end if xml_element.elements['hostNameMultiLikeOr'] != nil self.host_name_multi_like_or = xml_element.elements['hostNameMultiLikeOr'].text end if xml_element.elements['hostNameMultiLikeAnd'] != nil self.host_name_multi_like_and = xml_element.elements['hostNameMultiLikeAnd'].text end if xml_element.elements['statusEqual'] != nil self.status_equal = xml_element.elements['statusEqual'].text end if xml_element.elements['statusIn'] != nil self.status_in = xml_element.elements['statusIn'].text end if xml_element.elements['typeEqual'] != nil self.type_equal = xml_element.elements['typeEqual'].text end if xml_element.elements['typeIn'] != nil self.type_in = xml_element.elements['typeIn'].text end if xml_element.elements['tagsLike'] != nil self.tags_like = xml_element.elements['tagsLike'].text end if xml_element.elements['tagsMultiLikeOr'] != nil self.tags_multi_like_or = xml_element.elements['tagsMultiLikeOr'].text end if xml_element.elements['tagsMultiLikeAnd'] != nil self.tags_multi_like_and = xml_element.elements['tagsMultiLikeAnd'].text end if xml_element.elements['dcEqual'] != nil self.dc_equal = xml_element.elements['dcEqual'].text end if xml_element.elements['dcIn'] != nil self.dc_in = xml_element.elements['dcIn'].text end if xml_element.elements['parentIdLike'] != nil self.parent_id_like = xml_element.elements['parentIdLike'].text end if xml_element.elements['parentIdMultiLikeOr'] != nil self.parent_id_multi_like_or = xml_element.elements['parentIdMultiLikeOr'].text end if xml_element.elements['parentIdMultiLikeAnd'] != nil self.parent_id_multi_like_and = xml_element.elements['parentIdMultiLikeAnd'].text end if xml_element.elements['environmentEqual'] != nil self.environment_equal = xml_element.elements['environmentEqual'].text end if xml_element.elements['environmentIn'] != nil self.environment_in = xml_element.elements['environmentIn'].text end end
heartbeat_time_greater_than_or_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14995 def heartbeat_time_greater_than_or_equal=(val) @heartbeat_time_greater_than_or_equal = val.to_i end
heartbeat_time_less_than_or_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14998 def heartbeat_time_less_than_or_equal=(val) @heartbeat_time_less_than_or_equal = val.to_i end
id_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14980 def id_equal=(val) @id_equal = val.to_i end
status_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 15001 def status_equal=(val) @status_equal = val.to_i end
updated_at_greater_than_or_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14989 def updated_at_greater_than_or_equal=(val) @updated_at_greater_than_or_equal = val.to_i end
updated_at_less_than_or_equal=(val)
click to toggle source
# File lib/kaltura_types.rb, line 14992 def updated_at_less_than_or_equal=(val) @updated_at_less_than_or_equal = val.to_i end