forked from aiven/aiven-go-client
-
Notifications
You must be signed in to change notification settings - Fork 1
/
connection_pool.go
106 lines (90 loc) · 3.12 KB
/
connection_pool.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
// Copyright (c) 2018 Aiven, Helsinki, Finland. https://aiven.io/
package aiven
import (
"fmt"
)
type (
// ConnectionPoolsHandler is the client which interacts with the connection pool endpoints
// on Aiven.
ConnectionPoolsHandler struct {
client *Client
}
// CreateConnectionPoolRequest are the parameters used to create a connection pool entry.
CreateConnectionPoolRequest struct {
Database string `json:"database"`
PoolMode string `json:"pool_mode"`
PoolName string `json:"pool_name"`
PoolSize int `json:"pool_size"`
Username *string `json:"username,omitempty"`
}
// UpdateConnectionPoolRequest are the parameters used to update a connection pool entry.
UpdateConnectionPoolRequest struct {
Database string `json:"database"`
PoolMode string `json:"pool_mode"`
PoolSize int `json:"pool_size"`
Username *string `json:"username"`
}
)
// Create new connection pool entry.
func (h *ConnectionPoolsHandler) Create(
project string,
serviceName string,
req CreateConnectionPoolRequest,
) (*ConnectionPool, error) {
path := buildPath("project", project, "service", serviceName, "connection_pool")
_, err := h.client.doPostRequest(path, req)
if err != nil {
return nil, err
}
// Server doesn't return the connection pool we created, need to fetch it separately.
return h.Get(project, serviceName, req.PoolName)
}
// Get a specific connection pool.
func (h *ConnectionPoolsHandler) Get(project, serviceName, poolName string) (*ConnectionPool, error) {
// There's no API for getting individual connection pool entry. List instead and filter from there
pools, err := h.List(project, serviceName)
if err != nil {
return nil, err
}
for _, pool := range pools {
if pool.PoolName == poolName {
return pool, nil
}
}
err = Error{Message: fmt.Sprintf("Connection pool with name %v not found", poolName), Status: 404}
return nil, err
}
// List returns all the connection pool entries for a given service.
func (h *ConnectionPoolsHandler) List(project, serviceName string) ([]*ConnectionPool, error) {
// There's no API for listing connection pool entries. Need to get them from
// service info instead
service, err := h.client.Services.Get(project, serviceName)
if err != nil {
return nil, err
}
return service.ConnectionPools, nil
}
// Update a specific connection pool with the given parameters.
func (h *ConnectionPoolsHandler) Update(
project string,
serviceName string,
poolName string,
req UpdateConnectionPoolRequest,
) (*ConnectionPool, error) {
path := buildPath("project", project, "service", serviceName, "connection_pool", poolName)
_, err := h.client.doPutRequest(path, req)
if err != nil {
return nil, err
}
// Server doesn't return the connection pool we updated, need to fetch it separately.
return h.Get(project, serviceName, poolName)
}
// Delete removes the specified connection pool entry.
func (h *ConnectionPoolsHandler) Delete(project, serviceName, poolName string) error {
path := buildPath("project", project, "service", serviceName, "connection_pool", poolName)
bts, err := h.client.doDeleteRequest(path, nil)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}