Class: Kaltura::KalturaDeliveryProfileLivePackagerHls

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDeliveryProfileLivePackager

#live_packager_signing_domain

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

#disable_extra_attributesObject

Returns the value of attribute disable_extra_attributes.



16411
16412
16413
# File 'lib/kaltura_types.rb', line 16411

def disable_extra_attributes
  @disable_extra_attributes
end

#force_proxyObject

Returns the value of attribute force_proxy.



16412
16413
16414
# File 'lib/kaltura_types.rb', line 16412

def force_proxy
  @force_proxy
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16421
16422
16423
16424
16425
16426
16427
16428
16429
# File 'lib/kaltura_types.rb', line 16421

def from_xml(xml_element)
	super
	if xml_element.elements['disableExtraAttributes'] != nil
		self.disable_extra_attributes = xml_element.elements['disableExtraAttributes'].text
	end
	if xml_element.elements['forceProxy'] != nil
		self.force_proxy = xml_element.elements['forceProxy'].text
	end
end