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
12921 12922 12923 |
# File 'lib/kaltura_types.rb', line 12921 def live_packager_signing_domain @live_packager_signing_domain end |
#should_redirect ⇒ Object
Returns the value of attribute should_redirect.
12922 12923 12924 |
# File 'lib/kaltura_types.rb', line 12922 def should_redirect @should_redirect end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12928 12929 12930 12931 12932 12933 12934 12935 12936 |
# File 'lib/kaltura_types.rb', line 12928 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 |