-
Notifications
You must be signed in to change notification settings - Fork 29
/
mirrormaker_replication_flow.go
123 lines (102 loc) · 4.7 KB
/
mirrormaker_replication_flow.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
package aiven
import "context"
type (
// MirrorMakerReplicationFlowHandler is the client which interacts with the
// Kafka MirrorMaker 2 ReplicationFlows endpoints on Aiven.
MirrorMakerReplicationFlowHandler struct {
client *Client
}
// ReplicationFlow a replication flow entity
ReplicationFlow struct {
Enabled bool `json:"enabled"`
OffsetSyncsTopicLocation string `json:"offset_syncs_topic_location,omitempty"`
SourceCluster string `json:"source_cluster,omitempty"`
TargetCluster string `json:"target_cluster,omitempty"`
ReplicationPolicyClass string `json:"replication_policy_class,omitempty"`
SyncGroupOffsetsEnabled *bool `json:"sync_group_offsets_enabled,omitempty"`
SyncGroupOffsetsIntervalSeconds *int `json:"sync_group_offsets_interval_seconds,omitempty"`
EmitHeartbeatsEnabled *bool `json:"emit_heartbeats_enabled,omitempty"`
EmitBackwardHeartbeatsEnabled *bool `json:"emit_backward_heartbeats_enabled,omitempty"`
Topics []string `json:"topics,omitempty"`
TopicsBlacklist []string `json:"topics.blacklist,omitempty"`
ReplicationFactor *int `json:"replication_factor,omitempty"`
ConfigPropertiesExclude string `json:"config_properties_exclude,omitempty"`
}
// MirrorMakerReplicationFlowRequest request used to create a Kafka MirrorMaker 2
// ReplicationFlows entry.
MirrorMakerReplicationFlowRequest struct {
ReplicationFlow
}
// MirrorMakerReplicationFlowsResponse represents the response from Aiven after
// interacting with the Kafka MirrorMaker 2 API.
MirrorMakerReplicationFlowsResponse struct {
APIResponse
ReplicationFlows []ReplicationFlow `json:"replication_flows"`
}
// MirrorMakerReplicationFlowResponse represents the response from Aiven after
// interacting with the Kafka MirrorMaker 2 API.
MirrorMakerReplicationFlowResponse struct {
APIResponse
ReplicationFlow ReplicationFlow `json:"replication_flow"`
}
)
// Create creates new Kafka MirrorMaker 2 Replication Flows entry.
func (h *MirrorMakerReplicationFlowHandler) Create(ctx context.Context, project, service string, req MirrorMakerReplicationFlowRequest) error {
path := buildPath("project", project, "service", service, "mirrormaker", "replication-flows")
bts, err := h.client.doPostRequest(ctx, path, req)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}
// Update updates new Kafka MirrorMaker 2 Replication Flows entry.
func (h *MirrorMakerReplicationFlowHandler) Update(ctx context.Context, project, service, sourceCluster, targetCluster string, req MirrorMakerReplicationFlowRequest) (*MirrorMakerReplicationFlowResponse, error) {
path := buildPath("project", project, "service", service, "mirrormaker", "replication-flows", sourceCluster, targetCluster)
// unset source and destination clusters fields
req.SourceCluster = ""
req.TargetCluster = ""
bts, err := h.client.doPutRequest(ctx, path, req)
if err != nil {
return nil, err
}
var rsp MirrorMakerReplicationFlowResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// List gets a Kafka MirrorMaker 2 Replication Flows.
func (h *MirrorMakerReplicationFlowHandler) List(ctx context.Context, project, service string) (*MirrorMakerReplicationFlowsResponse, error) {
path := buildPath("project", project, "service", service, "mirrormaker", "replication-flows")
bts, err := h.client.doGetRequest(ctx, path, nil)
if err != nil {
return nil, err
}
var rsp MirrorMakerReplicationFlowsResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// Get gets a Kafka MirrorMaker 2 Replication Flows.
func (h *MirrorMakerReplicationFlowHandler) Get(ctx context.Context, project, service, sourceCluster, targetCluster string) (*MirrorMakerReplicationFlowResponse, error) {
path := buildPath("project", project, "service", service, "mirrormaker", "replication-flows", sourceCluster, targetCluster)
bts, err := h.client.doGetRequest(ctx, path, nil)
if err != nil {
return nil, err
}
var rsp MirrorMakerReplicationFlowResponse
if errR := checkAPIResponse(bts, &rsp); errR != nil {
return nil, errR
}
return &rsp, nil
}
// Delete deletes a Kafka MirrorMaker 2 Replication Flows entry.
func (h *MirrorMakerReplicationFlowHandler) Delete(ctx context.Context, project, service, sourceCluster, targetCluster string) error {
path := buildPath("project", project, "service", service, "mirrormaker", "replication-flows", sourceCluster, targetCluster)
bts, err := h.client.doDeleteRequest(ctx, path, nil)
if err != nil {
return err
}
return checkAPIResponse(bts, nil)
}