-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcouchbase-xdcr-rest-api.opencollection.json
More file actions
244 lines (244 loc) · 7.19 KB
/
Copy pathcouchbase-xdcr-rest-api.opencollection.json
File metadata and controls
244 lines (244 loc) · 7.19 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
{
"opencollection": "1.0.0",
"info": {
"name": "Couchbase XDCR REST API",
"version": "7.6"
},
"request": {
"auth": {
"type": "basic",
"username": "{{username}}",
"password": "{{password}}"
}
},
"items": [
{
"info": {
"name": "Cluster References",
"type": "folder"
},
"items": [
{
"info": {
"name": "List remote cluster references",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://localhost:8091/pools/default/remoteClusters"
},
"docs": "Returns the list of all remote cluster references configured for XDCR replication."
},
{
"info": {
"name": "Create a remote cluster reference",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://localhost:8091/pools/default/remoteClusters",
"body": {
"type": "form-urlencoded",
"data": []
}
},
"docs": "Creates a new remote cluster reference that can be used as a target for XDCR replications."
},
{
"info": {
"name": "Update a remote cluster reference",
"type": "http"
},
"http": {
"method": "PUT",
"url": "https://localhost:8091/pools/default/remoteClusters/:clusterName",
"params": [
{
"name": "clusterName",
"value": "",
"type": "path",
"description": "The name of the remote cluster reference"
}
],
"body": {
"type": "form-urlencoded",
"data": []
}
},
"docs": "Updates the configuration of an existing remote cluster reference."
},
{
"info": {
"name": "Delete a remote cluster reference",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://localhost:8091/pools/default/remoteClusters/:clusterName",
"params": [
{
"name": "clusterName",
"value": "",
"type": "path",
"description": "The name of the remote cluster reference"
}
]
},
"docs": "Deletes the specified remote cluster reference. All replications using this reference must be deleted first."
}
]
},
{
"info": {
"name": "Replications",
"type": "folder"
},
"items": [
{
"info": {
"name": "Create an XDCR replication",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://localhost:8091/controller/createReplication",
"body": {
"type": "form-urlencoded",
"data": []
}
},
"docs": "Creates a new XDCR replication stream from a source bucket to a target bucket on a remote cluster."
},
{
"info": {
"name": "Delete an XDCR replication",
"type": "http"
},
"http": {
"method": "DELETE",
"url": "https://localhost:8091/controller/cancelXDCR/:replicationId",
"params": [
{
"name": "replicationId",
"value": "",
"type": "path",
"description": "The XDCR replication ID in the format {remoteClusterUUID}/{sourceBucket}/{targetBucket}"
}
]
},
"docs": "Deletes the specified XDCR replication stream, stopping all data replication for that stream."
}
]
},
{
"info": {
"name": "Replication Settings",
"type": "folder"
},
"items": [
{
"info": {
"name": "Get global XDCR settings",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://localhost:8091/settings/replications"
},
"docs": "Returns the global default settings for all XDCR replications."
},
{
"info": {
"name": "Update global XDCR settings",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://localhost:8091/settings/replications",
"body": {
"type": "form-urlencoded",
"data": []
}
},
"docs": "Updates the global default settings applied to all XDCR replications."
},
{
"info": {
"name": "Get replication-specific settings",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://localhost:8091/settings/replications/:replicationId",
"params": [
{
"name": "replicationId",
"value": "",
"type": "path",
"description": "The XDCR replication ID in the format {remoteClusterUUID}/{sourceBucket}/{targetBucket}"
}
]
},
"docs": "Returns the settings for a specific XDCR replication stream."
},
{
"info": {
"name": "Update replication-specific settings",
"type": "http"
},
"http": {
"method": "POST",
"url": "https://localhost:8091/settings/replications/:replicationId",
"params": [
{
"name": "replicationId",
"value": "",
"type": "path",
"description": "The XDCR replication ID in the format {remoteClusterUUID}/{sourceBucket}/{targetBucket}"
}
],
"body": {
"type": "form-urlencoded",
"data": []
}
},
"docs": "Updates the settings for a specific XDCR replication stream, overriding the global defaults."
}
]
},
{
"info": {
"name": "Replication Statistics",
"type": "folder"
},
"items": [
{
"info": {
"name": "Get XDCR replication statistics",
"type": "http"
},
"http": {
"method": "GET",
"url": "https://localhost:8091/pools/default/buckets/:bucketName/stats/:statName",
"params": [
{
"name": "bucketName",
"value": "",
"type": "path",
"description": "The name of the source bucket"
},
{
"name": "statName",
"value": "",
"type": "path",
"description": "The specific statistic to retrieve (e.g., replications/{replicationId}/docs_written)"
}
]
},
"docs": "Returns statistics for XDCR replications on a specific bucket, including items replicated, replication latency, and bandwidth usage."
}
]
}
],
"bundled": true
}