v3

package
v1.4.8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 3, 2020 License: Apache-2.0 Imports: 9 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ProxyProtocolConfig_Version_name = map[int32]string{
	0: "V1",
	1: "V2",
}
View Source
var ProxyProtocolConfig_Version_value = map[string]int32{
	"V1": 0,
	"V2": 1,
}
View Source
var RequestMethod_name = map[int32]string{
	0: "METHOD_UNSPECIFIED",
	1: "GET",
	2: "HEAD",
	3: "POST",
	4: "PUT",
	5: "DELETE",
	6: "CONNECT",
	7: "OPTIONS",
	8: "TRACE",
	9: "PATCH",
}
View Source
var RequestMethod_value = map[string]int32{
	"METHOD_UNSPECIFIED": 0,
	"GET":                1,
	"HEAD":               2,
	"POST":               3,
	"PUT":                4,
	"DELETE":             5,
	"CONNECT":            6,
	"OPTIONS":            7,
	"TRACE":              8,
	"PATCH":              9,
}
View Source
var RoutingPriority_name = map[int32]string{
	0: "DEFAULT",
	1: "HIGH",
}
View Source
var RoutingPriority_value = map[string]int32{
	"DEFAULT": 0,
	"HIGH":    1,
}
View Source
var SocketAddress_Protocol_name = map[int32]string{
	0: "TCP",
	1: "UDP",
}
View Source
var SocketAddress_Protocol_value = map[string]int32{
	"TCP": 0,
	"UDP": 1,
}
View Source
var SocketOption_SocketState_name = map[int32]string{
	0: "STATE_PREBIND",
	1: "STATE_BOUND",
	2: "STATE_LISTENING",
}
View Source
var SocketOption_SocketState_value = map[string]int32{
	"STATE_PREBIND":   0,
	"STATE_BOUND":     1,
	"STATE_LISTENING": 2,
}
View Source
var TrafficDirection_name = map[int32]string{
	0: "UNSPECIFIED",
	1: "INBOUND",
	2: "OUTBOUND",
}
View Source
var TrafficDirection_value = map[string]int32{
	"UNSPECIFIED": 0,
	"INBOUND":     1,
	"OUTBOUND":    2,
}

Functions

This section is empty.

Types

type Address

type Address struct {
	// Types that are valid to be assigned to Address:
	//	*Address_SocketAddress
	//	*Address_Pipe
	Address              isAddress_Address `protobuf_oneof:"address"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

Addresses specify either a logical or physical address and port, which are used to tell Envoy where to bind/listen, connect to upstream and find management servers.

func (*Address) Descriptor

func (*Address) Descriptor() ([]byte, []int)

func (*Address) Equal

func (this *Address) Equal(that interface{}) bool

func (*Address) GetAddress

func (m *Address) GetAddress() isAddress_Address

func (*Address) GetPipe

func (m *Address) GetPipe() *Pipe

func (*Address) GetSocketAddress

func (m *Address) GetSocketAddress() *SocketAddress

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) Reset

func (m *Address) Reset()

func (*Address) String

func (m *Address) String() string

func (*Address) XXX_DiscardUnknown

func (m *Address) XXX_DiscardUnknown()

func (*Address) XXX_Marshal

func (m *Address) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Address) XXX_Merge

func (m *Address) XXX_Merge(src proto.Message)

func (*Address) XXX_OneofWrappers

func (*Address) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Address) XXX_Size

func (m *Address) XXX_Size() int

func (*Address) XXX_Unmarshal

func (m *Address) XXX_Unmarshal(b []byte) error

type Address_Pipe

type Address_Pipe struct {
	Pipe *Pipe `protobuf:"bytes,2,opt,name=pipe,proto3,oneof" json:"pipe,omitempty"`
}

func (*Address_Pipe) Equal

func (this *Address_Pipe) Equal(that interface{}) bool

type Address_SocketAddress

type Address_SocketAddress struct {
	SocketAddress *SocketAddress `protobuf:"bytes,1,opt,name=socket_address,json=socketAddress,proto3,oneof" json:"socket_address,omitempty"`
}

func (*Address_SocketAddress) Equal

func (this *Address_SocketAddress) Equal(that interface{}) bool

type AsyncDataSource

type AsyncDataSource struct {
	// Types that are valid to be assigned to Specifier:
	//	*AsyncDataSource_Local
	//	*AsyncDataSource_Remote
	Specifier            isAsyncDataSource_Specifier `protobuf_oneof:"specifier"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

Async data source which support async data fetch.

func (*AsyncDataSource) Descriptor

func (*AsyncDataSource) Descriptor() ([]byte, []int)

func (*AsyncDataSource) Equal

func (this *AsyncDataSource) Equal(that interface{}) bool

func (*AsyncDataSource) GetLocal

func (m *AsyncDataSource) GetLocal() *DataSource

func (*AsyncDataSource) GetRemote

func (m *AsyncDataSource) GetRemote() *RemoteDataSource

func (*AsyncDataSource) GetSpecifier

func (m *AsyncDataSource) GetSpecifier() isAsyncDataSource_Specifier

func (*AsyncDataSource) ProtoMessage

func (*AsyncDataSource) ProtoMessage()

func (*AsyncDataSource) Reset

func (m *AsyncDataSource) Reset()

func (*AsyncDataSource) String

func (m *AsyncDataSource) String() string

func (*AsyncDataSource) XXX_DiscardUnknown

func (m *AsyncDataSource) XXX_DiscardUnknown()

func (*AsyncDataSource) XXX_Marshal

func (m *AsyncDataSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*AsyncDataSource) XXX_Merge

func (m *AsyncDataSource) XXX_Merge(src proto.Message)

func (*AsyncDataSource) XXX_OneofWrappers

func (*AsyncDataSource) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*AsyncDataSource) XXX_Size

func (m *AsyncDataSource) XXX_Size() int

func (*AsyncDataSource) XXX_Unmarshal

func (m *AsyncDataSource) XXX_Unmarshal(b []byte) error

type AsyncDataSource_Local

type AsyncDataSource_Local struct {
	Local *DataSource `protobuf:"bytes,1,opt,name=local,proto3,oneof" json:"local,omitempty"`
}

func (*AsyncDataSource_Local) Equal

func (this *AsyncDataSource_Local) Equal(that interface{}) bool

type AsyncDataSource_Remote

type AsyncDataSource_Remote struct {
	Remote *RemoteDataSource `protobuf:"bytes,2,opt,name=remote,proto3,oneof" json:"remote,omitempty"`
}

func (*AsyncDataSource_Remote) Equal

func (this *AsyncDataSource_Remote) Equal(that interface{}) bool

type BackoffStrategy

