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



12014
12015
12016
# File 'lib/kaltura_types.rb', line 12014

def resources
  @resources
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



12017
12018
12019
12020
# File 'lib/kaltura_types.rb', line 12017

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