Class: Kaltura::KalturaDeliveryProfileGenericAppleHttp
- Inherits:
-
KalturaDeliveryProfile
- Object
- KalturaObjectBase
- KalturaDeliveryProfile
- Kaltura::KalturaDeliveryProfileGenericAppleHttp
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#manifest_redirect ⇒ Object
Enable to make playManifest redirect to the domain of the delivery profile.
-
#pattern ⇒ Object
Returns the value of attribute pattern.
-
#renderer_class ⇒ Object
rendererClass.
Attributes inherited from KalturaDeliveryProfile
#created_at, #description, #extra_params, #host_name, #id, #is_default, #media_protocols, #name, #parent_id, #partner_id, #priority, #recognizer, #status, #streamer_type, #supplementary_assets_filter, #system_name, #tokenizer, #type, #updated_at, #url
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#manifest_redirect ⇒ Object
Enable to make playManifest redirect to the domain of the delivery profile
12901 12902 12903 |
# File 'lib/kaltura_types.rb', line 12901 def manifest_redirect @manifest_redirect end |
#pattern ⇒ Object
Returns the value of attribute pattern.
12897 12898 12899 |
# File 'lib/kaltura_types.rb', line 12897 def pattern @pattern end |
#renderer_class ⇒ Object
rendererClass
12899 12900 12901 |
# File 'lib/kaltura_types.rb', line 12899 def renderer_class @renderer_class end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 |
# File 'lib/kaltura_types.rb', line 12907 def from_xml(xml_element) super if xml_element.elements['pattern'] != nil self.pattern = xml_element.elements['pattern'].text end if xml_element.elements['rendererClass'] != nil self.renderer_class = xml_element.elements['rendererClass'].text end if xml_element.elements['manifestRedirect'] != nil self.manifest_redirect = xml_element.elements['manifestRedirect'].text end end |