Class: Kaltura::KalturaEdgeServerNode

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

Instance Attribute Summary collapse

Attributes inherited from KalturaDeliveryServerNode

#playback_domain

Attributes inherited from KalturaServerNode

#created_at, #dc, #description, #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

#configObject

Overdie edge server default configuration - json format



11330
11331
11332
# File 'lib/kaltura_types.rb', line 11330

def config
  @config
end

#delivery_profile_idsObject

Delivery profile ids



11327
11328
11329
# File 'lib/kaltura_types.rb', line 11327

def delivery_profile_ids
  @delivery_profile_ids
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



11333
11334
11335
11336
11337
# File 'lib/kaltura_types.rb', line 11333

def from_xml(xml_element)
	super
	self.delivery_profile_ids = KalturaClientBase.object_from_xml(xml_element.elements['deliveryProfileIds'], 'KalturaKeyValue')
	self.config = xml_element.elements['config'].text
end