type BackoffStrategy struct {
	// The base interval to be used for the next back off computation. It should
	// be greater than zero and less than or equal to :ref:`max_interval
	// <envoy_api_field_config.core.v3.BackoffStrategy.max_interval>`.
	BaseInterval *types.Duration `protobuf:"bytes,1,opt,name=base_interval,json=baseInterval,proto3" json:"base_interval,omitempty"`
	// Specifies the maximum interval between retries. This parameter is optional,
	// but must be greater than or equal to the :ref:`base_interval
	// <envoy_api_field_config.core.v3.BackoffStrategy.base_interval>` if set. The default
	// is 10 times the :ref:`base_interval
	// <envoy_api_field_config.core.v3.BackoffStrategy.base_interval>`.
	MaxInterval          *types.Duration `protobuf:"bytes,2,opt,name=max_interval,json=maxInterval,proto3" json:"max_interval,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

Configuration defining a jittered exponential back off strategy.

func (*BackoffStrategy) Descriptor

func (*BackoffStrategy) Descriptor() ([]byte, []int)

func (*BackoffStrategy) Equal

func (this *BackoffStrategy) Equal(that interface{}) bool

func (*BackoffStrategy) GetBaseInterval

func (m *BackoffStrategy) GetBaseInterval() *types.Duration

func (*BackoffStrategy) GetMaxInterval

func (m *BackoffStrategy) GetMaxInterval() *types.Duration

func (*BackoffStrategy) ProtoMessage

func (*BackoffStrategy) ProtoMessage()

func (*BackoffStrategy) Reset

func (m *BackoffStrategy) Reset()

func (*BackoffStrategy) String

func (m *BackoffStrategy) String() string

func (*BackoffStrategy) XXX_DiscardUnknown

func (m *BackoffStrategy) XXX_DiscardUnknown()

func (*BackoffStrategy) XXX_Marshal

func (m *BackoffStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BackoffStrategy) XXX_Merge

func (m *BackoffStrategy) XXX_Merge(src proto.Message)

func (*BackoffStrategy) XXX_Size

func (m *BackoffStrategy) XXX_Size() int

func (*BackoffStrategy) XXX_Unmarshal

func (m *BackoffStrategy) XXX_Unmarshal(b []byte) error

type BindConfig

type BindConfig struct {
	// The address to bind to when creating a socket.
	SourceAddress *SocketAddress `protobuf:"bytes,1,opt,name=source_address,json=sourceAddress,proto3" json:"source_address,omitempty"`
	// Whether to set the *IP_FREEBIND* option when creating the socket. When this
	// flag is set to true, allows the :ref:`source_address
	// <envoy_api_field_config.cluster.v3.UpstreamBindConfig.source_address>` to be an IP address
	// that is not configured on the system running Envoy. When this flag is set
	// to false, the option *IP_FREEBIND* is disabled on the socket. When this
	// flag is not set (default), the socket is not modified, i.e. the option is
	// neither enabled nor disabled.
	Freebind *types.BoolValue `protobuf:"bytes,2,opt,name=freebind,proto3" json:"freebind,omitempty"`
	// Additional socket options that may not be present in Envoy source code or
	// precompiled binaries.
	SocketOptions        []*SocketOption `protobuf:"bytes,3,rep,name=socket_options,json=socketOptions,proto3" json:"socket_options,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

func (*BindConfig) Descriptor

func (*BindConfig) Descriptor() ([]byte, []int)

func (*BindConfig) Equal

func (this *BindConfig) Equal(that interface{}) bool

func (*BindConfig) GetFreebind

func (m *BindConfig) GetFreebind() *types.BoolValue

func (*BindConfig) GetSocketOptions

func (m *BindConfig) GetSocketOptions() []*SocketOption

func (*BindConfig) GetSourceAddress

func (m *BindConfig) GetSourceAddress() *SocketAddress

func (*BindConfig) ProtoMessage

func (*BindConfig) ProtoMessage()

func (*BindConfig) Reset

func (m *BindConfig) Reset()

func (*BindConfig) String

func (m *BindConfig) String() string

func (*BindConfig) XXX_DiscardUnknown

func (m *BindConfig) XXX_DiscardUnknown()

func (*BindConfig) XXX_Marshal

func (m *BindConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BindConfig) XXX_Merge

func (m *BindConfig) XXX_Merge(src proto.Message)

func (*BindConfig) XXX_Size

func (m *BindConfig) XXX_Size() int

func (*BindConfig) XXX_Unmarshal

func (m *BindConfig) XXX_Unmarshal(b []byte) error

type BuildVersion

type BuildVersion struct {
	// SemVer version of extension.
	Version *v3.SemanticVersion `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	// Free-form build information.
	// Envoy defines several well known keys in the source/common/common/version.h file
	Metadata             *types.Struct `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

BuildVersion combines SemVer version of extension with free-form build information (i.e. 'alpha', 'private-build') as a set of strings.

func (*BuildVersion) Descriptor

func (*BuildVersion) Descriptor() ([]byte, []int)

func (*BuildVersion) Equal

func (this *BuildVersion) Equal(that interface{}) bool

func (*BuildVersion) GetMetadata

func (m *BuildVersion) GetMetadata() *types.Struct

func (*BuildVersion) GetVersion

func (m *BuildVersion) GetVersion() *v3.SemanticVersion

func (*BuildVersion) ProtoMessage

func (*BuildVersion) ProtoMessage()

func (*BuildVersion) Reset

func (m *BuildVersion) Reset()

func (*BuildVersion) String

func (m *BuildVersion) String() string

func (*BuildVersion) XXX_DiscardUnknown

func (m *BuildVersion) XXX_DiscardUnknown()

func (*BuildVersion) XXX_Marshal

func (m *BuildVersion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*BuildVersion) XXX_Merge

func (m *BuildVersion) XXX_Merge(src proto.Message)

func (*BuildVersion) XXX_Size

func (m *BuildVersion) XXX_Size() int

func (*BuildVersion) XXX_Unmarshal

func (m *BuildVersion) XXX_Unmarshal(b []byte) error

type CidrRange

type CidrRange struct {
	// IPv4 or IPv6 address, e.g. “192.0.0.0“ or “2001:db8::“.
	AddressPrefix string `protobuf:"bytes,1,opt,name=address_prefix,json=addressPrefix,proto3" json:"address_prefix,omitempty"`
	// Length of prefix, e.g. 0, 32.
	PrefixLen            *types.UInt32Value `protobuf:"bytes,2,opt,name=prefix_len,json=prefixLen,proto3" json:"prefix_len,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

CidrRange specifies an IP Address and a prefix length to construct the subnet mask for a `CIDR <https://tools.ietf.org/html/rfc4632>`_ range.

func (*CidrRange) Descriptor

func (*CidrRange) Descriptor() ([]byte, []int)

func (*CidrRange) Equal

func (this *CidrRange) Equal(that interface{}) bool

func (*CidrRange) GetAddressPrefix

func (m *CidrRange) GetAddressPrefix() string

func (*CidrRange) GetPrefixLen

func (m *CidrRange) GetPrefixLen() *types.UInt32Value

func (*CidrRange) ProtoMessage

func (*CidrRange) ProtoMessage()

func (*CidrRange) Reset

func (m *CidrRange) Reset()

func (*CidrRange) String

func (m *CidrRange) String() string

func (*CidrRange) XXX_DiscardUnknown

func (m *CidrRange) XXX_DiscardUnknown()

func (*CidrRange) XXX_Marshal

func (m *CidrRange) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CidrRange) XXX_Merge

func (m *CidrRange) XXX_Merge(src proto.Message)

func (*CidrRange) XXX_Size

func (m *CidrRange) XXX_Size() int

func (*CidrRange) XXX_Unmarshal

func (m *CidrRange) XXX_Unmarshal(b []byte) error

type ControlPlane

type ControlPlane struct {
	// An opaque control plane identifier that uniquely identifies an instance
	// of control plane. This can be used to identify which control plane instance,
	// the Envoy is connected to.
	Identifier           string   `protobuf:"bytes,1,opt,name=identifier,proto3" json:"identifier,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Identifies a specific ControlPlane instance that Envoy is connected to.

func (*ControlPlane) Descriptor

func (*ControlPlane) Descriptor() ([]byte, []int)

func (*ControlPlane) Equal

func (this *ControlPlane) Equal(that interface{}) bool

func (*ControlPlane) GetIdentifier

func (m *ControlPlane) GetIdentifier() string

func (*ControlPlane) ProtoMessage

func (*ControlPlane) ProtoMessage()

func (*ControlPlane) Reset

func (m *ControlPlane) Reset()

func (*ControlPlane) String

func (m *ControlPlane) String() string

func (*ControlPlane) XXX_DiscardUnknown

func (m *ControlPlane) XXX_DiscardUnknown()

func (*ControlPlane) XXX_Marshal

func (m *ControlPlane) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ControlPlane) XXX_Merge

func (m *ControlPlane) XXX_Merge(src proto.Message)

func (*ControlPlane) XXX_Size

func (m *ControlPlane) XXX_Size() int

func (*ControlPlane) XXX_Unmarshal

func (m *ControlPlane) XXX_Unmarshal(b []byte) error

type DataSource

type DataSource struct {
	// Types that are valid to be assigned to Specifier:
	//	*DataSource_Filename
	//	*DataSource_InlineBytes
	//	*DataSource_InlineString
	Specifier            isDataSource_Specifier `protobuf_oneof:"specifier"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

Data source consisting of either a file or an inline value.

func (*DataSource) Descriptor

func (*DataSource) Descriptor() ([]byte, []int)

func (*DataSource) Equal

func (this *DataSource) Equal(that interface{}) bool

func (*DataSource) GetFilename

func (m *DataSource) GetFilename() string

func (*DataSource) GetInlineBytes

func (m *DataSource) GetInlineBytes() []byte

func (*DataSource) GetInlineString

func (m *DataSource) GetInlineString() string

func (*DataSource) GetSpecifier

func (m *DataSource) GetSpecifier() isDataSource_Specifier

func (*DataSource) ProtoMessage

func (*DataSource) ProtoMessage()

func (*DataSource) Reset

func (m *DataSource) Reset()

func (*DataSource) String

func (m *DataSource) String() string

func (*DataSource) XXX_DiscardUnknown

func (m *DataSource) XXX_DiscardUnknown()

func (*DataSource) XXX_Marshal

func (m *DataSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*DataSource) XXX_Merge

func (m *DataSource) XXX_Merge(src proto.Message)

func (*DataSource) XXX_OneofWrappers

func (*DataSource) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*DataSource) XXX_Size

func (m *DataSource) XXX_Size() int

func (*DataSource) XXX_Unmarshal

func (m *DataSource) XXX_Unmarshal(b []byte) error

type DataSource_Filename

type DataSource_Filename struct {
	Filename string `protobuf:"bytes,1,opt,name=filename,proto3,oneof" json:"filename,omitempty"`
}

func (*DataSource_Filename) Equal

func (this *DataSource_Filename) Equal(that interface{}) bool

type DataSource_InlineBytes

type DataSource_InlineBytes struct {
	InlineBytes []byte `protobuf:"bytes,2,opt,name=inline_bytes,json=inlineBytes,proto3,oneof" json:"inline_bytes,omitempty"`
}

func (*DataSource_InlineBytes) Equal

func (this *DataSource_InlineBytes) Equal(that interface{}) bool

type DataSource_InlineString

type DataSource_InlineString struct {
	InlineString string `protobuf:"bytes,3,opt,name=inline_string,json=inlineString,proto3,oneof" json:"inline_string,omitempty"`
}

func (*DataSource_InlineString) Equal

