We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2058538 commit 4ae3329Copy full SHA for 4ae3329
1 file changed
zitadel_client/transport_options.py
@@ -7,10 +7,10 @@
7
class TransportOptions:
8
"""Immutable transport options for configuring HTTP connections.
9
10
- :param default_headers: Additional HTTP headers sent to the origin server with every request.
+ :param default_headers: Default HTTP headers sent to the origin server with every request.
11
:param ca_cert_path: Path to a custom CA certificate file for TLS verification.
12
- :param insecure: If True, disables TLS certificate verification.
13
- :param proxy_url: HTTP/HTTPS proxy URL to route requests through.
+ :param insecure: Whether to disable TLS certificate verification.
+ :param proxy_url: Proxy URL for HTTP connections.
14
"""
15
16
default_headers: Mapping[str, str] = field(default_factory=dict)
0 commit comments