Class: Kaltura::KalturaEdgeServerNode

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDeliveryServerNode

#config, #delivery_profile_ids

Attributes inherited from KalturaServerNode

#created_at, #dc, #description, #environment, #heartbeat_time, #host_name, #id, #name, #parent_id, #partner_id, #status, #system_name, #tags, #type, #updated_at

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#playback_domainObject

Delivery server playback Domain



16451
16452
16453
# File 'lib/kaltura_types.rb', line 16451

def playback_domain
  @playback_domain
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16454
16455
16456
16457
16458
16459
# File 'lib/kaltura_types.rb', line 16454

def from_xml(xml_element)
	super
	if xml_element.elements['playbackDomain'] != nil
		self.playback_domain = xml_element.elements['playbackDomain'].text
	end
end