// Original file: deps/envoy-api/envoy/config/core/v3/base.proto import type { Any as _google_protobuf_Any, Any__Output as _google_protobuf_Any__Output } from '../../../../google/protobuf/Any'; /** * Configuration for transport socket in :ref:`listeners ` and * :ref:`clusters `. If the configuration is * empty, a default transport socket implementation and configuration will be * chosen based on the platform and existence of tls_context. */ export interface TransportSocket { /** * The name of the transport socket to instantiate. The name must match a supported transport * socket implementation. */ 'name'?: (string); 'typed_config'?: (_google_protobuf_Any | null); /** * Implementation specific configuration which depends on the implementation being instantiated. * See the supported transport socket implementations for further documentation. */ 'config_type'?: "typed_config"; } /** * Configuration for transport socket in :ref:`listeners ` and * :ref:`clusters `. If the configuration is * empty, a default transport socket implementation and configuration will be * chosen based on the platform and existence of tls_context. */ export interface TransportSocket__Output { /** * The name of the transport socket to instantiate. The name must match a supported transport * socket implementation. */ 'name': (string); 'typed_config'?: (_google_protobuf_Any__Output | null); /** * Implementation specific configuration which depends on the implementation being instantiated. * See the supported transport socket implementations for further documentation. */ 'config_type'?: "typed_config"; }