-
Notifications
You must be signed in to change notification settings - Fork 28
/
account_teams.go
130 lines (106 loc) · 3.38 KB
/
account_teams.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package aiven
import (
"context"
"errors"
"time"
)
type (
// AccountTeamsHandler Aiven go-client handler for Account Teams
AccountTeamsHandler struct {
client *Client
}
// AccountTeam represents account team
AccountTeam struct {
AccountId string `json:"account_id,omitempty"`
Id string `json:"team_id,omitempty"`
Name string `json:"team_name"`
CreateTime *time.Time `json:"create_time,omitempty"`
UpdateTime *time.Time `json:"update_time,omitempty"`
}
// AccountTeamsResponse represents account list of teams API response
AccountTeamsResponse struct {
APIResponse
Teams []AccountTeam `json:"teams"`
}
// AccountTeamResponse represents account team API response
AccountTeamResponse struct {
APIResponse
Team AccountTeam `json:"team"`
}
)
// List returns a list of all existing account teams
func (h AccountTeamsHandler) List(ctx context.Context, accountId string) (*AccountTeamsResponse, error) {
if accountId == "" {
return nil, errors.New("cannot get a list of teams for an account when account id is empty")
}
path := buildPath("account", accountId, "teams")
bts, err := h.client.doGetRequest(ctx, path, nil)
if err != nil {
return nil, err
}
var rsp AccountTeamsResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// Get retrieves an existing account team by account and team id`s
func (h AccountTeamsHandler) Get(ctx context.Context, accountId, teamId string) (*AccountTeamResponse, error) {
if accountId == "" || teamId == "" {
return nil, errors.New("cannot get account team where account id or team id is empty")
}
path := buildPath("account", accountId, "team", teamId)
bts, err := h.client.doGetRequest(ctx, path, nil)
if err != nil {
return nil, err
}
var rsp AccountTeamResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// Create creates an account team
func (h AccountTeamsHandler) Create(ctx context.Context, accountId string, team AccountTeam) (*AccountTeamResponse, error) {
if accountId == "" {
return nil, errors.New("cannot get create a team where account id is empty")
}
path := buildPath("account", accountId, "teams")
bts, err := h.client.doPostRequest(ctx, path, team)
if err != nil {
return nil, err
}
var rsp AccountTeamResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// Update updates an account team
func (h AccountTeamsHandler) Update(ctx context.Context, accountId, teamId string, team AccountTeam) (*AccountTeamResponse, error) {
if accountId == "" {
return nil, errors.New("cannot get create a team where account id is empty")
}
path := buildPath("account", accountId, "team", teamId)
bts, err := h.client.doPutRequest(ctx, path, team)
if err != nil {
return nil, err
}
var rsp AccountTeamResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// Delete deletes an account team
func (h AccountTeamsHandler) Delete(ctx context.Context, accountId, teamId string) error {
if accountId == "" || teamId == "" {
return errors.New("cannot get delete an accounts team where account id or team id is empty")
}
path := buildPath("account", accountId, "team", teamId)
bts, err := h.client.doDeleteRequest(ctx, path, nil)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}