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



17393
17394
17395
# File 'lib/kaltura_types.rb', line 17393

def resources
  @resources
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17396
17397
17398
17399
17400
17401
# File 'lib/kaltura_types.rb', line 17396

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