import "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/http/cache/v4alpha"
cache.pb.go cache.pb.validate.go
var File_envoy_extensions_filters_http_cache_v4alpha_cache_proto protoreflect.FileDescriptor
type CacheConfig struct { // Config specific to the cache storage implementation. TypedConfig *any.Any `protobuf:"bytes,1,opt,name=typed_config,json=typedConfig,proto3" json:"typed_config,omitempty"` // List of matching rules that defines allowed *Vary* headers. // // The *vary* response header holds a list of header names that affect the // contents of a response, as described by // https://httpwg.org/specs/rfc7234.html#caching.negotiated.responses. // // During insertion, *allowed_vary_headers* acts as a allowlist: if a // response's *vary* header mentions any header names that aren't matched by any rules in // *allowed_vary_headers*, that response will not be cached. // // During lookup, *allowed_vary_headers* controls what request headers will be // sent to the cache storage implementation. AllowedVaryHeaders []*v4alpha.StringMatcher `protobuf:"bytes,2,rep,name=allowed_vary_headers,json=allowedVaryHeaders,proto3" json:"allowed_vary_headers,omitempty"` // [#not-implemented-hide:] // <TODO(toddmgreer) implement key customization> // // Modifies cache key creation by restricting which parts of the URL are included. KeyCreatorParams *CacheConfig_KeyCreatorParams `protobuf:"bytes,3,opt,name=key_creator_params,json=keyCreatorParams,proto3" json:"key_creator_params,omitempty"` // [#not-implemented-hide:] // <TODO(toddmgreer) implement size limit> // // Max body size the cache filter will insert into a cache. 0 means unlimited (though the cache // storage implementation may have its own limit beyond which it will reject insertions). MaxBodyBytes uint32 `protobuf:"varint,4,opt,name=max_body_bytes,json=maxBodyBytes,proto3" json:"max_body_bytes,omitempty"` // contains filtered or unexported fields }
func (*CacheConfig) Descriptor() ([]byte, []int)
Deprecated: Use CacheConfig.ProtoReflect.Descriptor instead.
func (x *CacheConfig) GetAllowedVaryHeaders() []*v4alpha.StringMatcher
func (x *CacheConfig) GetKeyCreatorParams() *CacheConfig_KeyCreatorParams
func (x *CacheConfig) GetMaxBodyBytes() uint32
func (x *CacheConfig) GetTypedConfig() *any.Any
func (*CacheConfig) ProtoMessage()
func (x *CacheConfig) ProtoReflect() protoreflect.Message
func (x *CacheConfig) Reset()
func (x *CacheConfig) String() string
func (m *CacheConfig) Validate() error
Validate checks the field values on CacheConfig with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type CacheConfigValidationError struct {
// contains filtered or unexported fields
}
CacheConfigValidationError is the validation error returned by CacheConfig.Validate if the designated constraints aren't met.
func (e CacheConfigValidationError) Cause() error
Cause function returns cause value.
func (e CacheConfigValidationError) Error() string
Error satisfies the builtin error interface
func (e CacheConfigValidationError) ErrorName() string
ErrorName returns error name.
func (e CacheConfigValidationError) Field() string
Field function returns field value.
func (e CacheConfigValidationError) Key() bool
Key function returns key value.
func (e CacheConfigValidationError) Reason() string
Reason function returns reason value.
type CacheConfig_KeyCreatorParams struct { // If true, exclude the URL scheme from the cache key. Set to true if your origins always // produce the same response for http and https requests. ExcludeScheme bool `protobuf:"varint,1,opt,name=exclude_scheme,json=excludeScheme,proto3" json:"exclude_scheme,omitempty"` // If true, exclude the host from the cache key. Set to true if your origins' responses don't // ever depend on host. ExcludeHost bool `protobuf:"varint,2,opt,name=exclude_host,json=excludeHost,proto3" json:"exclude_host,omitempty"` // If *query_parameters_included* is nonempty, only query parameters matched // by one or more of its matchers are included in the cache key. Any other // query params will not affect cache lookup. QueryParametersIncluded []*v4alpha1.QueryParameterMatcher `protobuf:"bytes,3,rep,name=query_parameters_included,json=queryParametersIncluded,proto3" json:"query_parameters_included,omitempty"` // If *query_parameters_excluded* is nonempty, query parameters matched by one // or more of its matchers are excluded from the cache key (even if also // matched by *query_parameters_included*), and will not affect cache lookup. QueryParametersExcluded []*v4alpha1.QueryParameterMatcher `protobuf:"bytes,4,rep,name=query_parameters_excluded,json=queryParametersExcluded,proto3" json:"query_parameters_excluded,omitempty"` // contains filtered or unexported fields }
[#not-implemented-hide:] Modifies cache key creation by restricting which parts of the URL are included.
func (*CacheConfig_KeyCreatorParams) Descriptor() ([]byte, []int)
Deprecated: Use CacheConfig_KeyCreatorParams.ProtoReflect.Descriptor instead.
func (x *CacheConfig_KeyCreatorParams) GetExcludeHost() bool
func (x *CacheConfig_KeyCreatorParams) GetExcludeScheme() bool
func (x *CacheConfig_KeyCreatorParams) GetQueryParametersExcluded() []*v4alpha1.QueryParameterMatcher
func (x *CacheConfig_KeyCreatorParams) GetQueryParametersIncluded() []*v4alpha1.QueryParameterMatcher
func (*CacheConfig_KeyCreatorParams) ProtoMessage()
func (x *CacheConfig_KeyCreatorParams) ProtoReflect() protoreflect.Message
func (x *CacheConfig_KeyCreatorParams) Reset()
func (x *CacheConfig_KeyCreatorParams) String() string
func (m *CacheConfig_KeyCreatorParams) Validate() error
Validate checks the field values on CacheConfig_KeyCreatorParams with the rules defined in the proto definition for this message. If any rules are violated, an error is returned.
type CacheConfig_KeyCreatorParamsValidationError struct {
// contains filtered or unexported fields
}
CacheConfig_KeyCreatorParamsValidationError is the validation error returned by CacheConfig_KeyCreatorParams.Validate if the designated constraints aren't met.
func (e CacheConfig_KeyCreatorParamsValidationError) Cause() error
Cause function returns cause value.
func (e CacheConfig_KeyCreatorParamsValidationError) Error() string
Error satisfies the builtin error interface
func (e CacheConfig_KeyCreatorParamsValidationError) ErrorName() string
ErrorName returns error name.
func (e CacheConfig_KeyCreatorParamsValidationError) Field() string
Field function returns field value.
func (e CacheConfig_KeyCreatorParamsValidationError) Key() bool
Key function returns key value.
func (e CacheConfig_KeyCreatorParamsValidationError) Reason() string
Reason function returns reason value.
Package envoy_extensions_filters_http_cache_v4alpha imports 21 packages (graph) and is imported by 6 packages. Updated 2021-01-08. Refresh now. Tools for package owners.