class Kaltura::KalturaRemoteStorageResource
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
storage_profile_id[RW]
ID of storage profile to be associated with the created file sync, used for file serving URL composing.
Public Instance Methods
from_xml(xml_element)
click to toggle source
Calls superclass method
Kaltura::KalturaUrlResource#from_xml
# File lib/kaltura_types.rb, line 8360 def from_xml(xml_element) super if xml_element.elements['storageProfileId'] != nil self.storage_profile_id = xml_element.elements['storageProfileId'].text end end
storage_profile_id=(val)
click to toggle source
# File lib/kaltura_types.rb, line 8356 def storage_profile_id=(val) @storage_profile_id = val.to_i end