This PR adds the following operations to the Classic API client:
create_advanced_computer_search()
list_all_advanced_computer_searches()
get_advanced_computer_search_by_id()
update_advanced_computer_search_by_id()
delete_advanced_computer_search_by_id()
list_all_categories()
get_category_by_id()
The update_advanced_computer_search_by_id operation has added feature for return_updated. This boolean flag (defaults to False) will control if an immediate call to the get_advanced_computer_search_by_id is performed after the update returning new results for the potential changes to search criteria. A handy shortcut pattern that could be re-used in other areas of the SDK.
Also included in this PR are various doc/docstring fixes and a new change log that will be used for tracking features across released versions of the SDK to PyPI.
This PR adds the following operations to the Classic API client:
create_advanced_computer_search()
list_all_advanced_computer_searches()
get_advanced_computer_search_by_id()
update_advanced_computer_search_by_id()
delete_advanced_computer_search_by_id()
list_all_categories()
get_category_by_id()
The
update_advanced_computer_search_by_id
operation has added feature forreturn_updated
. This boolean flag (defaults toFalse
) will control if an immediate call to theget_advanced_computer_search_by_id
is performed after the update returning new results for the potential changes to search criteria. A handy shortcut pattern that could be re-used in other areas of the SDK.Also included in this PR are various doc/docstring fixes and a new change log that will be used for tracking features across released versions of the SDK to PyPI.