class Kaltura::KalturaRemoteStorageResources

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.

Attributes

resources[RW]

Array of remote stoage resources

Public Instance Methods

from_xml(xml_element) click to toggle source
# File lib/kaltura_types.rb, line 18087
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