From f445051a99a9b933e4b7ddf50ba82d477b3f74b1 Mon Sep 17 00:00:00 2001 From: Martin Levy Date: Wed, 13 Dec 2023 13:52:03 +0000 Subject: [PATCH] /live added - but does not response yet --- CloudFlare/api_v4.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CloudFlare/api_v4.py b/CloudFlare/api_v4.py index c131882..b4cfa2e 100644 --- a/CloudFlare/api_v4.py +++ b/CloudFlare/api_v4.py @@ -48,6 +48,9 @@ def api_v4(self): # The API commands for /ips/ ips(self) + # The API commands for /live/ + live(self) + # The API commands for /accounts/ accounts(self) accounts_access(self) @@ -269,6 +272,11 @@ def ips(self): self.add('OPEN', 'ips') +def live(self): + """ live """ + + self.add('AUTH', 'live') + def zones_argo(self): """ zones argo """ @@ -659,6 +667,7 @@ def accounts_extras(self): self.add('VOID', 'accounts', 'ai') self.add('AUTH', 'accounts', 'ai/run') + self.add('AUTH', 'accounts', 'ai/run/proxy') self.add('VOID', 'accounts', 'alerting') self.add('VOID', 'accounts', 'alerting/v3')