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



17331
17332
17333
# File 'lib/kaltura_types.rb', line 17331

def resources
  @resources
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17334
17335
17336
17337
17338
17339
# File 'lib/kaltura_types.rb', line 17334

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