| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- package types
- import "time"
- type UsageMetric string
- const (
- CPU UsageMetric = "cpu"
- Memory UsageMetric = "memory"
- Clusters UsageMetric = "clusters"
- Users UsageMetric = "users"
- )
- type ProjectUsage struct {
- // The CPU usage, in vCPUs
- ResourceCPU uint `json:"resource_cpu"`
- // The memory usage, in mibibytes (?)
- ResourceMemory uint `json:"resource_memory"`
- // The number of clusters
- Clusters uint `json:"clusters"`
- // The number of users
- Users uint `json:"users"`
- }
- var BasicPlan = ProjectUsage{
- ResourceCPU: 40,
- ResourceMemory: 80000,
- Clusters: 1,
- Users: 20,
- }
- var TeamPlan = ProjectUsage{
- ResourceCPU: 20,
- ResourceMemory: 40000,
- Clusters: 3,
- Users: 3,
- }
- var GrowthPlan = ProjectUsage{
- ResourceCPU: 80,
- ResourceMemory: 160000,
- Clusters: 0,
- Users: 5,
- }
- // all unlimited
- var EnterprisePlan = ProjectUsage{
- ResourceCPU: 0,
- ResourceMemory: 0,
- Clusters: 0,
- Users: 0,
- }
- type GetProjectUsageResponse struct {
- Current ProjectUsage `json:"current"`
- Limit ProjectUsage `json:"limit"`
- // Whether the usage is exceeded
- IsExceeded bool `json:"exceeded"`
- // When the usage has been exceeded since, if IsExceeded
- ExceededSince *time.Time `json:"exceeded_since,omitempty"`
- }
|