Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor: some constants for defined types #115

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions api/v1alpha1/limitador_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,20 @@ type LimitadorList struct {
// +kubebuilder:validation:Enum=NONE;DRAFT_VERSION_03
type RateLimitHeadersType string

const (
RateLimitHeadersTypeNONE RateLimitHeadersType = "NONE"
RateLimitHeadersTypeDraft03 RateLimitHeadersType = "DRAFT_VERSION_03"
)

// Telemetry defines the level of metrics Limitador will expose to the user
// +kubebuilder:validation:Enum=basic;exhaustive
type Telemetry string

const (
TelemetryBasic Telemetry = "basic"
TelemetryExhaustive Telemetry = "exhaustive"
)

// Storage contains the options for Limitador counters database or in-memory data storage
type Storage struct {
// +optional
Expand Down
Loading