Class: Kaltura::KalturaDeliveryServerNode

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

Instance Attribute Summary collapse

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

#configObject

Override server node default configuration - json format



12292
12293
12294
# File 'lib/kaltura_types.rb', line 12292

def config
  @config
end

#delivery_profile_idsObject

Delivery profile ids



12290
12291
12292
# File 'lib/kaltura_types.rb', line 12290

def delivery_profile_ids
  @delivery_profile_ids
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12295
12296
12297
12298
12299
12300
12301
12302
12303
# File 'lib/kaltura_types.rb', line 12295

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