Class: Kaltura::KalturaIpAddressCondition
- Inherits:
-
KalturaMatchCondition
- Object
- KalturaObjectBase
- KalturaCondition
- KalturaMatchCondition
- Kaltura::KalturaIpAddressCondition
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#accept_internal_ips ⇒ Object
allow internal ips.
-
#http_header ⇒ Object
http header name for extracting the ip.
Attributes inherited from KalturaMatchCondition
Attributes inherited from KalturaCondition
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#accept_internal_ips ⇒ Object
allow internal ips
17821 17822 17823 |
# File 'lib/kaltura_types.rb', line 17821 def accept_internal_ips @accept_internal_ips end |
#http_header ⇒ Object
http header name for extracting the ip
17823 17824 17825 |
# File 'lib/kaltura_types.rb', line 17823 def http_header @http_header end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17829 17830 17831 17832 17833 17834 17835 17836 17837 |
# File 'lib/kaltura_types.rb', line 17829 def from_xml(xml_element) super if xml_element.elements['acceptInternalIps'] != nil self.accept_internal_ips = xml_element.elements['acceptInternalIps'].text end if xml_element.elements['httpHeader'] != nil self.http_header = xml_element.elements['httpHeader'].text end end |