Class: Kaltura::KalturaDeliveryProfileLivePackager

Inherits:
KalturaDeliveryProfile show all
Defined in:
lib/kaltura_types.rb

Direct Known Subclasses

KalturaDeliveryProfileLivePackagerHls

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#live_packager_signing_domainObject

Domain used to sign the live url



12893
12894
12895
# File 'lib/kaltura_types.rb', line 12893

def live_packager_signing_domain
  @live_packager_signing_domain
end

#should_redirectObject

Returns the value of attribute should_redirect.



12894
12895
12896
# File 'lib/kaltura_types.rb', line 12894

def should_redirect
  @should_redirect
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12900
12901
12902
12903
12904
12905
12906
12907
12908
# File 'lib/kaltura_types.rb', line 12900

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