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.



17189
17190
17191
# File 'lib/kaltura_types.rb', line 17189

def custom_data
  @custom_data
end

#dest_file_sync_local_pathObject

Returns the value of attribute dest_file_sync_local_path.



17183
17184
17185
# File 'lib/kaltura_types.rb', line 17183

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.



17184
17185
17186
# File 'lib/kaltura_types.rb', line 17184

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.



17192
17193
17194
# File 'lib/kaltura_types.rb', line 17192

def dest_file_sync_shared_path
  @dest_file_sync_shared_path
end

#engine_messageObject

Returns the value of attribute engine_message.



17191
17192
17193
# File 'lib/kaltura_types.rb', line 17191

def engine_message
  @engine_message
end

#estimated_effortObject

Returns the value of attribute estimated_effort.



17194
17195
17196
# File 'lib/kaltura_types.rb', line 17194

def estimated_effort
  @estimated_effort
end

#extra_dest_file_syncsObject

Returns the value of attribute extra_dest_file_syncs.



17190
17191
17192
# File 'lib/kaltura_types.rb', line 17190

def extra_dest_file_syncs
  @extra_dest_file_syncs
end

#flavor_asset_idObject

Returns the value of attribute flavor_asset_id.



17187
17188
17189
# File 'lib/kaltura_types.rb', line 17187

def flavor_asset_id
  @flavor_asset_id
end

#log_file_sync_local_pathObject

Returns the value of attribute log_file_sync_local_path.



17185
17186
17187
# File 'lib/kaltura_types.rb', line 17185

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.



17186
17187
17188
# File 'lib/kaltura_types.rb', line 17186

def log_file_sync_remote_url
  @log_file_sync_remote_url
end

#remote_media_idObject

Returns the value of attribute remote_media_id.



17188
17189
17190
# File 'lib/kaltura_types.rb', line 17188

def remote_media_id
  @remote_media_id
end

#user_cpuObject

Returns the value of attribute user_cpu.



17193
17194
17195
# File 'lib/kaltura_types.rb', line 17193

def user_cpu
  @user_cpu
end

Instance Method Details

#from_xml(xml_element) ⇒ Object



17203
17204
17205
17206
17207
17208
17209
17210
17211
17212
17213
17214
17215
17216
17217
17218
17219
17220
17221
17222
17223
17224
17225
17226
17227
17228
17229
17230
17231
17232
17233
17234
17235
17236
17237
17238
17239
17240
17241
# File 'lib/kaltura_types.rb', line 17203

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
	if xml_element.elements['estimatedEffort'] != nil
		self.estimated_effort = xml_element.elements['estimatedEffort'].text
	end
end