compressorv3

package
v0.10.5 Latest Latest
Warning

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

Go to latest
Published: Jan 12, 2023 License: Apache-2.0 Imports: 21 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_envoy_extensions_filters_http_compressor_v3_compressor_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Compressor

type Compressor struct {

	// Minimum response length, in bytes, which will trigger compression. The default value is 30.
	//
	// Deprecated: Do not use.
	ContentLength *wrappers.UInt32Value `protobuf:"bytes,1,opt,name=content_length,json=contentLength,proto3" json:"content_length,omitempty"`
	// Set of strings that allows specifying which mime-types yield compression; e.g.,
	// application/json, text/html, etc. When this field is not defined, compression will be applied
	// to the following mime-types: "application/javascript", "application/json",
	// "application/xhtml+xml", "image/svg+xml", "text/css", "text/html", "text/plain", "text/xml"
	// and their synonyms.
	//
	// Deprecated: Do not use.
	ContentType []string `protobuf:"bytes,2,rep,name=content_type,json=contentType,proto3" json:"content_type,omitempty"`
	// If true, disables compression when the response contains an etag header. When it is false, the
	// filter will preserve weak etags and remove the ones that require strong validation.
	//
	// Deprecated: Do not use.
	DisableOnEtagHeader bool `protobuf:"varint,3,opt,name=disable_on_etag_header,json=disableOnEtagHeader,proto3" json:"disable_on_etag_header,omitempty"`
	// If true, removes accept-encoding from the request headers before dispatching it to the upstream
	// so that responses do not get compressed before reaching the filter.
	//
	// .. attention::
	//
	//    To avoid interfering with other compression filters in the same chain use this option in
	//    the filter closest to the upstream.
	//
	// Deprecated: Do not use.
	RemoveAcceptEncodingHeader bool `` /* 144-byte string literal not displayed */
	// Runtime flag that controls whether the filter is enabled or not. If set to false, the
	// filter will operate as a pass-through filter. If not specified, defaults to enabled.
	//
	// Deprecated: Do not use.
	RuntimeEnabled *v3.RuntimeFeatureFlag `protobuf:"bytes,5,opt,name=runtime_enabled,json=runtimeEnabled,proto3" json:"runtime_enabled,omitempty"`
	// A compressor library to use for compression. Currently only
	// :ref:`envoy.compression.gzip.compressor<envoy_v3_api_msg_extensions.compression.gzip.compressor.v3.Gzip>`
	// is included in Envoy.
	// [#extension-category: envoy.compression.compressor]
	CompressorLibrary *v3.TypedExtensionConfig `protobuf:"bytes,6,opt,name=compressor_library,json=compressorLibrary,proto3" json:"compressor_library,omitempty"`
	// Configuration for request compression. Compression is disabled by default if left empty.
	RequestDirectionConfig *Compressor_RequestDirectionConfig `` /* 129-byte string literal not displayed */
	// Configuration for response compression. Compression is enabled by default if left empty.
	//
	// .. attention::
	//
	//    If the field is not empty then the duplicate deprecated fields of the `Compressor` message,
	//    such as `content_length`, `content_type`, `disable_on_etag_header`,
	//    `remove_accept_encoding_header` and `runtime_enabled`, are ignored.
	//
	//    Also all the statistics related to response compression will be rooted in
	//    `<stat_prefix>.compressor.<compressor_library.name>.<compressor_library_stat_prefix>.response.*`
	//    instead of
	//    `<stat_prefix>.compressor.<compressor_library.name>.<compressor_library_stat_prefix>.*`.
	ResponseDirectionConfig *Compressor_ResponseDirectionConfig `` /* 132-byte string literal not displayed */
	// contains filtered or unexported fields
}

