Class: Kaltura::KalturaConvertJobData
- Inherits:
-
KalturaConvartableJobData
- Object
- KalturaObjectBase
- KalturaJobData
- KalturaConvartableJobData
- Kaltura::KalturaConvertJobData
- Defined in:
- lib/kaltura_types.rb
Instance Attribute Summary collapse
-
#custom_data ⇒ Object
Returns the value of attribute custom_data.
-
#dest_file_sync_local_path ⇒ Object
Returns the value of attribute dest_file_sync_local_path.
-
#dest_file_sync_remote_url ⇒ Object
Returns the value of attribute dest_file_sync_remote_url.
-
#dest_file_sync_shared_path ⇒ Object
Returns the value of attribute dest_file_sync_shared_path.
-
#engine_message ⇒ Object
Returns the value of attribute engine_message.
-
#extra_dest_file_syncs ⇒ Object
Returns the value of attribute extra_dest_file_syncs.
-
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
-
#log_file_sync_local_path ⇒ Object
Returns the value of attribute log_file_sync_local_path.
-
#log_file_sync_remote_url ⇒ Object
Returns the value of attribute log_file_sync_remote_url.
-
#remote_media_id ⇒ Object
Returns the value of attribute remote_media_id.
-
#user_cpu ⇒ Object
Returns the value of attribute user_cpu.
Attributes inherited from KalturaConvartableJobData
#actual_src_file_sync_local_path, #current_operation_index, #current_operation_set, #engine_version, #flavor_params_output, #flavor_params_output_id, #media_info_id, #plugin_data, #src_file_sync_local_path, #src_file_sync_remote_url, #src_file_syncs
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#custom_data ⇒ Object
Returns the value of attribute custom_data.
17011 17012 17013 |
# File 'lib/kaltura_types.rb', line 17011 def custom_data @custom_data end |
#dest_file_sync_local_path ⇒ Object
Returns the value of attribute dest_file_sync_local_path.
17005 17006 17007 |
# File 'lib/kaltura_types.rb', line 17005 def dest_file_sync_local_path @dest_file_sync_local_path end |
#dest_file_sync_remote_url ⇒ Object
Returns the value of attribute dest_file_sync_remote_url.
17006 17007 17008 |
# File 'lib/kaltura_types.rb', line 17006 def dest_file_sync_remote_url @dest_file_sync_remote_url end |
#dest_file_sync_shared_path ⇒ Object
Returns the value of attribute dest_file_sync_shared_path.
17014 17015 17016 |
# File 'lib/kaltura_types.rb', line 17014 def dest_file_sync_shared_path @dest_file_sync_shared_path end |
#engine_message ⇒ Object
Returns the value of attribute engine_message.
17013 17014 17015 |
# File 'lib/kaltura_types.rb', line 17013 def end |
#extra_dest_file_syncs ⇒ Object
Returns the value of attribute extra_dest_file_syncs.
17012 17013 17014 |
# File 'lib/kaltura_types.rb', line 17012 def extra_dest_file_syncs @extra_dest_file_syncs end |
#flavor_asset_id ⇒ Object
Returns the value of attribute flavor_asset_id.
17009 17010 17011 |
# File 'lib/kaltura_types.rb', line 17009 def flavor_asset_id @flavor_asset_id end |
#log_file_sync_local_path ⇒ Object
Returns the value of attribute log_file_sync_local_path.
17007 17008 17009 |
# File 'lib/kaltura_types.rb', line 17007 def log_file_sync_local_path @log_file_sync_local_path end |
#log_file_sync_remote_url ⇒ Object
Returns the value of attribute log_file_sync_remote_url.
17008 17009 17010 |
# File 'lib/kaltura_types.rb', line 17008 def log_file_sync_remote_url @log_file_sync_remote_url end |
#remote_media_id ⇒ Object
Returns the value of attribute remote_media_id.
17010 17011 17012 |
# File 'lib/kaltura_types.rb', line 17010 def remote_media_id @remote_media_id end |
#user_cpu ⇒ Object
Returns the value of attribute user_cpu.
17015 17016 17017 |
# File 'lib/kaltura_types.rb', line 17015 def user_cpu @user_cpu end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 |
# File 'lib/kaltura_types.rb', line 17021 def from_xml(xml_element) super if xml_element.elements['destFileSyncLocalPath'] != nil self.dest_file_sync_local_path = xml_element.elements['destFileSyncLocalPath'].text end if xml_element.elements['destFileSyncRemoteUrl'] != nil self.dest_file_sync_remote_url = xml_element.elements['destFileSyncRemoteUrl'].text end if xml_element.elements['logFileSyncLocalPath'] != nil self.log_file_sync_local_path = xml_element.elements['logFileSyncLocalPath'].text end if xml_element.elements['logFileSyncRemoteUrl'] != nil self.log_file_sync_remote_url = xml_element.elements['logFileSyncRemoteUrl'].text end if xml_element.elements['flavorAssetId'] != nil self.flavor_asset_id = xml_element.elements['flavorAssetId'].text end if xml_element.elements['remoteMediaId'] != nil self.remote_media_id = xml_element.elements['remoteMediaId'].text end if xml_element.elements['customData'] != nil self.custom_data = xml_element.elements['customData'].text end if xml_element.elements['extraDestFileSyncs'] != nil self.extra_dest_file_syncs = KalturaClientBase.object_from_xml(xml_element.elements['extraDestFileSyncs'], 'KalturaDestFileSyncDescriptor') end if xml_element.elements['engineMessage'] != nil self. = xml_element.elements['engineMessage'].text end if xml_element.elements['destFileSyncSharedPath'] != nil self.dest_file_sync_shared_path = xml_element.elements['destFileSyncSharedPath'].text end if xml_element.elements['userCpu'] != nil self.user_cpu = xml_element.elements['userCpu'].text end end |