- Overview
- TLSConfig
TLSConfig
Part of Configuration & authentication in the Python API reference.
Related guidance: getting-started/configuration, getting-started/authentication, security/credentials.
Runnable examples: preflight.py.
from picogrid_ecn_client import TLSConfigConfigure TLS transport and optional custom certificate authority material.
TLSConfig( *, enabled: bool = True, verify: bool = True, ca_certificate: CertificateMaterial | None = None,)Fields
Section titled “Fields”| Name | Type | Required | Default | Constraints | Description |
|---|---|---|---|---|---|
| enabled | bool | no | True | — | Whether TLS transport is enabled; defaults to true. |
| verify | bool | no | True | — | Whether TLS peer certificates are verified; defaults to true. |
| ca_certificate | CertificateMaterial | None | no | None | — | Optional custom certificate-authority material; requires TLS. |
Version 0.2.0 · branch main