[#next-free-field: 9]

func (*Compressor) Descriptor deprecated

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

Deprecated: Use Compressor.ProtoReflect.Descriptor instead.

func (*Compressor) GetCompressorLibrary

func (x *Compressor) GetCompressorLibrary() *v3.TypedExtensionConfig

func (*Compressor) GetContentLength deprecated

func (x *Compressor) GetContentLength() *wrappers.UInt32Value

Deprecated: Do not use.

func (*Compressor) GetContentType deprecated

func (x *Compressor) GetContentType() []string

Deprecated: Do not use.

func (*Compressor) GetDisableOnEtagHeader deprecated

func (x *Compressor) GetDisableOnEtagHeader() bool

Deprecated: Do not use.

func (*Compressor) GetRemoveAcceptEncodingHeader deprecated

func (x *Compressor) GetRemoveAcceptEncodingHeader() bool

Deprecated: Do not use.

func (*Compressor) GetRequestDirectionConfig

func (x *Compressor) GetRequestDirectionConfig() *Compressor_RequestDirectionConfig

func (*Compressor) GetResponseDirectionConfig

func (x *Compressor) GetResponseDirectionConfig() *Compressor_ResponseDirectionConfig

func (*Compressor) GetRuntimeEnabled deprecated

func (x *Compressor) GetRuntimeEnabled() *v3.RuntimeFeatureFlag

Deprecated: Do not use.

func (*Compressor) ProtoMessage

func (*Compressor) ProtoMessage()

func (*Compressor) ProtoReflect

func (x *Compressor) ProtoReflect() protoreflect.Message

func (*Compressor) Reset

func (x *Compressor) Reset()

func (*Compressor) String

func (x *Compressor) String() string

func (*Compressor) Validate

func (m *Compressor) Validate() error

Validate checks the field values on Compressor 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 (*Compressor) ValidateAll

func (m *Compressor) ValidateAll() error

ValidateAll checks the field values on Compressor 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 CompressorMultiError, or nil if none found.

type CompressorMultiError

type CompressorMultiError []error

CompressorMultiError is an error wrapping multiple validation errors returned by Compressor.ValidateAll() if the designated constraints aren't met.

func (CompressorMultiError) AllErrors

func (m CompressorMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (CompressorMultiError) Error

func (m CompressorMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type CompressorValidationError

type CompressorValidationError struct {
	// contains filtered or unexported fields
}

CompressorValidationError is the validation error returned by Compressor.Validate if the designated constraints aren't met.

func (CompressorValidationError) Cause

func (e CompressorValidationError) Cause() error

Cause function returns cause value.

func (CompressorValidationError) Error

Error satisfies the builtin error interface

func (CompressorValidationError) ErrorName

func (e CompressorValidationError) ErrorName() string

ErrorName returns error name.

func (CompressorValidationError) Field

Field function returns field value.

func (CompressorValidationError) Key

Key function returns key value.

func (CompressorValidationError) Reason

func (e CompressorValidationError) Reason() string

Reason function returns reason value.

type Compressor_CommonDirectionConfig

type Compressor_CommonDirectionConfig struct {

	// Runtime flag that controls whether compression is enabled or not for the direction this
	// common config is put in. If set to false, the filter will operate as a pass-through filter
	// in the chosen direction. If the field is omitted, the filter will be enabled.
	Enabled *v3.RuntimeFeatureFlag `protobuf:"bytes,1,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// Minimum value of Content-Length header of request or response messages (depending on the direction
	// this common config is put in), in bytes, which will trigger compression. The default value is 30.
	MinContentLength *wrappers.UInt32Value `protobuf:"bytes,2,opt,name=min_content_length,json=minContentLength,proto3" json:"min_content_length,omitempty"`
	// Set of strings that allows specifying which mime-types yield compression; e.g.,
	// application/json, text/html, etc. When this field is not defined, compression will be applied
	// to the following mime-types: "application/javascript", "application/json",
	// "application/xhtml+xml", "image/svg+xml", "text/css", "text/html", "text/plain", "text/xml"
	// and their synonyms.
	ContentType []string `protobuf:"bytes,3,rep,name=content_type,json=contentType,proto3" json:"content_type,omitempty"`
	// contains filtered or unexported fields
}

func (*Compressor_CommonDirectionConfig) Descriptor deprecated

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

Deprecated: Use Compressor_CommonDirectionConfig.ProtoReflect.Descriptor instead.

func (*Compressor_CommonDirectionConfig) GetContentType

func (x *Compressor_CommonDirectionConfig) GetContentType() []string

func (*Compressor_CommonDirectionConfig) GetEnabled

func (*Compressor_CommonDirectionConfig) GetMinContentLength

func (x *Compressor_CommonDirectionConfig) GetMinContentLength() *wrappers.UInt32Value

func (*Compressor_CommonDirectionConfig) ProtoMessage

func (*Compressor_CommonDirectionConfig) ProtoMessage()

func (*Compressor_CommonDirectionConfig) ProtoReflect

func (*Compressor_CommonDirectionConfig) Reset

func (*Compressor_CommonDirectionConfig) String

func (*Compressor_CommonDirectionConfig) Validate

Validate checks the field values on Compressor_CommonDirectionConfig 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 (*Compressor_CommonDirectionConfig) ValidateAll

func (m *Compressor_CommonDirectionConfig) ValidateAll() error

ValidateAll checks the field values on Compressor_CommonDirectionConfig 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 Compressor_CommonDirectionConfigMultiError, or nil if none found.

type Compressor_CommonDirectionConfigMultiError

type Compressor_CommonDirectionConfigMultiError []error

Compressor_CommonDirectionConfigMultiError is an error wrapping multiple validation errors returned by Compressor_CommonDirectionConfig.ValidateAll() if the designated constraints aren't met.

func (Compressor_CommonDirectionConfigMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (Compressor_CommonDirectionConfigMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type Compressor_CommonDirectionConfigValidationError

type Compressor_CommonDirectionConfigValidationError struct {
	// contains filtered or unexported fields
}

Compressor_CommonDirectionConfigValidationError is the validation error returned by Compressor_CommonDirectionConfig.Validate if the designated constraints aren't met.

func (Compressor_CommonDirectionConfigValidationError) Cause

Cause function returns cause value.

func (Compressor_CommonDirectionConfigValidationError) Error

Error satisfies the builtin error interface

func (Compressor_CommonDirectionConfigValidationError) ErrorName

ErrorName returns error name.

func (Compressor_CommonDirectionConfigValidationError) Field

Field function returns field value.

func (Compressor_CommonDirectionConfigValidationError) Key

Key function returns key value.

func (Compressor_CommonDirectionConfigValidationError) Reason

Reason function returns reason value.

type Compressor_RequestDirectionConfig

type Compressor_RequestDirectionConfig struct {
	CommonConfig *Compressor_CommonDirectionConfig `protobuf:"bytes,1,opt,name=common_config,json=commonConfig,proto3" json:"common_config,omitempty"`
	// contains filtered or unexported fields
}

Configuration for filter behavior on the request direction.

func (*Compressor_RequestDirectionConfig) Descriptor deprecated

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

Deprecated: Use Compressor_RequestDirectionConfig.ProtoReflect.Descriptor instead.

func (*Compressor_RequestDirectionConfig) GetCommonConfig

func (*Compressor_RequestDirectionConfig) ProtoMessage

func (*Compressor_RequestDirectionConfig) ProtoMessage()

func (*Compressor_RequestDirectionConfig) ProtoReflect

func (*Compressor_RequestDirectionConfig) Reset

func (*Compressor_RequestDirectionConfig) String

func (*Compressor_RequestDirectionConfig) Validate

Validate checks the field values on Compressor_RequestDirectionConfig 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 (*Compressor_RequestDirectionConfig) ValidateAll

func (m *Compressor_RequestDirectionConfig) ValidateAll() error

ValidateAll checks the field values on Compressor_RequestDirectionConfig 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 Compressor_RequestDirectionConfigMultiError, or nil if none found.

type Compressor_RequestDirectionConfigMultiError

type Compressor_RequestDirectionConfigMultiError []error

Compressor_RequestDirectionConfigMultiError is an error wrapping multiple validation errors returned by Compressor_RequestDirectionConfig.ValidateAll() if the designated constraints aren't met.

func (Compressor_RequestDirectionConfigMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (Compressor_RequestDirectionConfigMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type Compressor_RequestDirectionConfigValidationError

type Compressor_RequestDirectionConfigValidationError struct {
	// contains filtered or unexported fields
}

Compressor_RequestDirectionConfigValidationError is the validation error returned by Compressor_RequestDirectionConfig.Validate if the designated constraints aren't met.

func (Compressor_RequestDirectionConfigValidationError) Cause

Cause function returns cause value.

func (Compressor_RequestDirectionConfigValidationError) Error

Error satisfies the builtin error interface

func (Compressor_RequestDirectionConfigValidationError) ErrorName

ErrorName returns error name.

func (Compressor_RequestDirectionConfigValidationError) Field

Field function returns field value.

func (Compressor_RequestDirectionConfigValidationError) Key

Key function returns key value.

func (Compressor_RequestDirectionConfigValidationError) Reason

Reason function returns reason value.

type Compressor_ResponseDirectionConfig

type Compressor_ResponseDirectionConfig struct {
	CommonConfig *Compressor_CommonDirectionConfig `protobuf:"bytes,1,opt,name=common_config,json=commonConfig,proto3" json:"common_config,omitempty"`
	// If true, disables compression when the response contains an etag header. When it is false, the
	// filter will preserve weak etags and remove the ones that require strong validation.
	DisableOnEtagHeader bool `protobuf:"varint,2,opt,name=disable_on_etag_header,json=disableOnEtagHeader,proto3" json:"disable_on_etag_header,omitempty"`
	// If true, removes accept-encoding from the request headers before dispatching it to the upstream
	// so that responses do not get compressed before reaching the filter.
	//
	// .. attention::
	//
	//    To avoid interfering with other compression filters in the same chain use this option in
	//    the filter closest to the upstream.
	RemoveAcceptEncodingHeader bool `` /* 144-byte string literal not displayed */
	// contains filtered or unexported fields
}

Configuration for filter behavior on the response direction.

func (*Compressor_ResponseDirectionConfig) Descriptor deprecated

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

Deprecated: Use Compressor_ResponseDirectionConfig.ProtoReflect.Descriptor instead.

func (*Compressor_ResponseDirectionConfig) GetCommonConfig

func (*Compressor_ResponseDirectionConfig) GetDisableOnEtagHeader

func (x *Compressor_ResponseDirectionConfig) GetDisableOnEtagHeader() bool

func (*Compressor_ResponseDirectionConfig) GetRemoveAcceptEncodingHeader

func (x *Compressor_ResponseDirectionConfig) GetRemoveAcceptEncodingHeader() bool

func (*Compressor_ResponseDirectionConfig) ProtoMessage

func (*Compressor_ResponseDirectionConfig) ProtoMessage()

func (*Compressor_ResponseDirectionConfig) ProtoReflect

func (*Compressor_ResponseDirectionConfig) Reset

func (*Compressor_ResponseDirectionConfig) String

func (*Compressor_ResponseDirectionConfig) Validate

Validate checks the field values on Compressor_ResponseDirectionConfig 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 (*Compressor_ResponseDirectionConfig) ValidateAll

func (m *Compressor_ResponseDirectionConfig) ValidateAll() error

ValidateAll checks the field values on Compressor_ResponseDirectionConfig 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 Compressor_ResponseDirectionConfigMultiError, or nil if none found.

type Compressor_ResponseDirectionConfigMultiError

type Compressor_ResponseDirectionConfigMultiError []error

Compressor_ResponseDirectionConfigMultiError is an error wrapping multiple validation errors returned by Compressor_ResponseDirectionConfig.ValidateAll() if the designated constraints aren't met.

func (Compressor_ResponseDirectionConfigMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (Compressor_ResponseDirectionConfigMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type Compressor_ResponseDirectionConfigValidationError

type Compressor_ResponseDirectionConfigValidationError struct {
	// contains filtered or unexported fields
}

Compressor_ResponseDirectionConfigValidationError is the validation error returned by Compressor_ResponseDirectionConfig.Validate if the designated constraints aren't met.

func (Compressor_ResponseDirectionConfigValidationError) Cause

Cause function returns cause value.

func (Compressor_ResponseDirectionConfigValidationError) Error

Error satisfies the builtin error interface

func (Compressor_ResponseDirectionConfigValidationError) ErrorName

ErrorName returns error name.

func (Compressor_ResponseDirectionConfigValidationError) Field

Field function returns field value.

func (Compressor_ResponseDirectionConfigValidationError) Key

Key function returns key value.

func (Compressor_ResponseDirectionConfigValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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