Skip to content

v1.24.0

Compare
Choose a tag to compare
@timabrmsn timabrmsn released this 03 Jun 13:33
· 23 commits to main since this release
53a9178

1.24.0 - 2022-06-03

Added

  • Support for V2 file event data.
    • Use queries built with V2 filters by importing the appropriate modules with from py42.sdk.queries.fileevents.v2 import *. Documentation is available for all V2 filter terms.
    • The following functions will now use V2 apis for searching file events if sent a V2 query object:
      • securitydata.search_file_events()
      • securitydata.search_all_file_events()
    • All saved search methods now have an optional use_v2=False argument. Set use_v2=True to opt into using the V2 saved search APIs. The following methods now accept this arg:
      • securitydata.savedsearches.get()
      • securitydata.savedsearches.get_by_id()
      • securitydata.savedsearches.get_query()
      • securitydata.savedsearches.execute()
      • securitydata.savedsearches.search_file_events()

Fixed

  • A bug where sdk.watchlists.add_included_users_by_watchlist_type() and sdk.watchlists.delete_included_users_by_watchlist_type() were not returning the response object.