Class: Kaltura::KalturaRemoteStorageResource

Inherits:
KalturaUrlResource 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 KalturaUrlResource

#force_async_download, #url

Attributes inherited from KalturaObjectBase

#object_type, #related_objects

Instance Method Summary collapse

Methods inherited from KalturaObjectBase

#camelcase, #to_b, #to_params

Instance Attribute Details

#storage_profile_idObject

ID of storage profile to be associated with the created file sync, used for file serving URL composing.



8042
8043
8044
# File 'lib/kaltura_types.rb', line 8042

def storage_profile_id
  @storage_profile_id
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



8048
8049
8050
8051
8052
8053
# File 'lib/kaltura_types.rb', line 8048

def from_xml(xml_element)
	super
	if xml_element.elements['storageProfileId'] != nil
		self.storage_profile_id = xml_element.elements['storageProfileId'].text
	end
end