def deleteVersionLogs(connection, version): ''' This method is used to delete all logs of an IxLoad version. (all client logs for that version + all IxLoadRest logs for sessions that used that version) Args: - connection is the connection object that manages the HTTP data transfers between the client and the REST API - version is the version number of the IxLoad that will have its logs deleted (e.g. 8.50.0.1) ''' data = {'appVersion': version} performGenericOperation(connection, 'logs/operations/deleteVersionLogs', data)