Class TLSProperties

java.lang.Object
com.google.protobuf.AbstractMessageLite
com.google.protobuf.AbstractMessage
com.google.protobuf.GeneratedMessage
io.envoyproxy.envoy.data.accesslog.v3.TLSProperties
All Implemented Interfaces:
com.google.protobuf.Message, com.google.protobuf.MessageLite, com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder, TLSPropertiesOrBuilder, Serializable

public final class TLSProperties extends com.google.protobuf.GeneratedMessage implements TLSPropertiesOrBuilder
 Properties of a negotiated TLS connection.
 [#next-free-field: 8]
 
Protobuf type envoy.data.accesslog.v3.TLSProperties
See Also:
  • Field Details

    • serialVersionUID

      private static final long serialVersionUID
      See Also:
    • bitField0_

      private int bitField0_
    • TLS_VERSION_FIELD_NUMBER

      public static final int TLS_VERSION_FIELD_NUMBER
      See Also:
    • tlsVersion_

      private int tlsVersion_
    • TLS_CIPHER_SUITE_FIELD_NUMBER

      public static final int TLS_CIPHER_SUITE_FIELD_NUMBER
      See Also:
    • tlsCipherSuite_

      private com.google.protobuf.UInt32Value tlsCipherSuite_
    • TLS_SNI_HOSTNAME_FIELD_NUMBER

      public static final int TLS_SNI_HOSTNAME_FIELD_NUMBER
      See Also:
    • tlsSniHostname_

      private volatile Object tlsSniHostname_
    • LOCAL_CERTIFICATE_PROPERTIES_FIELD_NUMBER

      public static final int LOCAL_CERTIFICATE_PROPERTIES_FIELD_NUMBER
      See Also:
    • localCertificateProperties_

      private TLSProperties.CertificateProperties localCertificateProperties_
    • PEER_CERTIFICATE_PROPERTIES_FIELD_NUMBER

      public static final int PEER_CERTIFICATE_PROPERTIES_FIELD_NUMBER
      See Also:
    • peerCertificateProperties_

      private TLSProperties.CertificateProperties peerCertificateProperties_
    • TLS_SESSION_ID_FIELD_NUMBER

      public static final int TLS_SESSION_ID_FIELD_NUMBER
      See Also:
    • tlsSessionId_

      private volatile Object tlsSessionId_
    • JA3_FINGERPRINT_FIELD_NUMBER

      public static final int JA3_FINGERPRINT_FIELD_NUMBER
      See Also:
    • ja3Fingerprint_

      private volatile Object ja3Fingerprint_
    • memoizedIsInitialized

      private byte memoizedIsInitialized
    • DEFAULT_INSTANCE

      private static final TLSProperties DEFAULT_INSTANCE
    • PARSER

      private static final com.google.protobuf.Parser<TLSProperties> PARSER
  • Constructor Details

    • TLSProperties

      private TLSProperties(com.google.protobuf.GeneratedMessage.Builder<?> builder)
    • TLSProperties

      private TLSProperties()
  • Method Details

    • getDescriptor

      public static final com.google.protobuf.Descriptors.Descriptor getDescriptor()
    • internalGetFieldAccessorTable

      protected com.google.protobuf.GeneratedMessage.FieldAccessorTable internalGetFieldAccessorTable()
      Specified by:
      internalGetFieldAccessorTable in class com.google.protobuf.GeneratedMessage
    • getTlsVersionValue

      public int getTlsVersionValue()
       Version of TLS that was negotiated.
       
      .envoy.data.accesslog.v3.TLSProperties.TLSVersion tls_version = 1;
      Specified by:
      getTlsVersionValue in interface TLSPropertiesOrBuilder
      Returns:
      The enum numeric value on the wire for tlsVersion.
    • getTlsVersion

      public TLSProperties.TLSVersion getTlsVersion()
       Version of TLS that was negotiated.
       
      .envoy.data.accesslog.v3.TLSProperties.TLSVersion tls_version = 1;
      Specified by:
      getTlsVersion in interface TLSPropertiesOrBuilder
      Returns:
      The tlsVersion.
    • hasTlsCipherSuite

      public boolean hasTlsCipherSuite()
       TLS cipher suite negotiated during handshake. The value is a
       four-digit hex code defined by the IANA TLS Cipher Suite Registry
       (e.g. ``009C`` for ``TLS_RSA_WITH_AES_128_GCM_SHA256``).
      
       Here it is expressed as an integer.
       
      .google.protobuf.UInt32Value tls_cipher_suite = 2;
      Specified by:
      hasTlsCipherSuite in interface TLSPropertiesOrBuilder
      Returns:
      Whether the tlsCipherSuite field is set.
    • getTlsCipherSuite

      public com.google.protobuf.UInt32Value getTlsCipherSuite()
       TLS cipher suite negotiated during handshake. The value is a
       four-digit hex code defined by the IANA TLS Cipher Suite Registry
       (e.g. ``009C`` for ``TLS_RSA_WITH_AES_128_GCM_SHA256``).
      
       Here it is expressed as an integer.
       
      .google.protobuf.UInt32Value tls_cipher_suite = 2;
      Specified by:
      getTlsCipherSuite in interface TLSPropertiesOrBuilder
      Returns:
      The tlsCipherSuite.
    • getTlsCipherSuiteOrBuilder

      public com.google.protobuf.UInt32ValueOrBuilder getTlsCipherSuiteOrBuilder()
       TLS cipher suite negotiated during handshake. The value is a
       four-digit hex code defined by the IANA TLS Cipher Suite Registry
       (e.g. ``009C`` for ``TLS_RSA_WITH_AES_128_GCM_SHA256``).
      
       Here it is expressed as an integer.
       
      .google.protobuf.UInt32Value tls_cipher_suite = 2;
      Specified by:
      getTlsCipherSuiteOrBuilder in interface TLSPropertiesOrBuilder
    • getTlsSniHostname

      public String getTlsSniHostname()
       SNI hostname from handshake.
       
      string tls_sni_hostname = 3;
      Specified by:
      getTlsSniHostname in interface TLSPropertiesOrBuilder
      Returns:
      The tlsSniHostname.
    • getTlsSniHostnameBytes

      public com.google.protobuf.ByteString getTlsSniHostnameBytes()
       SNI hostname from handshake.
       
      string tls_sni_hostname = 3;
      Specified by:
      getTlsSniHostnameBytes in interface TLSPropertiesOrBuilder
      Returns:
      The bytes for tlsSniHostname.
    • hasLocalCertificateProperties

      public boolean hasLocalCertificateProperties()
       Properties of the local certificate used to negotiate TLS.
       
      .envoy.data.accesslog.v3.TLSProperties.CertificateProperties local_certificate_properties = 4;
      Specified by:
      hasLocalCertificateProperties in interface TLSPropertiesOrBuilder
      Returns:
      Whether the localCertificateProperties field is set.
    • getLocalCertificateProperties

      public TLSProperties.CertificateProperties getLocalCertificateProperties()
       Properties of the local certificate used to negotiate TLS.
       
      .envoy.data.accesslog.v3.TLSProperties.CertificateProperties local_certificate_properties = 4;
      Specified by:
      getLocalCertificateProperties in interface TLSPropertiesOrBuilder
      Returns:
      The localCertificateProperties.
    • getLocalCertificatePropertiesOrBuilder

      public TLSProperties.CertificatePropertiesOrBuilder getLocalCertificatePropertiesOrBuilder()
       Properties of the local certificate used to negotiate TLS.
       
      .envoy.data.accesslog.v3.TLSProperties.CertificateProperties local_certificate_properties = 4;
      Specified by:
      getLocalCertificatePropertiesOrBuilder in interface TLSPropertiesOrBuilder
    • hasPeerCertificateProperties

      public boolean hasPeerCertificateProperties()
       Properties of the peer certificate used to negotiate TLS.
       
      .envoy.data.accesslog.v3.TLSProperties.CertificateProperties peer_certificate_properties = 5;
      Specified by:
      hasPeerCertificateProperties in interface TLSPropertiesOrBuilder
      Returns:
      Whether the peerCertificateProperties field is set.
    • getPeerCertificateProperties

      public TLSProperties.CertificateProperties getPeerCertificateProperties()
       Properties of the peer certificate used to negotiate TLS.
       
      .envoy.data.accesslog.v3.TLSProperties.CertificateProperties peer_certificate_properties = 5;
      Specified by:
      getPeerCertificateProperties in interface TLSPropertiesOrBuilder
      Returns:
      The peerCertificateProperties.
    • getPeerCertificatePropertiesOrBuilder

      public TLSProperties.CertificatePropertiesOrBuilder getPeerCertificatePropertiesOrBuilder()
       Properties of the peer certificate used to negotiate TLS.
       
      .envoy.data.accesslog.v3.TLSProperties.CertificateProperties peer_certificate_properties = 5;
      Specified by:
      getPeerCertificatePropertiesOrBuilder in interface TLSPropertiesOrBuilder
    • getTlsSessionId

      public String getTlsSessionId()
       The TLS session ID.
       
      string tls_session_id = 6;
      Specified by:
      getTlsSessionId in interface TLSPropertiesOrBuilder
      Returns:
      The tlsSessionId.
    • getTlsSessionIdBytes

      public com.google.protobuf.ByteString getTlsSessionIdBytes()
       The TLS session ID.
       
      string tls_session_id = 6;
      Specified by:
      getTlsSessionIdBytes in interface TLSPropertiesOrBuilder
      Returns:
      The bytes for tlsSessionId.
    • getJa3Fingerprint

      public String getJa3Fingerprint()
       The ``JA3`` fingerprint when ``JA3`` fingerprinting is enabled.
       
      string ja3_fingerprint = 7;
      Specified by:
      getJa3Fingerprint in interface TLSPropertiesOrBuilder
      Returns:
      The ja3Fingerprint.
    • getJa3FingerprintBytes

      public com.google.protobuf.ByteString getJa3FingerprintBytes()
       The ``JA3`` fingerprint when ``JA3`` fingerprinting is enabled.
       
      string ja3_fingerprint = 7;
      Specified by:
      getJa3FingerprintBytes in interface TLSPropertiesOrBuilder
      Returns:
      The bytes for ja3Fingerprint.
    • isInitialized

      public final boolean isInitialized()
      Specified by:
      isInitialized in interface com.google.protobuf.MessageLiteOrBuilder
      Overrides:
      isInitialized in class com.google.protobuf.GeneratedMessage
    • writeTo

      public void writeTo(com.google.protobuf.CodedOutputStream output) throws IOException
      Specified by:
      writeTo in interface com.google.protobuf.MessageLite
      Overrides:
      writeTo in class com.google.protobuf.GeneratedMessage
      Throws:
      IOException
    • getSerializedSize

      public int getSerializedSize()
      Specified by:
      getSerializedSize in interface com.google.protobuf.MessageLite
      Overrides:
      getSerializedSize in class com.google.protobuf.GeneratedMessage
    • equals

      public boolean equals(Object obj)
      Specified by:
      equals in interface com.google.protobuf.Message
      Overrides:
      equals in class com.google.protobuf.AbstractMessage
    • hashCode

      public int hashCode()
      Specified by:
      hashCode in interface com.google.protobuf.Message
      Overrides:
      hashCode in class com.google.protobuf.AbstractMessage
    • parseFrom

      public static TLSProperties parseFrom(ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static TLSProperties parseFrom(ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static TLSProperties parseFrom(com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static TLSProperties parseFrom(com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static TLSProperties parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static TLSProperties parseFrom(byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException
      Throws:
      com.google.protobuf.InvalidProtocolBufferException
    • parseFrom

      public static TLSProperties parseFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static TLSProperties parseFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static TLSProperties parseDelimitedFrom(InputStream input) throws IOException
      Throws:
      IOException
    • parseDelimitedFrom

      public static TLSProperties parseDelimitedFrom(InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • parseFrom

      public static TLSProperties parseFrom(com.google.protobuf.CodedInputStream input) throws IOException
      Throws:
      IOException
    • parseFrom

      public static TLSProperties parseFrom(com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws IOException
      Throws:
      IOException
    • newBuilderForType

      public TLSProperties.Builder newBuilderForType()
      Specified by:
      newBuilderForType in interface com.google.protobuf.Message
      Specified by:
      newBuilderForType in interface com.google.protobuf.MessageLite
    • newBuilder

      public static TLSProperties.Builder newBuilder()
    • newBuilder

      public static TLSProperties.Builder newBuilder(TLSProperties prototype)
    • toBuilder

      public TLSProperties.Builder toBuilder()
      Specified by:
      toBuilder in interface com.google.protobuf.Message
      Specified by:
      toBuilder in interface com.google.protobuf.MessageLite
    • newBuilderForType

      protected TLSProperties.Builder newBuilderForType(com.google.protobuf.AbstractMessage.BuilderParent parent)
      Overrides:
      newBuilderForType in class com.google.protobuf.AbstractMessage
    • getDefaultInstance

      public static TLSProperties getDefaultInstance()
    • parser

      public static com.google.protobuf.Parser<TLSProperties> parser()
    • getParserForType

      public com.google.protobuf.Parser<TLSProperties> getParserForType()
      Specified by:
      getParserForType in interface com.google.protobuf.Message
      Specified by:
      getParserForType in interface com.google.protobuf.MessageLite
      Overrides:
      getParserForType in class com.google.protobuf.GeneratedMessage
    • getDefaultInstanceForType

      public TLSProperties getDefaultInstanceForType()
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageLiteOrBuilder
      Specified by:
      getDefaultInstanceForType in interface com.google.protobuf.MessageOrBuilder