Class: Kaltura::KalturaRemoteStorageResource
- Inherits:
-
KalturaUrlResource
- Object
- KalturaObjectBase
- KalturaResource
- KalturaContentResource
- KalturaUrlResource
- Kaltura::KalturaRemoteStorageResource
- 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
-
#storage_profile_id ⇒ Object
ID of storage profile to be associated with the created file sync, used for file serving URL composing.
Attributes inherited from KalturaUrlResource
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#storage_profile_id ⇒ Object
ID of storage profile to be associated with the created file sync, used for file serving URL composing.
8031 8032 8033 |
# File 'lib/kaltura_types.rb', line 8031 def storage_profile_id @storage_profile_id end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
8037 8038 8039 8040 8041 8042 |
# File 'lib/kaltura_types.rb', line 8037 def from_xml(xml_element) super if xml_element.elements['storageProfileId'] != nil self.storage_profile_id = xml_element.elements['storageProfileId'].text end end |