Class: Kaltura::KalturaConvartableJobData
- Inherits:
-
KalturaJobData
- Object
- KalturaObjectBase
- KalturaJobData
- Kaltura::KalturaConvartableJobData
- Defined in:
- lib/kaltura_types.rb
Direct Known Subclasses
KalturaConvertCollectionJobData, KalturaConvertJobData, KalturaExtractMediaJobData, KalturaPostConvertJobData
Instance Attribute Summary collapse
-
#actual_src_file_sync_local_path ⇒ Object
The translated path as used by the scheduler.
-
#current_operation_index ⇒ Object
Returns the value of attribute current_operation_index.
-
#current_operation_set ⇒ Object
Returns the value of attribute current_operation_set.
-
#engine_version ⇒ Object
Returns the value of attribute engine_version.
-
#flavor_params_output ⇒ Object
Returns the value of attribute flavor_params_output.
-
#flavor_params_output_id ⇒ Object
Returns the value of attribute flavor_params_output_id.
-
#media_info_id ⇒ Object
Returns the value of attribute media_info_id.
-
#plugin_data ⇒ Object
Returns the value of attribute plugin_data.
-
#src_file_sync_local_path ⇒ Object
Returns the value of attribute src_file_sync_local_path.
-
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
-
#src_file_syncs ⇒ Object
Returns the value of attribute src_file_syncs.
Attributes inherited from KalturaObjectBase
#object_type, #related_objects
Instance Method Summary collapse
Methods inherited from KalturaObjectBase
Instance Attribute Details
#actual_src_file_sync_local_path ⇒ Object
The translated path as used by the scheduler
12098 12099 12100 |
# File 'lib/kaltura_types.rb', line 12098 def actual_src_file_sync_local_path @actual_src_file_sync_local_path end |
#current_operation_index ⇒ Object
Returns the value of attribute current_operation_index.
12106 12107 12108 |
# File 'lib/kaltura_types.rb', line 12106 def current_operation_index @current_operation_index end |
#current_operation_set ⇒ Object
Returns the value of attribute current_operation_set.
12105 12106 12107 |
# File 'lib/kaltura_types.rb', line 12105 def current_operation_set @current_operation_set end |
#engine_version ⇒ Object
Returns the value of attribute engine_version.
12101 12102 12103 |
# File 'lib/kaltura_types.rb', line 12101 def engine_version @engine_version end |
#flavor_params_output ⇒ Object
Returns the value of attribute flavor_params_output.
12103 12104 12105 |
# File 'lib/kaltura_types.rb', line 12103 def flavor_params_output @flavor_params_output end |
#flavor_params_output_id ⇒ Object
Returns the value of attribute flavor_params_output_id.
12102 12103 12104 |
# File 'lib/kaltura_types.rb', line 12102 def flavor_params_output_id @flavor_params_output_id end |
#media_info_id ⇒ Object
Returns the value of attribute media_info_id.
12104 12105 12106 |
# File 'lib/kaltura_types.rb', line 12104 def media_info_id @media_info_id end |
#plugin_data ⇒ Object
Returns the value of attribute plugin_data.
12107 12108 12109 |
# File 'lib/kaltura_types.rb', line 12107 def plugin_data @plugin_data end |
#src_file_sync_local_path ⇒ Object
Returns the value of attribute src_file_sync_local_path.
12096 12097 12098 |
# File 'lib/kaltura_types.rb', line 12096 def src_file_sync_local_path @src_file_sync_local_path end |
#src_file_sync_remote_url ⇒ Object
Returns the value of attribute src_file_sync_remote_url.
12099 12100 12101 |
# File 'lib/kaltura_types.rb', line 12099 def src_file_sync_remote_url @src_file_sync_remote_url end |
#src_file_syncs ⇒ Object
Returns the value of attribute src_file_syncs.
12100 12101 12102 |
# File 'lib/kaltura_types.rb', line 12100 def src_file_syncs @src_file_syncs end |
Instance Method Details
#from_xml(xml_element) ⇒ Object
12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 |
# File 'lib/kaltura_types.rb', line 12125 def from_xml(xml_element) super if xml_element.elements['srcFileSyncLocalPath'] != nil self.src_file_sync_local_path = xml_element.elements['srcFileSyncLocalPath'].text end if xml_element.elements['actualSrcFileSyncLocalPath'] != nil self.actual_src_file_sync_local_path = xml_element.elements['actualSrcFileSyncLocalPath'].text end if xml_element.elements['srcFileSyncRemoteUrl'] != nil self.src_file_sync_remote_url = xml_element.elements['srcFileSyncRemoteUrl'].text end if xml_element.elements['srcFileSyncs'] != nil self.src_file_syncs = KalturaClientBase.object_from_xml(xml_element.elements['srcFileSyncs'], 'KalturaSourceFileSyncDescriptor') end if xml_element.elements['engineVersion'] != nil self.engine_version = xml_element.elements['engineVersion'].text end if xml_element.elements['flavorParamsOutputId'] != nil self.flavor_params_output_id = xml_element.elements['flavorParamsOutputId'].text end if xml_element.elements['flavorParamsOutput'] != nil self.flavor_params_output = KalturaClientBase.object_from_xml(xml_element.elements['flavorParamsOutput'], 'KalturaFlavorParamsOutput') end if xml_element.elements['mediaInfoId'] != nil self.media_info_id = xml_element.elements['mediaInfoId'].text end if xml_element.elements['currentOperationSet'] != nil self.current_operation_set = xml_element.elements['currentOperationSet'].text end if xml_element.elements['currentOperationIndex'] != nil self.current_operation_index = xml_element.elements['currentOperationIndex'].text end if xml_element.elements['pluginData'] != nil self.plugin_data = KalturaClientBase.object_from_xml(xml_element.elements['pluginData'], 'KalturaKeyValue') end end |