package v3alpha
import "github.com/envoyproxy/go-control-plane/contrib/envoy/extensions/upstreams/http/tcp/golang/v3alpha"
Index ¶
- Variables
- type Config
- func (*Config) Descriptor() ([]byte, []int)
- func (x *Config) GetLibraryId() string
- func (x *Config) GetLibraryPath() string
- func (x *Config) GetPluginConfig() *anypb.Any
- func (x *Config) GetPluginName() string
- func (*Config) ProtoMessage()
- func (x *Config) ProtoReflect() protoreflect.Message
- func (x *Config) Reset()
- func (x *Config) String() string
- func (m *Config) Validate() error
- func (m *Config) ValidateAll() error
- type ConfigMultiError
- type ConfigValidationError
Variables ¶
var File_contrib_envoy_extensions_upstreams_http_tcp_golang_v3alpha_golang_proto protoreflect.FileDescriptor
Types ¶
type Config ¶
type Config struct { // Globally unique ID for a dynamic library file. LibraryId string `protobuf:"bytes,1,opt,name=library_id,json=libraryId,proto3" json:"library_id,omitempty"` // Path to a dynamic library implementing the // :repo:`HttpTcpBridge API <contrib/golang/common/go/api.HttpTcpBridge>` // interface. LibraryPath string `protobuf:"bytes,2,opt,name=library_path,json=libraryPath,proto3" json:"library_path,omitempty"` // Globally unique name of the Go plugin. // // This name **must** be consistent with the name registered in “tcp::RegisterHttpTcpBridgeFactoryAndConfigParser“ PluginName string `protobuf:"bytes,3,opt,name=plugin_name,json=pluginName,proto3" json:"plugin_name,omitempty"` // Configuration for the Go plugin. // // .. note:: // // This configuration is only parsed in the Golang plugin, and is therefore not validated // by Envoy. // // See the :repo:`HttpTcpBridge API <contrib/golang/common/go/api/filter.go>` // for more information about how the plugin's configuration data can be accessed. PluginConfig *anypb.Any `protobuf:"bytes,4,opt,name=plugin_config,json=pluginConfig,proto3" json:"plugin_config,omitempty"` // contains filtered or unexported fields }
[#extension-category: envoy.upstreams]
func (*Config) Descriptor ¶
Deprecated: Use Config.ProtoReflect.Descriptor instead.
func (*Config) GetLibraryId ¶
func (*Config) GetLibraryPath ¶
func (*Config) GetPluginConfig ¶
func (*Config) GetPluginName ¶
func (*Config) ProtoMessage ¶
func (*Config) ProtoMessage()
func (*Config) ProtoReflect ¶
func (x *Config) ProtoReflect() protoreflect.Message
func (*Config) Reset ¶
func (x *Config) Reset()
func (*Config) String ¶
func (*Config) Validate ¶
Validate checks the field values on Config with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.
func (*Config) ValidateAll ¶
ValidateAll checks the field values on Config with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ConfigMultiError, or nil if none found.
type ConfigMultiError ¶
type ConfigMultiError []error
ConfigMultiError is an error wrapping multiple validation errors returned by Config.ValidateAll() if the designated constraints aren't met.
func (ConfigMultiError) AllErrors ¶
func (m ConfigMultiError) AllErrors() []error
AllErrors returns a list of validation violation errors.
func (ConfigMultiError) Error ¶
func (m ConfigMultiError) Error() string
Error returns a concatenation of all the error messages it wraps.
type ConfigValidationError ¶
type ConfigValidationError struct {
// contains filtered or unexported fields
}
ConfigValidationError is the validation error returned by Config.Validate if the designated constraints aren't met.
func (ConfigValidationError) Cause ¶
func (e ConfigValidationError) Cause() error
Cause function returns cause value.
func (ConfigValidationError) Error ¶
func (e ConfigValidationError) Error() string
Error satisfies the builtin error interface
func (ConfigValidationError) ErrorName ¶
func (e ConfigValidationError) ErrorName() string
ErrorName returns error name.
func (ConfigValidationError) Field ¶
func (e ConfigValidationError) Field() string
Field function returns field value.
func (ConfigValidationError) Key ¶
func (e ConfigValidationError) Key() bool
Key function returns key value.
func (ConfigValidationError) Reason ¶
func (e ConfigValidationError) Reason() string
Reason function returns reason value.
Source Files ¶
golang.pb.go golang.pb.validate.go
- Version
- v1.32.4 (latest)
- Published
- Feb 3, 2025
- Platform
- linux/amd64
- Imports
- 19 packages
- Last checked
- 1 day ago –
Tools for package owners.