class documentation

class TLSConfig: (source)

View In Hierarchy

TLS configuration for connecting to Temporal server.

Class Variable client_cert Client certificate for mTLS.
Class Variable client_private_key Client private key for mTLS.
Class Variable domain TLS domain.
Class Variable server_root_ca_cert Root CA to validate the server certificate against.
Method _to_bridge_config Undocumented

Client certificate for mTLS.

This must be combined with client_private_key.

client_private_key: Optional[bytes] = (source)

Client private key for mTLS.

This must be combined with client_cert.

TLS domain.

server_root_ca_cert: Optional[bytes] = (source)

Root CA to validate the server certificate against.

Undocumented