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. Setuse_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()
- Use queries built with V2 filters by importing the appropriate modules with
Fixed
- A bug where
sdk.watchlists.add_included_users_by_watchlist_type()
andsdk.watchlists.delete_included_users_by_watchlist_type()
were not returning the response object.