Class: Kaltura::KalturaConvertJobData

Inherits:
KalturaConvartableJobData show all
Defined in:
lib/kaltura_types.rb

Instance Attribute Summary collapse

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

#camelcase, #to_b, #to_params

Instance Attribute Details

#custom_dataObject

Returns the value of attribute custom_data.



16911
16912
16913
# File 'lib/kaltura_types.rb', line 16911

def custom_data
  @custom_data
end

#dest_file_sync_local_pathObject

Returns the value of attribute dest_file_sync_local_path.



16905
16906
16907
# File 'lib/kaltura_types.rb', line 16905

def dest_file_sync_local_path
  @dest_file_sync_local_path
end

#dest_file_sync_remote_urlObject

Returns the value of attribute dest_file_sync_remote_url.



16906
16907
16908
# File 'lib/kaltura_types.rb', line 16906

def dest_file_sync_remote_url
  @dest_file_sync_remote_url
end

#dest_file_sync_shared_pathObject

Returns the value of attribute dest_file_sync_shared_path.



16914
16915
16916
# File 'lib/kaltura_types.rb', line 16914

def dest_file_sync_shared_path
  @dest_file_sync_shared_path
end

#engine_messageObject

Returns the value of attribute engine_message.



16913
16914
16915
# File 'lib/kaltura_types.rb', line 16913

def engine_message
  @engine_message
end

#extra_dest_file_syncsObject

Returns the value of attribute extra_dest_file_syncs.



16912
16913
16914
# File 'lib/kaltura_types.rb', line 16912

def extra_dest_file_syncs
  @extra_dest_file_syncs
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



16909
16910
16911
# File 'lib/kaltura_types.rb', line 16909

def flavor_asset_id
  @flavor_asset_id
end

#log_file_sync_local_pathObject

Returns the value of attribute log_file_sync_local_path.



16907
16908
16909
# File 'lib/kaltura_types.rb', line 16907

def log_file_sync_local_path
  @log_file_sync_local_path
end

#log_file_sync_remote_urlObject

Returns the value of attribute log_file_sync_remote_url.



16908
16909
16910
# File 'lib/kaltura_types.rb', line 16908

def log_file_sync_remote_url
  @log_file_sync_remote_url
end

#remote_media_idObject

Returns the value of attribute remote_media_id.



16910
16911
16912
# File 'lib/kaltura_types.rb', line 16910

def remote_media_id
  @remote_media_id
end

#user_cpuObject

Returns the value of attribute user_cpu.



16915
16916
16917
# File 'lib/kaltura_types.rb', line 16915

def user_cpu
  @user_cpu
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



16921
16922
16923
16924
16925
16926
16927
16928
16929
16930
16931
16932
16933
16934
16935
16936
16937
16938
16939
16940
16941
16942
16943
16944
16945
16946
16947
16948
16949
16950
16951
16952
16953
16954
16955
16956
# File 'lib/kaltura_types.rb', line 16921

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.engine_message = 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