cp_mgmt_api_python_sdk
cp_mgmt_api_python_sdk copied to clipboard
Check Point API Python Development Kit simplifies the use of the Check Point Management APIs.
Hello. How can I set the connection timeout? I don't see such a setting. The connection hangs if the api server is not available.
Hey folks, thanks for your great work! For our current project - I was wondering wether a login with certificates is possible? Looking forward to your answer, Kristof
Hi, I testing your sdk and there is a problem with API_key request. ``` def main(): api_server = "10.0.20.254" server_port = 8443 client_args = APIClientArgs(server=api_server, port=server_port) api_key="xxxxxxxxxxxxxxxxxx==" with APIClient(client_args) as...
Currently when using APIClient as context manager and an exception is raised, the session is closed but stays in the session list containing all changes and locks. I would like...