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



18378
18379
18380
# File 'lib/kaltura_types.rb', line 18378

def resources
  @resources
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



18381
18382
18383
18384
18385
18386
# File 'lib/kaltura_types.rb', line 18381

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