Class: Kaltura::KalturaDeliveryProfileLivePackager
- Inherits:
-
KalturaDeliveryProfile
- Object
- KalturaObjectBase
- KalturaDeliveryProfile
- Kaltura::KalturaDeliveryProfileLivePackager
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#live_packager_signing_domain ⇒ Object
Domain used to sign the live url.
-
#should_redirect ⇒ Object
Returns the value of attribute should_redirect.
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
#live_packager_signing_domain ⇒ Object
Domain used to sign the live url
13007 13008 13009 |
# File 'lib/kaltura_types.rb', line 13007 def live_packager_signing_domain @live_packager_signing_domain end |
#should_redirect ⇒ Object
Returns the value of attribute should_redirect.
13008 13009 13010 |
# File 'lib/kaltura_types.rb', line 13008 def should_redirect @should_redirect end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
13014 13015 13016 13017 13018 13019 13020 13021 13022 |
# File 'lib/kaltura_types.rb', line 13014 def from_xml(xml_element) super if xml_element.elements['livePackagerSigningDomain'] != nil self.live_packager_signing_domain = xml_element.elements['livePackagerSigningDomain'].text end if xml_element.elements['shouldRedirect'] != nil self.should_redirect = xml_element.elements['shouldRedirect'].text end end |