You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on github.com and signed with GitHub’s verified signature.
The key has expired.
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.