func (this *DataSource_InlineString) Equal(that interface{}) bool

type Extension

type Extension struct {
	// This is the name of the Envoy filter as specified in the Envoy
	// configuration, e.g. envoy.filters.http.router, com.acme.widget.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Category of the extension.
	// Extension category names use reverse DNS notation. For instance "envoy.filters.listener"
	// for Envoy's built-in listener filters or "com.acme.filters.http" for HTTP filters from
	// acme.com vendor.
	// [#comment:TODO(yanavlasov): Link to the doc with existing envoy category names.]
	Category string `protobuf:"bytes,2,opt,name=category,proto3" json:"category,omitempty"`
	// [#not-implemented-hide:] Type descriptor of extension configuration proto.
	// [#comment:TODO(yanavlasov): Link to the doc with existing configuration protos.]
	// [#comment:TODO(yanavlasov): Add tests when PR #9391 lands.]
	TypeDescriptor string `protobuf:"bytes,3,opt,name=type_descriptor,json=typeDescriptor,proto3" json:"type_descriptor,omitempty"`
	// The version is a property of the extension and maintained independently
	// of other extensions and the Envoy API.
	// This field is not set when extension did not provide version information.
	Version *BuildVersion `protobuf:"bytes,4,opt,name=version,proto3" json:"version,omitempty"`
	// Indicates that the extension is present but was disabled via dynamic configuration.
	Disabled             bool     `protobuf:"varint,5,opt,name=disabled,proto3" json:"disabled,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Version and identification for an Envoy extension. [#next-free-field: 6]

func (*Extension) Descriptor

func (*Extension) Descriptor() ([]byte, []int)

func (*Extension) Equal

func (this *Extension) Equal(that interface{}) bool

func (*Extension) GetCategory

func (m *Extension) GetCategory() string

func (*Extension) GetDisabled

func (m *Extension) GetDisabled() bool

func (*Extension) GetName

func (m *Extension) GetName() string

func (*Extension) GetTypeDescriptor

func (m *Extension) GetTypeDescriptor() string

func (*Extension) GetVersion

func (m *Extension) GetVersion() *BuildVersion

func (*Extension) ProtoMessage

func (*Extension) ProtoMessage()

func (*Extension) Reset

func (m *Extension) Reset()

func (*Extension) String

func (m *Extension) String() string

func (*Extension) XXX_DiscardUnknown

func (m *Extension) XXX_DiscardUnknown()

func (*Extension) XXX_Marshal

func (m *Extension) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Extension) XXX_Merge

func (m *Extension) XXX_Merge(src proto.Message)

func (*Extension) XXX_Size

func (m *Extension) XXX_Size() int

func (*Extension) XXX_Unmarshal

func (m *Extension) XXX_Unmarshal(b []byte) error

type HeaderMap

type HeaderMap struct {
	Headers              []*HeaderValue `protobuf:"bytes,1,rep,name=headers,proto3" json:"headers,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

Wrapper for a set of headers.

func (*HeaderMap) Descriptor

func (*HeaderMap) Descriptor() ([]byte, []int)

func (*HeaderMap) Equal

func (this *HeaderMap) Equal(that interface{}) bool

func (*HeaderMap) GetHeaders

func (m *HeaderMap) GetHeaders() []*HeaderValue

func (*HeaderMap) ProtoMessage

func (*HeaderMap) ProtoMessage()

func (*HeaderMap) Reset

func (m *HeaderMap) Reset()

func (*HeaderMap) String

func (m *HeaderMap) String() string

func (*HeaderMap) XXX_DiscardUnknown

func (m *HeaderMap) XXX_DiscardUnknown()

func (*HeaderMap) XXX_Marshal

func (m *HeaderMap) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HeaderMap) XXX_Merge

func (m *HeaderMap) XXX_Merge(src proto.Message)

func (*HeaderMap) XXX_Size

func (m *HeaderMap) XXX_Size() int

func (*HeaderMap) XXX_Unmarshal

func (m *HeaderMap) XXX_Unmarshal(b []byte) error

type HeaderValue

type HeaderValue struct {
	// Header name.
	Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// Header value.
	//
	// The same :ref:`format specifier <config_access_log_format>` as used for
	// :ref:`HTTP access logging <config_access_log>` applies here, however
	// unknown header values are replaced with the empty string instead of `-`.
	Value                string   `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Header name/value pair.

func (*HeaderValue) Descriptor

func (*HeaderValue) Descriptor() ([]byte, []int)

func (*HeaderValue) Equal

func (this *HeaderValue) Equal(that interface{}) bool

func (*HeaderValue) GetKey

func (m *HeaderValue) GetKey() string

func (*HeaderValue) GetValue

func (m *HeaderValue) GetValue() string

func (*HeaderValue) ProtoMessage

func (*HeaderValue) ProtoMessage()

func (*HeaderValue) Reset

func (m *HeaderValue) Reset()

func (*HeaderValue) String

func (m *HeaderValue) String() string

func (*HeaderValue) XXX_DiscardUnknown

func (m *HeaderValue) XXX_DiscardUnknown()

func (*HeaderValue) XXX_Marshal

func (m *HeaderValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HeaderValue) XXX_Merge

func (m *HeaderValue) XXX_Merge(src proto.Message)

func (*HeaderValue) XXX_Size

func (m *HeaderValue) XXX_Size() int

func (*HeaderValue) XXX_Unmarshal

func (m *HeaderValue) XXX_Unmarshal(b []byte) error

type HeaderValueOption

type HeaderValueOption struct {
	// Header name/value pair that this option applies to.
	Header *HeaderValue `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// Should the value be appended? If true (default), the value is appended to
	// existing values.
	Append               *types.BoolValue `protobuf:"bytes,2,opt,name=append,proto3" json:"append,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

Header name/value pair plus option to control append behavior.

func (*HeaderValueOption) Descriptor

func (*HeaderValueOption) Descriptor() ([]byte, []int)

func (*HeaderValueOption) Equal

func (this *HeaderValueOption) Equal(that interface{}) bool

func (*HeaderValueOption) GetAppend

func (m *HeaderValueOption) GetAppend() *types.BoolValue

func (*HeaderValueOption) GetHeader

func (m *HeaderValueOption) GetHeader() *HeaderValue

func (*HeaderValueOption) ProtoMessage

func (*HeaderValueOption) ProtoMessage()

func (*HeaderValueOption) Reset

func (m *HeaderValueOption) Reset()

func (*HeaderValueOption) String

func (m *HeaderValueOption) String() string

func (*HeaderValueOption) XXX_DiscardUnknown

func (m *HeaderValueOption) XXX_DiscardUnknown()

func (*HeaderValueOption) XXX_Marshal

func (m *HeaderValueOption) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HeaderValueOption) XXX_Merge

func (m *HeaderValueOption) XXX_Merge(src proto.Message)

func (*HeaderValueOption) XXX_Size

func (m *HeaderValueOption) XXX_Size() int

func (*HeaderValueOption) XXX_Unmarshal

func (m *HeaderValueOption) XXX_Unmarshal(b []byte) error

type HttpUri

type HttpUri struct {
	// The HTTP server URI. It should be a full FQDN with protocol, host and path.
	//
	// Example:
	//
	// .. code-block:: yaml
	//
	//    uri: https://www.googleapis.com/oauth2/v1/certs
	//
	Uri string `protobuf:"bytes,1,opt,name=uri,proto3" json:"uri,omitempty"`
	// Specify how `uri` is to be fetched. Today, this requires an explicit
	// cluster, but in the future we may support dynamic cluster creation or
	// inline DNS resolution. See `issue
	// <https://github.com/envoyproxy/envoy/issues/1606>`_.
	//
	// Types that are valid to be assigned to HttpUpstreamType:
	//	*HttpUri_Cluster
	HttpUpstreamType isHttpUri_HttpUpstreamType `protobuf_oneof:"http_upstream_type"`
	// Sets the maximum duration in milliseconds that a response can take to arrive upon request.
	Timeout              *types.Duration `protobuf:"bytes,3,opt,name=timeout,proto3" json:"timeout,omitempty"`
	XXX_NoUnkeyedLiteral struct{}        `json:"-"`
	XXX_unrecognized     []byte          `json:"-"`
	XXX_sizecache        int32           `json:"-"`
}

Envoy external URI descriptor

func (*HttpUri) Descriptor

func (*HttpUri) Descriptor() ([]byte, []int)

func (*HttpUri) Equal

func (this *HttpUri) Equal(that interface{}) bool

func (*HttpUri) GetCluster

func (m *HttpUri) GetCluster() string

func (*HttpUri) GetHttpUpstreamType

func (m *HttpUri) GetHttpUpstreamType() isHttpUri_HttpUpstreamType

func (*HttpUri) GetTimeout

func (m *HttpUri) GetTimeout() *types.Duration

func (*HttpUri) GetUri

func (m *HttpUri) GetUri() string

func (*HttpUri) ProtoMessage

func (*HttpUri) ProtoMessage()

func (*HttpUri) Reset

func (m *HttpUri) Reset()

func (*HttpUri) String

func (m *HttpUri) String() string

func (*HttpUri) XXX_DiscardUnknown

