Class: Kaltura::KalturaRemoteStorageResources

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

Overview

Used to ingest media that is available on remote server and accessible using the supplied URL, the media file won’t be downloaded but a file sync object of URL type will point to the media URL.

Instance Attribute Summary collapse

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#resourcesObject

Array of remote stoage resources



18237
18238
18239
# File 'lib/kaltura_types.rb', line 18237

def resources
  @resources
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18240
18241
18242
18243
18244
18245
# File 'lib/kaltura_types.rb', line 18240

def from_xml(xml_element)
	super
	if xml_element.elements['resources'] != nil
		self.resources = KalturaClientBase.object_from_xml(xml_element.elements['resources'], 'KalturaRemoteStorageResource')
	end
end