config

package
v0.0.0-...-1a56975 Latest Latest
Warning

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

Go to latest
Published: Apr 23, 2019 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthConfig = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowConfig   = fmt.Errorf("proto: integer overflow")
)

Functions

This section is empty.

Types

type Params

type Params struct {
	// The set of known quotas.
	Quotas []Params_Quota `protobuf:"bytes,1,rep,name=quotas,proto3" json:"quotas"`
	// Minimum number of seconds that deduplication is possible for a given operation.
	MinDeduplicationDuration time.Duration `` /* 137-byte string literal not displayed */
}

Configuration format for the `memquota` adapter.

func (*Params) Descriptor

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

func (*Params) Marshal

func (m *Params) Marshal() (dAtA []byte, err error)

func (*Params) MarshalTo

func (m *Params) MarshalTo(dAtA []byte) (int, error)

func (*Params) ProtoMessage

func (*Params) ProtoMessage()

func (*Params) Reset

func (m *Params) Reset()

func (*Params) Size

func (m *Params) Size() (n int)

func (*Params) String

func (this *Params) String() string

func (*Params) Unmarshal

func (m *Params) Unmarshal(dAtA []byte) error

func (*Params) XXX_DiscardUnknown

func (m *Params) XXX_DiscardUnknown()

func (*Params) XXX_Marshal

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

func (*Params) XXX_Merge

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

func (*Params) XXX_Size

func (m *Params) XXX_Size() int

func (*Params) XXX_Unmarshal

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

type Params_Override

type Params_Override struct {
	// The specific dimensions for which this override applies.
	// String representation of instance dimensions is used to check against configured dimensions.
	Dimensions map[string]string `` /* 161-byte string literal not displayed */
	// The upper limit for this quota.
	MaxAmount int64 `protobuf:"varint,2,opt,name=max_amount,json=maxAmount,proto3" json:"max_amount,omitempty"`
	// The amount of time allocated quota remains valid before it is
	// automatically released. This is only meaningful for rate limit
	// quotas, otherwise the value must be zero.
	ValidDuration time.Duration `protobuf:"bytes,3,opt,name=valid_duration,json=validDuration,proto3,stdduration" json:"valid_duration"`
}

Defines an override value for a quota. If no override matches a particular quota request, the default for the quota is used.

func (*Params_Override) Descriptor

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

func (*Params_Override) GetDimensions

func (m *Params_Override) GetDimensions() map[string]string

func (*Params_Override) GetMaxAmount

func (m *Params_Override) GetMaxAmount() int64

func (*Params_Override) GetValidDuration

func (m *Params_Override) GetValidDuration() time.Duration

func (*Params_Override) Marshal

func (m *Params_Override) Marshal() (dAtA []byte, err error)

func (*Params_Override) MarshalTo

func (m *Params_Override) MarshalTo(dAtA []byte) (int, error)

func (*Params_Override) ProtoMessage

func (*Params_Override) ProtoMessage()

func (*Params_Override) Reset

func (m *Params_Override) Reset()

func (*Params_Override) Size

func (m *Params_Override) Size() (n int)

func (*Params_Override) String

func (this *Params_Override) String() string

func (*Params_Override) Unmarshal

func (m *Params_Override) Unmarshal(dAtA []byte) error

func (*Params_Override) XXX_DiscardUnknown

func (m *Params_Override) XXX_DiscardUnknown()

func (*Params_Override) XXX_Marshal

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

func (*Params_Override) XXX_Merge

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

func (*Params_Override) XXX_Size

func (m *Params_Override) XXX_Size() int

func (*Params_Override) XXX_Unmarshal

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

type Params_Quota

type Params_Quota struct {
	// The name of the quota
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// The upper limit for this quota.
	MaxAmount int64 `protobuf:"varint,2,opt,name=max_amount,json=maxAmount,proto3" json:"max_amount,omitempty"`
	// The amount of time allocated quota remains valid before it is
	// automatically released. This is only meaningful for rate limit
	// quotas, otherwise the value must be zero.
	ValidDuration time.Duration `protobuf:"bytes,3,opt,name=valid_duration,json=validDuration,proto3,stdduration" json:"valid_duration"`
	// Overrides associated with this quota.
	// The first matching override is applied.
	Overrides []Params_Override `protobuf:"bytes,4,rep,name=overrides,proto3" json:"overrides"`
}

Defines a quota's limit and duration.

func (*Params_Quota) Descriptor

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

func (*Params_Quota) GetMaxAmount

func (m *Params_Quota) GetMaxAmount() int64

func (*Params_Quota) GetName

func (m *Params_Quota) GetName() string

func (*Params_Quota) GetOverrides

func (m *Params_Quota) GetOverrides() []Params_Override

func (*Params_Quota) GetValidDuration

func (m *Params_Quota) GetValidDuration() time.Duration

func (*Params_Quota) Marshal

func (m *Params_Quota) Marshal() (dAtA []byte, err error)

func (*Params_Quota) MarshalTo

func (m *Params_Quota) MarshalTo(dAtA []byte) (int, error)

func (*Params_Quota) ProtoMessage

func (*Params_Quota) ProtoMessage()

func (*Params_Quota) Reset

func (m *Params_Quota) Reset()

func (*Params_Quota) Size

func (m *Params_Quota) Size() (n int)

func (*Params_Quota) String

func (this *Params_Quota) String() string

func (*Params_Quota) Unmarshal

func (m *Params_Quota) Unmarshal(dAtA []byte) error

func (*Params_Quota) XXX_DiscardUnknown

func (m *Params_Quota) XXX_DiscardUnknown()

func (*Params_Quota) XXX_Marshal

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

func (*Params_Quota) XXX_Merge

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

func (*Params_Quota) XXX_Size

func (m *Params_Quota) XXX_Size() int

func (*Params_Quota) XXX_Unmarshal

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

Jump to

Keyboard shortcuts

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