MCPcopy Create free account
hub / github.com/prometheus/common / TLSRoundTripperSettings

Struct TLSRoundTripperSettings

config/http_config.go:1489–1493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1487}
1488
1489type TLSRoundTripperSettings struct {
1490 CA SecretReader
1491 Cert SecretReader
1492 Key SecretReader
1493}
1494
1495func (t *TLSRoundTripperSettings) immutable() bool {
1496 return (t.CA == nil || t.CA.Immutable()) && (t.Cert == nil || t.Cert.Immutable()) && (t.Key == nil || t.Key.Immutable())

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected