2023-03-22 19:10:07 +01:00
|
|
|
package store
|
|
|
|
|
2024-05-14 19:24:48 +02:00
|
|
|
type LimitAction string
|
2023-03-22 19:10:07 +01:00
|
|
|
|
|
|
|
const (
|
2024-05-14 19:24:48 +02:00
|
|
|
LimitLimitAction LimitAction = "limit"
|
|
|
|
WarningLimitAction LimitAction = "warning"
|
|
|
|
)
|
|
|
|
|
|
|
|
type LimitScope string
|
|
|
|
|
|
|
|
const (
|
|
|
|
AccountLimitScope LimitScope = "account"
|
|
|
|
EnvironmentLimitScope LimitScope = "environment"
|
|
|
|
ShareLimitScope LimitScope = "share"
|
2023-03-22 19:10:07 +01:00
|
|
|
)
|
2024-03-01 17:17:39 +01:00
|
|
|
|
|
|
|
type PermissionMode string
|
|
|
|
|
|
|
|
const (
|
|
|
|
OpenPermissionMode PermissionMode = "open"
|
|
|
|
ClosedPermissionMode PermissionMode = "closed"
|
|
|
|
)
|