func (m *HttpUri) XXX_DiscardUnknown()

func (*HttpUri) XXX_Marshal

func (m *HttpUri) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*HttpUri) XXX_Merge

func (m *HttpUri) XXX_Merge(src proto.Message)

func (*HttpUri) XXX_OneofWrappers

func (*HttpUri) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*HttpUri) XXX_Size

func (m *HttpUri) XXX_Size() int

func (*HttpUri) XXX_Unmarshal

func (m *HttpUri) XXX_Unmarshal(b []byte) error

type HttpUri_Cluster

type HttpUri_Cluster struct {
	Cluster string `protobuf:"bytes,2,opt,name=cluster,proto3,oneof" json:"cluster,omitempty"`
}

func (*HttpUri_Cluster) Equal

func (this *HttpUri_Cluster) Equal(that interface{}) bool

type Locality

type Locality struct {
	// Region this :ref:`zone <envoy_api_field_config.core.v3.Locality.zone>` belongs to.
	Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"`
	// Defines the local service zone where Envoy is running. Though optional, it
	// should be set if discovery service routing is used and the discovery
	// service exposes :ref:`zone data <envoy_api_field_config.endpoint.v3.LocalityLbEndpoints.locality>`,
	// either in this message or via :option:`--service-zone`. The meaning of zone
	// is context dependent, e.g. `Availability Zone (AZ)
	// <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-regions-availability-zones.html>`_
	// on AWS, `Zone <https://cloud.google.com/compute/docs/regions-zones/>`_ on
	// GCP, etc.
	Zone string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"`
	// When used for locality of upstream hosts, this field further splits zone
	// into smaller chunks of sub-zones so they can be load balanced
	// independently.
	SubZone              string   `protobuf:"bytes,3,opt,name=sub_zone,json=subZone,proto3" json:"sub_zone,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Identifies location of where either Envoy runs or where upstream hosts run.

func (*Locality) Descriptor

func (*Locality) Descriptor() ([]byte, []int)

func (*Locality) Equal

func (this *Locality) Equal(that interface{}) bool

func (*Locality) GetRegion

func (m *Locality) GetRegion() string

func (*Locality) GetSubZone

func (m *Locality) GetSubZone() string

func (*Locality) GetZone

func (m *Locality) GetZone() string

func (*Locality) ProtoMessage

func (*Locality) ProtoMessage()

func (*Locality) Reset

func (m *Locality) Reset()

func (*Locality) String

func (m *Locality) String() string

func (*Locality) XXX_DiscardUnknown

func (m *Locality) XXX_DiscardUnknown()

func (*Locality) XXX_Marshal

func (m *Locality) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Locality) XXX_Merge

func (m *Locality) XXX_Merge(src proto.Message)

func (*Locality) XXX_Size

func (m *Locality) XXX_Size() int

func (*Locality) XXX_Unmarshal

func (m *Locality) XXX_Unmarshal(b []byte) error

type Metadata

type Metadata struct {
	// Key is the reverse DNS filter name, e.g. com.acme.widget. The envoy.*
	// namespace is reserved for Envoy's built-in filters.
	FilterMetadata       map[string]*types.Struct `` /* 191-byte string literal not displayed */
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

Metadata provides additional inputs to filters based on matched listeners, filter chains, routes and endpoints. It is structured as a map, usually from filter name (in reverse DNS format) to metadata specific to the filter. Metadata key-values for a filter are merged as connection and request handling occurs, with later values for the same key overriding earlier values.

An example use of metadata is providing additional values to http_connection_manager in the envoy.http_connection_manager.access_log namespace.

Another example use of metadata is to per service config info in cluster metadata, which may get consumed by multiple filters.

For load balancing, Metadata provides a means to subset cluster endpoints. Endpoints have a Metadata object associated and routes contain a Metadata object to match against. There are some well defined metadata used today for this purpose:

  • “{"envoy.lb": {"canary": <bool> }}“ This indicates the canary status of an endpoint and is also used during header processing (x-envoy-upstream-canary) and for stats purposes.

[#next-major-version: move to type/metadata/v2]

func (*Metadata) Descriptor

func (*Metadata) Descriptor() ([]byte, []int)

func (*Metadata) Equal

func (this *Metadata) Equal(that interface{}) bool

func (*Metadata) GetFilterMetadata

func (m *Metadata) GetFilterMetadata() map[string]*types.Struct

func (*Metadata) ProtoMessage

func (*Metadata) ProtoMessage()

func (*Metadata) Reset

func (m *Metadata) Reset()

func (*Metadata) String

func (m *Metadata) String() string

func (*Metadata) XXX_DiscardUnknown

func (m *Metadata) XXX_DiscardUnknown()

func (*Metadata) XXX_Marshal

func (m *Metadata) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Metadata) XXX_Merge

func (m *Metadata) XXX_Merge(src proto.Message)

func (*Metadata) XXX_Size

func (m *Metadata) XXX_Size() int

func (*Metadata) XXX_Unmarshal

func (m *Metadata) XXX_Unmarshal(b []byte) error

type Node

type Node struct {
	// An opaque node identifier for the Envoy node. This also provides the local
	// service node name. It should be set if any of the following features are
	// used: :ref:`statsd <arch_overview_statistics>`, :ref:`CDS
	// <config_cluster_manager_cds>`, and :ref:`HTTP tracing
	// <arch_overview_tracing>`, either in this message or via
	// :option:`--service-node`.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Defines the local service cluster name where Envoy is running. Though
	// optional, it should be set if any of the following features are used:
	// :ref:`statsd <arch_overview_statistics>`, :ref:`health check cluster
	// verification
	// <envoy_api_field_config.core.v3.HealthCheck.HttpHealthCheck.service_name_matcher>`,
	// :ref:`runtime override directory <envoy_api_msg_config.bootstrap.v3.Runtime>`,
	// :ref:`user agent addition
	// <envoy_api_field_extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.add_user_agent>`,
	// :ref:`HTTP global rate limiting <config_http_filters_rate_limit>`,
	// :ref:`CDS <config_cluster_manager_cds>`, and :ref:`HTTP tracing
	// <arch_overview_tracing>`, either in this message or via
	// :option:`--service-cluster`.
	Cluster string `protobuf:"bytes,2,opt,name=cluster,proto3" json:"cluster,omitempty"`
	// Opaque metadata extending the node identifier. Envoy will pass this
	// directly to the management server.
	Metadata *types.Struct `protobuf:"bytes,3,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// Locality specifying where the Envoy instance is running.
	Locality *Locality `protobuf:"bytes,4,opt,name=locality,proto3" json:"locality,omitempty"`
	// Free-form string that identifies the entity requesting config.
	// E.g. "envoy" or "grpc"
	UserAgentName string `protobuf:"bytes,6,opt,name=user_agent_name,json=userAgentName,proto3" json:"user_agent_name,omitempty"`
	// Types that are valid to be assigned to UserAgentVersionType:
	//	*Node_UserAgentVersion
	//	*Node_UserAgentBuildVersion
	UserAgentVersionType isNode_UserAgentVersionType `protobuf_oneof:"user_agent_version_type"`
	// List of extensions and their versions supported by the node.
	Extensions []*Extension `protobuf:"bytes,9,rep,name=extensions,proto3" json:"extensions,omitempty"`
	// Client feature support list. These are well known features described
	// in the Envoy API repository for a given major version of an API. Client features
	// use reverse DNS naming scheme, for example `com.acme.feature`.
	// See :ref:`the list of features <client_features>` that xDS client may
	// support.
	ClientFeatures []string `protobuf:"bytes,10,rep,name=client_features,json=clientFeatures,proto3" json:"client_features,omitempty"`
	// Known listening ports on the node as a generic hint to the management server
	// for filtering :ref:`listeners <config_listeners>` to be returned. For example,
	// if there is a listener bound to port 80, the list can optionally contain the
	// SocketAddress `(0.0.0.0,80)`. The field is optional and just a hint.
	ListeningAddresses   []*Address `protobuf:"bytes,11,rep,name=listening_addresses,json=listeningAddresses,proto3" json:"listening_addresses,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

Identifies a specific Envoy instance. The node identifier is presented to the management server, which may use this identifier to distinguish per Envoy configuration for serving. [#next-free-field: 12]

func (*Node) Descriptor

func (*Node) Descriptor() ([]byte, []int)

func (*Node) Equal

func (this *Node) Equal(that interface{}) bool

func (*Node) GetClientFeatures

func (m *Node) GetClientFeatures() []string

func (*Node) GetCluster

func (m *Node) GetCluster() string

func (*Node) GetExtensions

func (m *Node) GetExtensions() []*Extension

func (*Node) GetId

func (m *Node) GetId() string

func (*Node) GetListeningAddresses

func (m *Node) GetListeningAddresses() []*Address

func (*Node) GetLocality

func (m *Node) GetLocality() *Locality

func (*Node) GetMetadata

func (m *Node) GetMetadata() *types.Struct

func (*Node) GetUserAgentBuildVersion

func (m *Node) GetUserAgentBuildVersion() *BuildVersion

func (*Node) GetUserAgentName

func (m *Node) GetUserAgentName() string

func (*Node) GetUserAgentVersion

func (m *Node) GetUserAgentVersion() string

func (*Node) GetUserAgentVersionType

func (m *Node) GetUserAgentVersionType() isNode_UserAgentVersionType

func (*Node) ProtoMessage

func (*Node) ProtoMessage()

func (*Node) Reset

func (m *Node) Reset()

func (*Node) String

func (m *Node) String() string

func (*Node) XXX_DiscardUnknown

func (m *Node) XXX_DiscardUnknown()

func (*Node) XXX_Marshal

func (m *Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Node) XXX_Merge

func (m *Node) XXX_Merge(src proto.Message)

func (*Node) XXX_OneofWrappers

func (*Node) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Node) XXX_Size

func (m *Node) XXX_Size() int

func (*Node) XXX_Unmarshal

func (m *Node) XXX_Unmarshal(b []byte) error

type Node_UserAgentBuildVersion

type Node_UserAgentBuildVersion struct {
	UserAgentBuildVersion *BuildVersion `` /* 134-byte string literal not displayed */
}

func (*Node_UserAgentBuildVersion) Equal

func (this *Node_UserAgentBuildVersion) Equal(that interface{}) bool

type Node_UserAgentVersion

type Node_UserAgentVersion struct {
	UserAgentVersion string `protobuf:"bytes,7,opt,name=user_agent_version,json=userAgentVersion,proto3,oneof" json:"user_agent_version,omitempty"`
}

func (*Node_UserAgentVersion) Equal

func (this *Node_UserAgentVersion) Equal(that interface{}) bool

type Pipe

type Pipe struct {
	// Unix Domain Socket path. On Linux, paths starting with '@' will use the
	// abstract namespace. The starting '@' is replaced by a null byte by Envoy.
	// Paths starting with '@' will result in an error in environments other than
	// Linux.
	Path string `protobuf:"bytes,1,opt,name=path,proto3" json:"path,omitempty"`
	// The mode for the Pipe. Not applicable for abstract sockets.
	Mode                 uint32   `protobuf:"varint,2,opt,name=mode,proto3" json:"mode,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Pipe) Descriptor

func (*Pipe) Descriptor() ([]byte, []int)

func (*Pipe) Equal

func (this *Pipe) Equal(that interface{}) bool

func (*Pipe) GetMode

func (m *Pipe) GetMode() uint32

func (*Pipe) GetPath

func (m *Pipe) GetPath() string

func (*Pipe) ProtoMessage

func (*Pipe) ProtoMessage()

func (*Pipe) Reset

func (m *Pipe) Reset()

func (*Pipe) String

func (m *Pipe) String() string

func (*Pipe) XXX_DiscardUnknown

func (m *Pipe) XXX_DiscardUnknown()

func (*Pipe) XXX_Marshal

func (m *Pipe) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Pipe) XXX_Merge

func (m *Pipe) XXX_Merge(src proto.Message)

func (*Pipe) XXX_Size

func (m *Pipe) XXX_Size() int

func (*Pipe) XXX_Unmarshal

func (m *Pipe) XXX_Unmarshal(b []byte) error

type ProxyProtocolConfig

type ProxyProtocolConfig struct {
	// The PROXY protocol version to use. See https://www.haproxy.org/download/2.1/doc/proxy-protocol.txt for details
	Version              ProxyProtocolConfig_Version `protobuf:"varint,1,opt,name=version,proto3,enum=envoy.config.core.v3.ProxyProtocolConfig_Version" json:"version,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
}

func (*ProxyProtocolConfig) Descriptor

func (*ProxyProtocolConfig) Descriptor() ([]byte, []int)

func (*ProxyProtocolConfig) Equal

func (this *ProxyProtocolConfig) Equal(that interface{}) bool

func (*ProxyProtocolConfig) GetVersion

func (*ProxyProtocolConfig) ProtoMessage

func (*ProxyProtocolConfig) ProtoMessage()

func (*ProxyProtocolConfig) Reset

func (m *ProxyProtocolConfig) Reset()

func (*ProxyProtocolConfig) String

func (m *ProxyProtocolConfig) String() string

func (*ProxyProtocolConfig) XXX_DiscardUnknown

func (m *ProxyProtocolConfig) XXX_DiscardUnknown()

func (*ProxyProtocolConfig) XXX_Marshal

func (m *ProxyProtocolConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ProxyProtocolConfig) XXX_Merge

func (m *ProxyProtocolConfig) XXX_Merge(src proto.Message)

func (*ProxyProtocolConfig) XXX_Size

func (m *ProxyProtocolConfig) XXX_Size() int

func (*ProxyProtocolConfig) XXX_Unmarshal

func (m *ProxyProtocolConfig) XXX_Unmarshal(b []byte) error

type ProxyProtocolConfig_Version

type ProxyProtocolConfig_Version int32
const (
	// PROXY protocol version 1. Human readable format.
	ProxyProtocolConfig_V1 ProxyProtocolConfig_Version = 0
	// PROXY protocol version 2. Binary format.
	ProxyProtocolConfig_V2 ProxyProtocolConfig_Version = 1
)

func (ProxyProtocolConfig_Version) EnumDescriptor

func (ProxyProtocolConfig_Version) EnumDescriptor() ([]byte, []int)

func (ProxyProtocolConfig_Version) String

type RemoteDataSource

type RemoteDataSource struct {
	// The HTTP URI to fetch the remote data.
	HttpUri *HttpUri `protobuf:"bytes,1,opt,name=http_uri,json=httpUri,proto3" json:"http_uri,omitempty"`
	// SHA256 string for verifying data.
	Sha256 string `protobuf:"bytes,2,opt,name=sha256,proto3" json:"sha256,omitempty"`
	// Retry policy for fetching remote data.
	RetryPolicy          *RetryPolicy `protobuf:"bytes,3,opt,name=retry_policy,json=retryPolicy,proto3" json:"retry_policy,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

The message specifies how to fetch data from remote and how to verify it.

func (*RemoteDataSource) Descriptor

func (*RemoteDataSource) Descriptor() ([]byte, []int)

func (*RemoteDataSource) Equal

func (this *RemoteDataSource) Equal(that interface{}) bool

func (*RemoteDataSource) GetHttpUri

func (m *RemoteDataSource) GetHttpUri() *HttpUri

func (*RemoteDataSource) GetRetryPolicy

func (m *RemoteDataSource) GetRetryPolicy() *RetryPolicy

func (*RemoteDataSource) GetSha256

func (m *RemoteDataSource) GetSha256() string

func (*RemoteDataSource) ProtoMessage

func (*RemoteDataSource) ProtoMessage()

func (*RemoteDataSource) Reset

func (m *RemoteDataSource) Reset()

func (*RemoteDataSource) String

func (m *RemoteDataSource) String() string

func (*RemoteDataSource) XXX_DiscardUnknown

func (m *RemoteDataSource) XXX_DiscardUnknown()

func (*RemoteDataSource) XXX_Marshal

func (m *RemoteDataSource) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RemoteDataSource) XXX_Merge

func (m *RemoteDataSource) XXX_Merge(src proto.Message)

func (*RemoteDataSource) XXX_Size

func (m *RemoteDataSource) XXX_Size() int

func (*RemoteDataSource) XXX_Unmarshal

func (m *RemoteDataSource) XXX_Unmarshal(b []byte) error

type RequestMethod

type RequestMethod int32

HTTP request method.

const (
	RequestMethod_METHOD_UNSPECIFIED RequestMethod = 0
	RequestMethod_GET                RequestMethod = 1
	RequestMethod_HEAD               RequestMethod = 2
	RequestMethod_POST               RequestMethod = 3
	RequestMethod_PUT                RequestMethod = 4
	RequestMethod_DELETE             RequestMethod = 5
	RequestMethod_CONNECT            RequestMethod = 6
	RequestMethod_OPTIONS            RequestMethod = 7
	RequestMethod_TRACE              RequestMethod = 8
	RequestMethod_PATCH              RequestMethod = 9
)

func (RequestMethod) EnumDescriptor

func (RequestMethod) EnumDescriptor() ([]byte, []int)

func (RequestMethod) String

func (x RequestMethod) String() string

type RetryPolicy

type RetryPolicy struct {
	// Specifies parameters that control :ref:`retry backoff strategy <envoy_api_msg_config.core.v3.BackoffStrategy>`.
	// This parameter is optional, in which case the default base interval is 1000 milliseconds. The
	// default maximum interval is 10 times the base interval.
	RetryBackOff *BackoffStrategy `protobuf:"bytes,1,opt,name=retry_back_off,json=retryBackOff,proto3" json:"retry_back_off,omitempty"`
	// Specifies the allowed number of retries. This parameter is optional and
	// defaults to 1.
	NumRetries           *types.UInt32Value `protobuf:"bytes,2,opt,name=num_retries,json=numRetries,proto3" json:"num_retries,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

The message specifies the retry policy of remote data source when fetching fails.

func (*RetryPolicy) Descriptor

func (*RetryPolicy) Descriptor() ([]byte, []int)

func (*RetryPolicy) Equal

func (this *RetryPolicy) Equal(that interface{}) bool

func (*RetryPolicy) GetNumRetries

func (m *RetryPolicy) GetNumRetries() *types.UInt32Value

func (*RetryPolicy) GetRetryBackOff

func (m *RetryPolicy) GetRetryBackOff() *BackoffStrategy

func (*RetryPolicy) ProtoMessage

func (*RetryPolicy) ProtoMessage()

func (*RetryPolicy) Reset

func (m *RetryPolicy) Reset()

func (*RetryPolicy) String

func (m *RetryPolicy) String() string

func (*RetryPolicy) XXX_DiscardUnknown

func (m *RetryPolicy) XXX_DiscardUnknown()

func (*RetryPolicy) XXX_Marshal

func (m *RetryPolicy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RetryPolicy) XXX_Merge

func (m *RetryPolicy) XXX_Merge(src proto.Message)

func (*RetryPolicy) XXX_Size

func (m *RetryPolicy) XXX_Size() int

func (*RetryPolicy) XXX_Unmarshal

func (m *RetryPolicy) XXX_Unmarshal(b []byte) error

type RoutingPriority

type RoutingPriority int32

Envoy supports :ref:`upstream priority routing <arch_overview_http_routing_priority>` both at the route and the virtual cluster level. The current priority implementation uses different connection pool and circuit breaking settings for each priority level. This means that even for HTTP/2 requests, two physical connections will be used to an upstream host. In the future Envoy will likely support true HTTP/2 priority over a single upstream connection.

const (
	RoutingPriority_DEFAULT RoutingPriority = 0
	RoutingPriority_HIGH    RoutingPriority = 1
)

func (RoutingPriority) EnumDescriptor

func (RoutingPriority) EnumDescriptor() ([]byte, []int)

func (RoutingPriority) String

func (x RoutingPriority) String() string

type RuntimeDouble

type RuntimeDouble struct {
	// Default value if runtime value is not available.
	DefaultValue float64 `protobuf:"fixed64,1,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	// Runtime key to get value for comparison. This value is used if defined.
	RuntimeKey           string   `protobuf:"bytes,2,opt,name=runtime_key,json=runtimeKey,proto3" json:"runtime_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Runtime derived double with a default when not specified.

func (*RuntimeDouble) Descriptor

func (*RuntimeDouble) Descriptor() ([]byte, []int)

func (*RuntimeDouble) Equal

func (this *RuntimeDouble) Equal(that interface{}) bool

func (*RuntimeDouble) GetDefaultValue

func (m *RuntimeDouble) GetDefaultValue() float64

func (*RuntimeDouble) GetRuntimeKey

func (m *RuntimeDouble) GetRuntimeKey() string

func (*RuntimeDouble) ProtoMessage

func (*RuntimeDouble) ProtoMessage()

func (*RuntimeDouble) Reset

func (m *RuntimeDouble) Reset()

func (*RuntimeDouble) String

func (m *RuntimeDouble) String() string

func (*RuntimeDouble) XXX_DiscardUnknown

func (m *RuntimeDouble) XXX_DiscardUnknown()

func (*RuntimeDouble) XXX_Marshal

func (m *RuntimeDouble) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeDouble) XXX_Merge

func (m *RuntimeDouble) XXX_Merge(src proto.Message)

func (*RuntimeDouble) XXX_Size

func (m *RuntimeDouble) XXX_Size() int

func (*RuntimeDouble) XXX_Unmarshal

func (m *RuntimeDouble) XXX_Unmarshal(b []byte) error

type RuntimeFeatureFlag

type RuntimeFeatureFlag struct {
	// Default value if runtime value is not available.
	DefaultValue *types.BoolValue `protobuf:"bytes,1,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	// Runtime key to get value for comparison. This value is used if defined. The boolean value must
	// be represented via its
	// `canonical JSON encoding <https://developers.google.com/protocol-buffers/docs/proto3#json>`_.
	RuntimeKey           string   `protobuf:"bytes,2,opt,name=runtime_key,json=runtimeKey,proto3" json:"runtime_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Runtime derived bool with a default when not specified.

func (*RuntimeFeatureFlag) Descriptor

func (*RuntimeFeatureFlag) Descriptor() ([]byte, []int)

func (*RuntimeFeatureFlag) Equal

func (this *RuntimeFeatureFlag) Equal(that interface{}) bool

func (*RuntimeFeatureFlag) GetDefaultValue

func (m *RuntimeFeatureFlag) GetDefaultValue() *types.BoolValue

func (*RuntimeFeatureFlag) GetRuntimeKey

func (m *RuntimeFeatureFlag) GetRuntimeKey() string

func (*RuntimeFeatureFlag) ProtoMessage

func (*RuntimeFeatureFlag) ProtoMessage()

func (*RuntimeFeatureFlag) Reset

func (m *RuntimeFeatureFlag) Reset()

func (*RuntimeFeatureFlag) String

func (m *RuntimeFeatureFlag) String() string

func (*RuntimeFeatureFlag) XXX_DiscardUnknown

func (m *RuntimeFeatureFlag) XXX_DiscardUnknown()

func (*RuntimeFeatureFlag) XXX_Marshal

func (m *RuntimeFeatureFlag) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeFeatureFlag) XXX_Merge

func (m *RuntimeFeatureFlag) XXX_Merge(src proto.Message)

func (*RuntimeFeatureFlag) XXX_Size

func (m *RuntimeFeatureFlag) XXX_Size() int

func (*RuntimeFeatureFlag) XXX_Unmarshal

func (m *RuntimeFeatureFlag) XXX_Unmarshal(b []byte) error

type RuntimeFractionalPercent

type RuntimeFractionalPercent struct {
	// Default value if the runtime value's for the numerator/denominator keys are not available.
	DefaultValue *v3.FractionalPercent `protobuf:"bytes,1,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	// Runtime key for a YAML representation of a FractionalPercent.
	RuntimeKey           string   `protobuf:"bytes,2,opt,name=runtime_key,json=runtimeKey,proto3" json:"runtime_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Runtime derived FractionalPercent with defaults for when the numerator or denominator is not specified via a runtime key.

.. note::

Parsing of the runtime key's data is implemented such that it may be represented as a
:ref:`FractionalPercent <envoy_api_msg_type.v3.FractionalPercent>` proto represented as JSON/YAML
and may also be represented as an integer with the assumption that the value is an integral
percentage out of 100. For instance, a runtime key lookup returning the value "42" would parse
as a `FractionalPercent` whose numerator is 42 and denominator is HUNDRED.

func (*RuntimeFractionalPercent) Descriptor

func (*RuntimeFractionalPercent) Descriptor() ([]byte, []int)

func (*RuntimeFractionalPercent) Equal

func (this *RuntimeFractionalPercent) Equal(that interface{}) bool

func (*RuntimeFractionalPercent) GetDefaultValue

func (m *RuntimeFractionalPercent) GetDefaultValue() *v3.FractionalPercent

func (*RuntimeFractionalPercent) GetRuntimeKey

func (m *RuntimeFractionalPercent) GetRuntimeKey() string

func (*RuntimeFractionalPercent) ProtoMessage

func (*RuntimeFractionalPercent) ProtoMessage()

func (*RuntimeFractionalPercent) Reset

func (m *RuntimeFractionalPercent) Reset()

func (*RuntimeFractionalPercent) String

func (m *RuntimeFractionalPercent) String() string

func (*RuntimeFractionalPercent) XXX_DiscardUnknown

func (m *RuntimeFractionalPercent) XXX_DiscardUnknown()

func (*RuntimeFractionalPercent) XXX_Marshal

func (m *RuntimeFractionalPercent) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeFractionalPercent) XXX_Merge

func (m *RuntimeFractionalPercent) XXX_Merge(src proto.Message)

func (*RuntimeFractionalPercent) XXX_Size

func (m *RuntimeFractionalPercent) XXX_Size() int

func (*RuntimeFractionalPercent) XXX_Unmarshal

func (m *RuntimeFractionalPercent) XXX_Unmarshal(b []byte) error

type RuntimeUInt32

type RuntimeUInt32 struct {
	// Default value if runtime value is not available.
	DefaultValue uint32 `protobuf:"varint,2,opt,name=default_value,json=defaultValue,proto3" json:"default_value,omitempty"`
	// Runtime key to get value for comparison. This value is used if defined.
	RuntimeKey           string   `protobuf:"bytes,3,opt,name=runtime_key,json=runtimeKey,proto3" json:"runtime_key,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

Runtime derived uint32 with a default when not specified.

func (*RuntimeUInt32) Descriptor

func (*RuntimeUInt32) Descriptor() ([]byte, []int)

func (*RuntimeUInt32) Equal

func (this *RuntimeUInt32) Equal(that interface{}) bool

func (*RuntimeUInt32) GetDefaultValue

func (m *RuntimeUInt32) GetDefaultValue() uint32

func (*RuntimeUInt32) GetRuntimeKey

func (m *RuntimeUInt32) GetRuntimeKey() string

func (*RuntimeUInt32) ProtoMessage

func (*RuntimeUInt32) ProtoMessage()

func (*RuntimeUInt32) Reset

func (m *RuntimeUInt32) Reset()

func (*RuntimeUInt32) String

func (m *RuntimeUInt32) String() string

func (*RuntimeUInt32) XXX_DiscardUnknown

func (m *RuntimeUInt32) XXX_DiscardUnknown()

func (*RuntimeUInt32) XXX_Marshal

func (m *RuntimeUInt32) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*RuntimeUInt32) XXX_Merge

func (m *RuntimeUInt32) XXX_Merge(src proto.Message)

func (*RuntimeUInt32) XXX_Size

func (m *RuntimeUInt32) XXX_Size() int

func (*RuntimeUInt32) XXX_Unmarshal

func (m *RuntimeUInt32) XXX_Unmarshal(b []byte) error

type SocketAddress

type SocketAddress struct {
	Protocol SocketAddress_Protocol `protobuf:"varint,1,opt,name=protocol,proto3,enum=envoy.config.core.v3.SocketAddress_Protocol" json:"protocol,omitempty"`
	// The address for this socket. :ref:`Listeners <config_listeners>` will bind
	// to the address. An empty address is not allowed. Specify “0.0.0.0“ or “::“
	// to bind to any address. [#comment:TODO(zuercher) reinstate when implemented:
	// It is possible to distinguish a Listener address via the prefix/suffix matching
	// in :ref:`FilterChainMatch <envoy_api_msg_config.listener.v3.FilterChainMatch>`.] When used
	// within an upstream :ref:`BindConfig <envoy_api_msg_config.core.v3.BindConfig>`, the address
	// controls the source address of outbound connections. For :ref:`clusters
	// <envoy_api_msg_config.cluster.v3.Cluster>`, the cluster type determines whether the
	// address must be an IP (*STATIC* or *EDS* clusters) or a hostname resolved by DNS
	// (*STRICT_DNS* or *LOGICAL_DNS* clusters). Address resolution can be customized
	// via :ref:`resolver_name <envoy_api_field_config.core.v3.SocketAddress.resolver_name>`.
	Address string `protobuf:"bytes,2,opt,name=address,proto3" json:"address,omitempty"`
	// Types that are valid to be assigned to PortSpecifier:
	//	*SocketAddress_PortValue
	//	*SocketAddress_NamedPort
	PortSpecifier isSocketAddress_PortSpecifier `protobuf_oneof:"port_specifier"`
	// The name of the custom resolver. This must have been registered with Envoy. If
	// this is empty, a context dependent default applies. If the address is a concrete
	// IP address, no resolution will occur. If address is a hostname this
	// should be set for resolution other than DNS. Specifying a custom resolver with
	// *STRICT_DNS* or *LOGICAL_DNS* will generate an error at runtime.
	ResolverName string `protobuf:"bytes,5,opt,name=resolver_name,json=resolverName,proto3" json:"resolver_name,omitempty"`
	// When binding to an IPv6 address above, this enables `IPv4 compatibility
	// <https://tools.ietf.org/html/rfc3493#page-11>`_. Binding to “::“ will
	// allow both IPv4 and IPv6 connections, with peer IPv4 addresses mapped into
	// IPv6 space as “::FFFF:<IPv4-address>“.
	Ipv4Compat           bool     `protobuf:"varint,6,opt,name=ipv4_compat,json=ipv4Compat,proto3" json:"ipv4_compat,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

[#next-free-field: 7]

func (*SocketAddress) Descriptor

func (*SocketAddress) Descriptor() ([]byte, []int)

func (*SocketAddress) Equal

func (this *SocketAddress) Equal(that interface{}) bool

func (*SocketAddress) GetAddress

func (m *SocketAddress) GetAddress() string

func (*SocketAddress) GetIpv4Compat

func (m *SocketAddress) GetIpv4Compat() bool

func (*SocketAddress) GetNamedPort

func (m *SocketAddress) GetNamedPort() string

func (*SocketAddress) GetPortSpecifier

func (m *SocketAddress) GetPortSpecifier() isSocketAddress_PortSpecifier

func (*SocketAddress) GetPortValue

func (m *SocketAddress) GetPortValue() uint32

func (*SocketAddress) GetProtocol

func (m *SocketAddress) GetProtocol() SocketAddress_Protocol

func (*SocketAddress) GetResolverName

func (m *SocketAddress) GetResolverName() string

func (*SocketAddress) ProtoMessage

func (*SocketAddress) ProtoMessage()

func (*SocketAddress) Reset

func (m *SocketAddress) Reset()

func (*SocketAddress) String

func (m *SocketAddress) String() string

func (*SocketAddress) XXX_DiscardUnknown

func (m *SocketAddress) XXX_DiscardUnknown()

func (*SocketAddress) XXX_Marshal

func (m *SocketAddress) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SocketAddress) XXX_Merge

func (m *SocketAddress) XXX_Merge(src proto.Message)

func (*SocketAddress) XXX_OneofWrappers

func (*SocketAddress) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*SocketAddress) XXX_Size

func (m *SocketAddress) XXX_Size() int

func (*SocketAddress) XXX_Unmarshal

func (m *SocketAddress) XXX_Unmarshal(b []byte) error

type SocketAddress_NamedPort

type SocketAddress_NamedPort struct {
	NamedPort string `protobuf:"bytes,4,opt,name=named_port,json=namedPort,proto3,oneof" json:"named_port,omitempty"`
}

func (*SocketAddress_NamedPort) Equal

func (this *SocketAddress_NamedPort) Equal(that interface{}) bool

type SocketAddress_PortValue

type SocketAddress_PortValue struct {
	PortValue uint32 `protobuf:"varint,3,opt,name=port_value,json=portValue,proto3,oneof" json:"port_value,omitempty"`
}

func (*SocketAddress_PortValue) Equal

func (this *SocketAddress_PortValue) Equal(that interface{}) bool

type SocketAddress_Protocol

type SocketAddress_Protocol int32
const (
	SocketAddress_TCP SocketAddress_Protocol = 0
	SocketAddress_UDP SocketAddress_Protocol = 1
)

func (SocketAddress_Protocol) EnumDescriptor

func (SocketAddress_Protocol) EnumDescriptor() ([]byte, []int)

func (SocketAddress_Protocol) String

func (x SocketAddress_Protocol) String() string

type SocketOption

type SocketOption struct {
	// An optional name to give this socket option for debugging, etc.
	// Uniqueness is not required and no special meaning is assumed.
	Description string `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
	// Corresponding to the level value passed to setsockopt, such as IPPROTO_TCP
	Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level,omitempty"`
	// The numeric name as passed to setsockopt
	Name int64 `protobuf:"varint,3,opt,name=name,proto3" json:"name,omitempty"`
	// Types that are valid to be assigned to Value:
	//	*SocketOption_IntValue
	//	*SocketOption_BufValue
	Value isSocketOption_Value `protobuf_oneof:"value"`
	// The state in which the option will be applied. When used in BindConfig
	// STATE_PREBIND is currently the only valid value.
	State                SocketOption_SocketState `protobuf:"varint,6,opt,name=state,proto3,enum=envoy.config.core.v3.SocketOption_SocketState" json:"state,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

Generic socket option message. This would be used to set socket options that might not exist in upstream kernels or precompiled Envoy binaries. [#next-free-field: 7]

func (*SocketOption) Descriptor

func (*SocketOption) Descriptor() ([]byte, []int)

func (*SocketOption) Equal

func (this *SocketOption) Equal(that interface{}) bool

func (*SocketOption) GetBufValue

func (m *SocketOption) GetBufValue() []byte

func (*SocketOption) GetDescription

func (m *SocketOption) GetDescription() string

func (*SocketOption) GetIntValue

func (m *SocketOption) GetIntValue() int64

func (*SocketOption) GetLevel

func (m *SocketOption) GetLevel() int64

func (*SocketOption) GetName

func (m *SocketOption) GetName() int64

func (*SocketOption) GetState

func (m *SocketOption) GetState() SocketOption_SocketState

func (*SocketOption) GetValue

func (m *SocketOption) GetValue() isSocketOption_Value

func (*SocketOption) ProtoMessage

func (*SocketOption) ProtoMessage()

func (*SocketOption) Reset

func (m *SocketOption) Reset()

func (*SocketOption) String

func (m *SocketOption) String() string

func (*SocketOption) XXX_DiscardUnknown

func (m *SocketOption) XXX_DiscardUnknown()

func (*SocketOption) XXX_Marshal

func (m *SocketOption) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SocketOption) XXX_Merge

func (m *SocketOption) XXX_Merge(src proto.Message)

func (*SocketOption) XXX_OneofWrappers

func (*SocketOption) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*SocketOption) XXX_Size

func (m *SocketOption) XXX_Size() int

func (*SocketOption) XXX_Unmarshal

func (m *SocketOption) XXX_Unmarshal(b []byte) error

type SocketOption_BufValue

type SocketOption_BufValue struct {
	BufValue []byte `protobuf:"bytes,5,opt,name=buf_value,json=bufValue,proto3,oneof" json:"buf_value,omitempty"`
}

func (*SocketOption_BufValue) Equal

func (this *SocketOption_BufValue) Equal(that interface{}) bool

type SocketOption_IntValue

type SocketOption_IntValue struct {
	IntValue int64 `protobuf:"varint,4,opt,name=int_value,json=intValue,proto3,oneof" json:"int_value,omitempty"`
}

func (*SocketOption_IntValue) Equal

func (this *SocketOption_IntValue) Equal(that interface{}) bool

type SocketOption_SocketState

type SocketOption_SocketState int32
const (
	// Socket options are applied after socket creation but before binding the socket to a port
	SocketOption_STATE_PREBIND SocketOption_SocketState = 0
	// Socket options are applied after binding the socket to a port but before calling listen()
	SocketOption_STATE_BOUND SocketOption_SocketState = 1
	// Socket options are applied after calling listen()
	SocketOption_STATE_LISTENING SocketOption_SocketState = 2
)

func (SocketOption_SocketState) EnumDescriptor

func (SocketOption_SocketState) EnumDescriptor() ([]byte, []int)

func (SocketOption_SocketState) String

func (x SocketOption_SocketState) String() string

type TcpKeepalive

type TcpKeepalive struct {
	// Maximum number of keepalive probes to send without response before deciding
	// the connection is dead. Default is to use the OS level configuration (unless
	// overridden, Linux defaults to 9.)
	KeepaliveProbes *types.UInt32Value `protobuf:"bytes,1,opt,name=keepalive_probes,json=keepaliveProbes,proto3" json:"keepalive_probes,omitempty"`
	// The number of seconds a connection needs to be idle before keep-alive probes
	// start being sent. Default is to use the OS level configuration (unless
	// overridden, Linux defaults to 7200s (i.e., 2 hours.)
	KeepaliveTime *types.UInt32Value `protobuf:"bytes,2,opt,name=keepalive_time,json=keepaliveTime,proto3" json:"keepalive_time,omitempty"`
	// The number of seconds between keep-alive probes. Default is to use the OS
	// level configuration (unless overridden, Linux defaults to 75s.)
	KeepaliveInterval    *types.UInt32Value `protobuf:"bytes,3,opt,name=keepalive_interval,json=keepaliveInterval,proto3" json:"keepalive_interval,omitempty"`
	XXX_NoUnkeyedLiteral struct{}           `json:"-"`
	XXX_unrecognized     []byte             `json:"-"`
	XXX_sizecache        int32              `json:"-"`
}

func (*TcpKeepalive) Descriptor

func (*TcpKeepalive) Descriptor() ([]byte, []int)

func (*TcpKeepalive) Equal

func (this *TcpKeepalive) Equal(that interface{}) bool

func (*TcpKeepalive) GetKeepaliveInterval

func (m *TcpKeepalive) GetKeepaliveInterval() *types.UInt32Value

func (*TcpKeepalive) GetKeepaliveProbes

func (m *TcpKeepalive) GetKeepaliveProbes() *types.UInt32Value

func (*TcpKeepalive) GetKeepaliveTime

func (m *TcpKeepalive) GetKeepaliveTime() *types.UInt32Value

func (*TcpKeepalive) ProtoMessage

func (*TcpKeepalive) ProtoMessage()

func (*TcpKeepalive) Reset

func (m *TcpKeepalive) Reset()

func (*TcpKeepalive) String

func (m *TcpKeepalive) String() string

func (*TcpKeepalive) XXX_DiscardUnknown

func (m *TcpKeepalive) XXX_DiscardUnknown()

func (*TcpKeepalive) XXX_Marshal

func (m *TcpKeepalive) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TcpKeepalive) XXX_Merge

func (m *TcpKeepalive) XXX_Merge(src proto.Message)

func (*TcpKeepalive) XXX_Size

func (m *TcpKeepalive) XXX_Size() int

func (*TcpKeepalive) XXX_Unmarshal

func (m *TcpKeepalive) XXX_Unmarshal(b []byte) error

type TrafficDirection

type TrafficDirection int32

Identifies the direction of the traffic relative to the local Envoy.

const (
	// Default option is unspecified.
	TrafficDirection_UNSPECIFIED TrafficDirection = 0
	// The transport is used for incoming traffic.
	TrafficDirection_INBOUND TrafficDirection = 1
	// The transport is used for outgoing traffic.
	TrafficDirection_OUTBOUND TrafficDirection = 2
)

func (TrafficDirection) EnumDescriptor

func (TrafficDirection) EnumDescriptor() ([]byte, []int)

func (TrafficDirection) String

func (x TrafficDirection) String() string

type TransportSocket

type TransportSocket struct {
	// The name of the transport socket to instantiate. The name must match a supported transport
	// socket implementation.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// Implementation specific configuration which depends on the implementation being instantiated.
	// See the supported transport socket implementations for further documentation.
	//
	// Types that are valid to be assigned to ConfigType:
	//	*TransportSocket_TypedConfig
	ConfigType           isTransportSocket_ConfigType `protobuf_oneof:"config_type"`
	XXX_NoUnkeyedLiteral struct{}                     `json:"-"`
	XXX_unrecognized     []byte                       `json:"-"`
	XXX_sizecache        int32                        `json:"-"`
}

Configuration for transport socket in :ref:`listeners <config_listeners>` and :ref:`clusters <envoy_api_msg_config.cluster.v3.Cluster>`. If the configuration is empty, a default transport socket implementation and configuration will be chosen based on the platform and existence of tls_context.

func (*TransportSocket) Descriptor

func (*TransportSocket) Descriptor() ([]byte, []int)

func (*TransportSocket) Equal

func (this *TransportSocket) Equal(that interface{}) bool

func (*TransportSocket) GetConfigType

func (m *TransportSocket) GetConfigType() isTransportSocket_ConfigType

func (*TransportSocket) GetName

func (m *TransportSocket) GetName() string

func (*TransportSocket) GetTypedConfig

func (m *TransportSocket) GetTypedConfig() *types.Any

func (*TransportSocket) ProtoMessage

func (*TransportSocket) ProtoMessage()

func (*TransportSocket) Reset

func (m *TransportSocket) Reset()

func (*TransportSocket) String

func (m *TransportSocket) String() string

func (*TransportSocket) XXX_DiscardUnknown

func (m *TransportSocket) XXX_DiscardUnknown()

func (*TransportSocket) XXX_Marshal

func (m *TransportSocket) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransportSocket) XXX_Merge

func (m *TransportSocket) XXX_Merge(src proto.Message)

func (*TransportSocket) XXX_OneofWrappers

func (*TransportSocket) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*TransportSocket) XXX_Size

func (m *TransportSocket) XXX_Size() int

func (*TransportSocket) XXX_Unmarshal

func (m *TransportSocket) XXX_Unmarshal(b []byte) error

type TransportSocket_TypedConfig

type TransportSocket_TypedConfig struct {
	TypedConfig *types.Any `protobuf:"bytes,3,opt,name=typed_config,json=typedConfig,proto3,oneof" json:"typed_config,omitempty"`
}

func (*TransportSocket_TypedConfig) Equal

func (this *TransportSocket_TypedConfig) Equal(that interface{}) bool

type TypedExtensionConfig

type TypedExtensionConfig struct {
	// The name of an extension. This is not used to select the extension, instead
	// it serves the role of an opaque identifier.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The typed config for the extension. The type URL will be used to identify
	// the extension. In the case that the type URL is *udpa.type.v1.TypedStruct*,
	// the inner type URL of *TypedStruct* will be utilized. See the
	// :ref:`extension configuration overview
	// <config_overview_extension_configuration>` for further details.
	TypedConfig          *types.Any `protobuf:"bytes,2,opt,name=typed_config,json=typedConfig,proto3" json:"typed_config,omitempty"`
	XXX_NoUnkeyedLiteral struct{}   `json:"-"`
	XXX_unrecognized     []byte     `json:"-"`
	XXX_sizecache        int32      `json:"-"`
}

Message type for extension configuration. [#next-major-version: revisit all existing typed_config that doesn't use this wrapper.].

func (*TypedExtensionConfig) Descriptor

func (*TypedExtensionConfig) Descriptor() ([]byte, []int)

func (*TypedExtensionConfig) Equal

func (this *TypedExtensionConfig) Equal(that interface{}) bool

func (*TypedExtensionConfig) GetName

func (m *TypedExtensionConfig) GetName() string

func (*TypedExtensionConfig) GetTypedConfig

func (m *TypedExtensionConfig) GetTypedConfig() *types.Any

func (*TypedExtensionConfig) ProtoMessage

func (*TypedExtensionConfig) ProtoMessage()

func (*TypedExtensionConfig) Reset

func (m *TypedExtensionConfig) Reset()

func (*TypedExtensionConfig) String

func (m *TypedExtensionConfig) String() string

func (*TypedExtensionConfig) XXX_DiscardUnknown

func (m *TypedExtensionConfig) XXX_DiscardUnknown()

func (*TypedExtensionConfig) XXX_Marshal

func (m *TypedExtensionConfig) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TypedExtensionConfig) XXX_Merge

func (m *TypedExtensionConfig) XXX_Merge(src proto.Message)

func (*TypedExtensionConfig) XXX_Size

func (m *TypedExtensionConfig) XXX_Size() int

func (*TypedExtensionConfig) XXX_Unmarshal

func (m *TypedExtensionConfig) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL