forked from influxdata/influxdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonboarding.go
36 lines (31 loc) · 1.04 KB
/
onboarding.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package influxdb
import "context"
// OnboardingResults is a group of elements required for first run.
type OnboardingResults struct {
User *User `json:"user"`
Org *Organization `json:"org"`
Bucket *Bucket `json:"bucket"`
Auth *Authorization `json:"auth"`
}
// OnboardingRequest is the request
// to setup defaults.
type OnboardingRequest struct {
User string `json:"username"`
Password string `json:"password"`
Org string `json:"org"`
Bucket string `json:"bucket"`
RetentionPeriod uint `json:"retentionPeriodHrs,omitempty"`
Token string `json:"token,omitempty"`
}
// OnboardingService represents a service for the first run.
type OnboardingService interface {
BasicAuthService
BucketService
OrganizationService
UserService
AuthorizationService
// IsOnboarding determine if onboarding request is allowed.
IsOnboarding(ctx context.Context) (bool, error)
// Generate OnboardingResults.
Generate(ctx context.Context, req *OnboardingRequest) (*OnboardingResults, error)
}