diff options
| author | eduardormorais <eduardoromorais@gmail.com> | 2025-08-29 14:05:11 -0300 |
|---|---|---|
| committer | eduardormorais <eduardoromorais@gmail.com> | 2025-08-29 14:05:11 -0300 |
| commit | 27a1362ff964d39c2f91f226d7453b65567df6bd (patch) | |
| tree | 379b347c8a9bc34707f8975961c9c7ce63a26593 | |
| parent | 33cbb56d994a523c5a68f037aed0912fea08fa4d (diff) | |
| download | pyvyos-27a1362ff964d39c2f91f226d7453b65567df6bd.tar.gz pyvyos-27a1362ff964d39c2f91f226d7453b65567df6bd.zip | |
Fix - Updating docs rest client
| -rw-r--r-- | pyvyos/rest.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/pyvyos/rest.py b/pyvyos/rest.py index 22b95d5..db04a17 100644 --- a/pyvyos/rest.py +++ b/pyvyos/rest.py @@ -33,7 +33,7 @@ class ApiResponse: class RestClient(ABC): - """Client REST seguro para integração com APIs de dispositivos VyOS""" + """Secure REST client for integration with VyOS device APIs""" def __init__( self, @@ -46,12 +46,12 @@ class RestClient(ABC): ): """ Args: - hostname: Endereço do dispositivo VyOS - apikey: Chave de API para autenticação - protocol: Protocolo (http/https) - port: Porta de acesso - verify: Verificar certificados SSL - timeout: Timeout de requisição em segundos + hostname: VyOS device address + apikey: API key for authentication + protocol: Protocol (http/https) + port: Access port + verify: Verify SSL certificates + timeout: Request timeout in seconds """ super().__init__() self.hostname = hostname |
