appwrite 2.0.0 → 2.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +16 -0
- data/README.md +72 -3
- data/appwrite.gemspec +1 -1
- data/docs/examples/account/create-recovery.md +15 -0
- data/docs/examples/account/create-verification.md +15 -0
- data/docs/examples/account/delete-session.md +15 -0
- data/docs/examples/account/delete-sessions.md +15 -0
- data/docs/examples/account/delete.md +15 -0
- data/docs/examples/account/get-logs.md +15 -0
- data/docs/examples/account/get-prefs.md +15 -0
- data/docs/examples/account/get-sessions.md +15 -0
- data/docs/examples/account/get.md +15 -0
- data/docs/examples/account/update-email.md +15 -0
- data/docs/examples/account/update-name.md +15 -0
- data/docs/examples/account/update-password.md +15 -0
- data/docs/examples/account/update-prefs.md +15 -0
- data/docs/examples/account/update-recovery.md +15 -0
- data/docs/examples/account/update-verification.md +15 -0
- data/docs/examples/avatars/get-q-r.md +1 -1
- data/docs/examples/database/create-document.md +1 -1
- data/docs/examples/database/update-collection.md +1 -1
- data/docs/examples/database/update-document.md +1 -1
- data/docs/examples/functions/create.md +1 -1
- data/docs/examples/health/get-d-b.md +1 -1
- data/docs/examples/locale/get-countries-e-u.md +1 -1
- data/docs/examples/storage/create-file.md +1 -1
- data/docs/examples/teams/delete-membership.md +1 -1
- data/docs/examples/teams/update-membership-roles.md +15 -0
- data/docs/examples/teams/update-membership-status.md +15 -0
- data/docs/examples/users/{delete-user.md → delete.md} +1 -1
- data/docs/examples/users/update-status.md +1 -1
- data/lib/appwrite.rb +2 -0
- data/lib/appwrite/client.rb +21 -5
- data/lib/appwrite/exception.rb +14 -0
- data/lib/appwrite/services/account.rb +280 -0
- data/lib/appwrite/services/avatars.rb +125 -42
- data/lib/appwrite/services/database.rb +199 -53
- data/lib/appwrite/services/functions.rb +223 -60
- data/lib/appwrite/services/health.rb +13 -25
- data/lib/appwrite/services/locale.rb +8 -15
- data/lib/appwrite/services/storage.rb +123 -33
- data/lib/appwrite/services/teams.rb +187 -38
- data/lib/appwrite/services/users.rb +106 -34
- metadata +24 -4
@@ -1,15 +1,26 @@
|
|
1
1
|
module Appwrite
|
2
2
|
class Database < Service
|
3
3
|
|
4
|
-
def list_collections(search:
|
4
|
+
def list_collections(search: nil, limit: nil, offset: nil, order_type: nil)
|
5
5
|
path = '/database/collections'
|
6
6
|
|
7
|
-
params = {
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
7
|
+
params = {}
|
8
|
+
|
9
|
+
if !search.nil?
|
10
|
+
params[:search] = search
|
11
|
+
end
|
12
|
+
|
13
|
+
if !limit.nil?
|
14
|
+
params[:limit] = limit
|
15
|
+
end
|
16
|
+
|
17
|
+
if !offset.nil?
|
18
|
+
params[:offset] = offset
|
19
|
+
end
|
20
|
+
|
21
|
+
if !order_type.nil?
|
22
|
+
params[:orderType] = order_type
|
23
|
+
end
|
13
24
|
|
14
25
|
return @client.call('get', path, {
|
15
26
|
'content-type' => 'application/json',
|
@@ -17,14 +28,41 @@ module Appwrite
|
|
17
28
|
end
|
18
29
|
|
19
30
|
def create_collection(name:, read:, write:, rules:)
|
31
|
+
if name.nil?
|
32
|
+
raise Appwrite::Exception.new('Missing required parameter: "name"')
|
33
|
+
end
|
34
|
+
|
35
|
+
if read.nil?
|
36
|
+
raise Appwrite::Exception.new('Missing required parameter: "read"')
|
37
|
+
end
|
38
|
+
|
39
|
+
if write.nil?
|
40
|
+
raise Appwrite::Exception.new('Missing required parameter: "write"')
|
41
|
+
end
|
42
|
+
|
43
|
+
if rules.nil?
|
44
|
+
raise Appwrite::Exception.new('Missing required parameter: "rules"')
|
45
|
+
end
|
46
|
+
|
20
47
|
path = '/database/collections'
|
21
48
|
|
22
|
-
params = {
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
49
|
+
params = {}
|
50
|
+
|
51
|
+
if !name.nil?
|
52
|
+
params[:name] = name
|
53
|
+
end
|
54
|
+
|
55
|
+
if !read.nil?
|
56
|
+
params[:read] = read
|
57
|
+
end
|
58
|
+
|
59
|
+
if !write.nil?
|
60
|
+
params[:write] = write
|
61
|
+
end
|
62
|
+
|
63
|
+
if !rules.nil?
|
64
|
+
params[:rules] = rules
|
65
|
+
end
|
28
66
|
|
29
67
|
return @client.call('post', path, {
|
30
68
|
'content-type' => 'application/json',
|
@@ -32,27 +70,49 @@ module Appwrite
|
|
32
70
|
end
|
33
71
|
|
34
72
|
def get_collection(collection_id:)
|
73
|
+
if collection_id.nil?
|
74
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
75
|
+
end
|
76
|
+
|
35
77
|
path = '/database/collections/{collectionId}'
|
36
78
|
.gsub('{collectionId}', collection_id)
|
37
79
|
|
38
|
-
params = {
|
39
|
-
}
|
80
|
+
params = {}
|
40
81
|
|
41
82
|
return @client.call('get', path, {
|
42
83
|
'content-type' => 'application/json',
|
43
84
|
}, params);
|
44
85
|
end
|
45
86
|
|
46
|
-
def update_collection(collection_id:, name:, read
|
87
|
+
def update_collection(collection_id:, name:, read: nil, write: nil, rules: nil)
|
88
|
+
if collection_id.nil?
|
89
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
90
|
+
end
|
91
|
+
|
92
|
+
if name.nil?
|
93
|
+
raise Appwrite::Exception.new('Missing required parameter: "name"')
|
94
|
+
end
|
95
|
+
|
47
96
|
path = '/database/collections/{collectionId}'
|
48
97
|
.gsub('{collectionId}', collection_id)
|
49
98
|
|
50
|
-
params = {
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
99
|
+
params = {}
|
100
|
+
|
101
|
+
if !name.nil?
|
102
|
+
params[:name] = name
|
103
|
+
end
|
104
|
+
|
105
|
+
if !read.nil?
|
106
|
+
params[:read] = read
|
107
|
+
end
|
108
|
+
|
109
|
+
if !write.nil?
|
110
|
+
params[:write] = write
|
111
|
+
end
|
112
|
+
|
113
|
+
if !rules.nil?
|
114
|
+
params[:rules] = rules
|
115
|
+
end
|
56
116
|
|
57
117
|
return @client.call('put', path, {
|
58
118
|
'content-type' => 'application/json',
|
@@ -60,48 +120,100 @@ module Appwrite
|
|
60
120
|
end
|
61
121
|
|
62
122
|
def delete_collection(collection_id:)
|
123
|
+
if collection_id.nil?
|
124
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
125
|
+
end
|
126
|
+
|
63
127
|
path = '/database/collections/{collectionId}'
|
64
128
|
.gsub('{collectionId}', collection_id)
|
65
129
|
|
66
|
-
params = {
|
67
|
-
}
|
130
|
+
params = {}
|
68
131
|
|
69
132
|
return @client.call('delete', path, {
|
70
133
|
'content-type' => 'application/json',
|
71
134
|
}, params);
|
72
135
|
end
|
73
136
|
|
74
|
-
def list_documents(collection_id:, filters:
|
137
|
+
def list_documents(collection_id:, filters: nil, limit: nil, offset: nil, order_field: nil, order_type: nil, order_cast: nil, search: nil)
|
138
|
+
if collection_id.nil?
|
139
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
140
|
+
end
|
141
|
+
|
75
142
|
path = '/database/collections/{collectionId}/documents'
|
76
143
|
.gsub('{collectionId}', collection_id)
|
77
144
|
|
78
|
-
params = {
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
145
|
+
params = {}
|
146
|
+
|
147
|
+
if !filters.nil?
|
148
|
+
params[:filters] = filters
|
149
|
+
end
|
150
|
+
|
151
|
+
if !limit.nil?
|
152
|
+
params[:limit] = limit
|
153
|
+
end
|
154
|
+
|
155
|
+
if !offset.nil?
|
156
|
+
params[:offset] = offset
|
157
|
+
end
|
158
|
+
|
159
|
+
if !order_field.nil?
|
160
|
+
params[:orderField] = order_field
|
161
|
+
end
|
162
|
+
|
163
|
+
if !order_type.nil?
|
164
|
+
params[:orderType] = order_type
|
165
|
+
end
|
166
|
+
|
167
|
+
if !order_cast.nil?
|
168
|
+
params[:orderCast] = order_cast
|
169
|
+
end
|
170
|
+
|
171
|
+
if !search.nil?
|
172
|
+
params[:search] = search
|
173
|
+
end
|
87
174
|
|
88
175
|
return @client.call('get', path, {
|
89
176
|
'content-type' => 'application/json',
|
90
177
|
}, params);
|
91
178
|
end
|
92
179
|
|
93
|
-
def create_document(collection_id:, data:, read
|
180
|
+
def create_document(collection_id:, data:, read: nil, write: nil, parent_document: nil, parent_property: nil, parent_property_type: nil)
|
181
|
+
if collection_id.nil?
|
182
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
183
|
+
end
|
184
|
+
|
185
|
+
if data.nil?
|
186
|
+
raise Appwrite::Exception.new('Missing required parameter: "data"')
|
187
|
+
end
|
188
|
+
|
94
189
|
path = '/database/collections/{collectionId}/documents'
|
95
190
|
.gsub('{collectionId}', collection_id)
|
96
191
|
|
97
|
-
params = {
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
192
|
+
params = {}
|
193
|
+
|
194
|
+
if !data.nil?
|
195
|
+
params[:data] = data
|
196
|
+
end
|
197
|
+
|
198
|
+
if !read.nil?
|
199
|
+
params[:read] = read
|
200
|
+
end
|
201
|
+
|
202
|
+
if !write.nil?
|
203
|
+
params[:write] = write
|
204
|
+
end
|
205
|
+
|
206
|
+
if !parent_document.nil?
|
207
|
+
params[:parentDocument] = parent_document
|
208
|
+
end
|
209
|
+
|
210
|
+
if !parent_property.nil?
|
211
|
+
params[:parentProperty] = parent_property
|
212
|
+
end
|
213
|
+
|
214
|
+
if !parent_property_type.nil?
|
215
|
+
params[:parentPropertyType] = parent_property_type
|
216
|
+
end
|
105
217
|
|
106
218
|
return @client.call('post', path, {
|
107
219
|
'content-type' => 'application/json',
|
@@ -109,28 +221,55 @@ module Appwrite
|
|
109
221
|
end
|
110
222
|
|
111
223
|
def get_document(collection_id:, document_id:)
|
224
|
+
if collection_id.nil?
|
225
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
226
|
+
end
|
227
|
+
|
228
|
+
if document_id.nil?
|
229
|
+
raise Appwrite::Exception.new('Missing required parameter: "documentId"')
|
230
|
+
end
|
231
|
+
|
112
232
|
path = '/database/collections/{collectionId}/documents/{documentId}'
|
113
233
|
.gsub('{collectionId}', collection_id)
|
114
234
|
.gsub('{documentId}', document_id)
|
115
235
|
|
116
|
-
params = {
|
117
|
-
}
|
236
|
+
params = {}
|
118
237
|
|
119
238
|
return @client.call('get', path, {
|
120
239
|
'content-type' => 'application/json',
|
121
240
|
}, params);
|
122
241
|
end
|
123
242
|
|
124
|
-
def update_document(collection_id:, document_id:, data:, read
|
243
|
+
def update_document(collection_id:, document_id:, data:, read: nil, write: nil)
|
244
|
+
if collection_id.nil?
|
245
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
246
|
+
end
|
247
|
+
|
248
|
+
if document_id.nil?
|
249
|
+
raise Appwrite::Exception.new('Missing required parameter: "documentId"')
|
250
|
+
end
|
251
|
+
|
252
|
+
if data.nil?
|
253
|
+
raise Appwrite::Exception.new('Missing required parameter: "data"')
|
254
|
+
end
|
255
|
+
|
125
256
|
path = '/database/collections/{collectionId}/documents/{documentId}'
|
126
257
|
.gsub('{collectionId}', collection_id)
|
127
258
|
.gsub('{documentId}', document_id)
|
128
259
|
|
129
|
-
params = {
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
260
|
+
params = {}
|
261
|
+
|
262
|
+
if !data.nil?
|
263
|
+
params[:data] = data
|
264
|
+
end
|
265
|
+
|
266
|
+
if !read.nil?
|
267
|
+
params[:read] = read
|
268
|
+
end
|
269
|
+
|
270
|
+
if !write.nil?
|
271
|
+
params[:write] = write
|
272
|
+
end
|
134
273
|
|
135
274
|
return @client.call('patch', path, {
|
136
275
|
'content-type' => 'application/json',
|
@@ -138,12 +277,19 @@ module Appwrite
|
|
138
277
|
end
|
139
278
|
|
140
279
|
def delete_document(collection_id:, document_id:)
|
280
|
+
if collection_id.nil?
|
281
|
+
raise Appwrite::Exception.new('Missing required parameter: "collectionId"')
|
282
|
+
end
|
283
|
+
|
284
|
+
if document_id.nil?
|
285
|
+
raise Appwrite::Exception.new('Missing required parameter: "documentId"')
|
286
|
+
end
|
287
|
+
|
141
288
|
path = '/database/collections/{collectionId}/documents/{documentId}'
|
142
289
|
.gsub('{collectionId}', collection_id)
|
143
290
|
.gsub('{documentId}', document_id)
|
144
291
|
|
145
|
-
params = {
|
146
|
-
}
|
292
|
+
params = {}
|
147
293
|
|
148
294
|
return @client.call('delete', path, {
|
149
295
|
'content-type' => 'application/json',
|
@@ -1,33 +1,76 @@
|
|
1
1
|
module Appwrite
|
2
2
|
class Functions < Service
|
3
3
|
|
4
|
-
def list(search:
|
4
|
+
def list(search: nil, limit: nil, offset: nil, order_type: nil)
|
5
5
|
path = '/functions'
|
6
6
|
|
7
|
-
params = {
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
7
|
+
params = {}
|
8
|
+
|
9
|
+
if !search.nil?
|
10
|
+
params[:search] = search
|
11
|
+
end
|
12
|
+
|
13
|
+
if !limit.nil?
|
14
|
+
params[:limit] = limit
|
15
|
+
end
|
16
|
+
|
17
|
+
if !offset.nil?
|
18
|
+
params[:offset] = offset
|
19
|
+
end
|
20
|
+
|
21
|
+
if !order_type.nil?
|
22
|
+
params[:orderType] = order_type
|
23
|
+
end
|
13
24
|
|
14
25
|
return @client.call('get', path, {
|
15
26
|
'content-type' => 'application/json',
|
16
27
|
}, params);
|
17
28
|
end
|
18
29
|
|
19
|
-
def create(name:, execute:, env:, vars:
|
30
|
+
def create(name:, execute:, env:, vars: nil, events: nil, schedule: nil, timeout: nil)
|
31
|
+
if name.nil?
|
32
|
+
raise Appwrite::Exception.new('Missing required parameter: "name"')
|
33
|
+
end
|
34
|
+
|
35
|
+
if execute.nil?
|
36
|
+
raise Appwrite::Exception.new('Missing required parameter: "execute"')
|
37
|
+
end
|
38
|
+
|
39
|
+
if env.nil?
|
40
|
+
raise Appwrite::Exception.new('Missing required parameter: "env"')
|
41
|
+
end
|
42
|
+
|
20
43
|
path = '/functions'
|
21
44
|
|
22
|
-
params = {
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
45
|
+
params = {}
|
46
|
+
|
47
|
+
if !name.nil?
|
48
|
+
params[:name] = name
|
49
|
+
end
|
50
|
+
|
51
|
+
if !execute.nil?
|
52
|
+
params[:execute] = execute
|
53
|
+
end
|
54
|
+
|
55
|
+
if !env.nil?
|
56
|
+
params[:env] = env
|
57
|
+
end
|
58
|
+
|
59
|
+
if !vars.nil?
|
60
|
+
params[:vars] = vars
|
61
|
+
end
|
62
|
+
|
63
|
+
if !events.nil?
|
64
|
+
params[:events] = events
|
65
|
+
end
|
66
|
+
|
67
|
+
if !schedule.nil?
|
68
|
+
params[:schedule] = schedule
|
69
|
+
end
|
70
|
+
|
71
|
+
if !timeout.nil?
|
72
|
+
params[:timeout] = timeout
|
73
|
+
end
|
31
74
|
|
32
75
|
return @client.call('post', path, {
|
33
76
|
'content-type' => 'application/json',
|
@@ -35,29 +78,61 @@ module Appwrite
|
|
35
78
|
end
|
36
79
|
|
37
80
|
def get(function_id:)
|
81
|
+
if function_id.nil?
|
82
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
83
|
+
end
|
84
|
+
|
38
85
|
path = '/functions/{functionId}'
|
39
86
|
.gsub('{functionId}', function_id)
|
40
87
|
|
41
|
-
params = {
|
42
|
-
}
|
88
|
+
params = {}
|
43
89
|
|
44
90
|
return @client.call('get', path, {
|
45
91
|
'content-type' => 'application/json',
|
46
92
|
}, params);
|
47
93
|
end
|
48
94
|
|
49
|
-
def update(function_id:, name:, execute:, vars:
|
95
|
+
def update(function_id:, name:, execute:, vars: nil, events: nil, schedule: nil, timeout: nil)
|
96
|
+
if function_id.nil?
|
97
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
98
|
+
end
|
99
|
+
|
100
|
+
if name.nil?
|
101
|
+
raise Appwrite::Exception.new('Missing required parameter: "name"')
|
102
|
+
end
|
103
|
+
|
104
|
+
if execute.nil?
|
105
|
+
raise Appwrite::Exception.new('Missing required parameter: "execute"')
|
106
|
+
end
|
107
|
+
|
50
108
|
path = '/functions/{functionId}'
|
51
109
|
.gsub('{functionId}', function_id)
|
52
110
|
|
53
|
-
params = {
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
111
|
+
params = {}
|
112
|
+
|
113
|
+
if !name.nil?
|
114
|
+
params[:name] = name
|
115
|
+
end
|
116
|
+
|
117
|
+
if !execute.nil?
|
118
|
+
params[:execute] = execute
|
119
|
+
end
|
120
|
+
|
121
|
+
if !vars.nil?
|
122
|
+
params[:vars] = vars
|
123
|
+
end
|
124
|
+
|
125
|
+
if !events.nil?
|
126
|
+
params[:events] = events
|
127
|
+
end
|
128
|
+
|
129
|
+
if !schedule.nil?
|
130
|
+
params[:schedule] = schedule
|
131
|
+
end
|
132
|
+
|
133
|
+
if !timeout.nil?
|
134
|
+
params[:timeout] = timeout
|
135
|
+
end
|
61
136
|
|
62
137
|
return @client.call('put', path, {
|
63
138
|
'content-type' => 'application/json',
|
@@ -65,39 +140,64 @@ module Appwrite
|
|
65
140
|
end
|
66
141
|
|
67
142
|
def delete(function_id:)
|
143
|
+
if function_id.nil?
|
144
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
145
|
+
end
|
146
|
+
|
68
147
|
path = '/functions/{functionId}'
|
69
148
|
.gsub('{functionId}', function_id)
|
70
149
|
|
71
|
-
params = {
|
72
|
-
}
|
150
|
+
params = {}
|
73
151
|
|
74
152
|
return @client.call('delete', path, {
|
75
153
|
'content-type' => 'application/json',
|
76
154
|
}, params);
|
77
155
|
end
|
78
156
|
|
79
|
-
def list_executions(function_id:, search:
|
157
|
+
def list_executions(function_id:, search: nil, limit: nil, offset: nil, order_type: nil)
|
158
|
+
if function_id.nil?
|
159
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
160
|
+
end
|
161
|
+
|
80
162
|
path = '/functions/{functionId}/executions'
|
81
163
|
.gsub('{functionId}', function_id)
|
82
164
|
|
83
|
-
params = {
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
165
|
+
params = {}
|
166
|
+
|
167
|
+
if !search.nil?
|
168
|
+
params[:search] = search
|
169
|
+
end
|
170
|
+
|
171
|
+
if !limit.nil?
|
172
|
+
params[:limit] = limit
|
173
|
+
end
|
174
|
+
|
175
|
+
if !offset.nil?
|
176
|
+
params[:offset] = offset
|
177
|
+
end
|
178
|
+
|
179
|
+
if !order_type.nil?
|
180
|
+
params[:orderType] = order_type
|
181
|
+
end
|
89
182
|
|
90
183
|
return @client.call('get', path, {
|
91
184
|
'content-type' => 'application/json',
|
92
185
|
}, params);
|
93
186
|
end
|
94
187
|
|
95
|
-
def create_execution(function_id:)
|
188
|
+
def create_execution(function_id:, data: nil)
|
189
|
+
if function_id.nil?
|
190
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
191
|
+
end
|
192
|
+
|
96
193
|
path = '/functions/{functionId}/executions'
|
97
194
|
.gsub('{functionId}', function_id)
|
98
195
|
|
99
|
-
params = {
|
100
|
-
|
196
|
+
params = {}
|
197
|
+
|
198
|
+
if !data.nil?
|
199
|
+
params[:data] = data
|
200
|
+
end
|
101
201
|
|
102
202
|
return @client.call('post', path, {
|
103
203
|
'content-type' => 'application/json',
|
@@ -105,12 +205,19 @@ module Appwrite
|
|
105
205
|
end
|
106
206
|
|
107
207
|
def get_execution(function_id:, execution_id:)
|
208
|
+
if function_id.nil?
|
209
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
210
|
+
end
|
211
|
+
|
212
|
+
if execution_id.nil?
|
213
|
+
raise Appwrite::Exception.new('Missing required parameter: "executionId"')
|
214
|
+
end
|
215
|
+
|
108
216
|
path = '/functions/{functionId}/executions/{executionId}'
|
109
217
|
.gsub('{functionId}', function_id)
|
110
218
|
.gsub('{executionId}', execution_id)
|
111
219
|
|
112
|
-
params = {
|
113
|
-
}
|
220
|
+
params = {}
|
114
221
|
|
115
222
|
return @client.call('get', path, {
|
116
223
|
'content-type' => 'application/json',
|
@@ -118,28 +225,53 @@ module Appwrite
|
|
118
225
|
end
|
119
226
|
|
120
227
|
def update_tag(function_id:, tag:)
|
228
|
+
if function_id.nil?
|
229
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
230
|
+
end
|
231
|
+
|
232
|
+
if tag.nil?
|
233
|
+
raise Appwrite::Exception.new('Missing required parameter: "tag"')
|
234
|
+
end
|
235
|
+
|
121
236
|
path = '/functions/{functionId}/tag'
|
122
237
|
.gsub('{functionId}', function_id)
|
123
238
|
|
124
|
-
params = {
|
125
|
-
|
126
|
-
|
239
|
+
params = {}
|
240
|
+
|
241
|
+
if !tag.nil?
|
242
|
+
params[:tag] = tag
|
243
|
+
end
|
127
244
|
|
128
245
|
return @client.call('patch', path, {
|
129
246
|
'content-type' => 'application/json',
|
130
247
|
}, params);
|
131
248
|
end
|
132
249
|
|
133
|
-
def list_tags(function_id:, search:
|
250
|
+
def list_tags(function_id:, search: nil, limit: nil, offset: nil, order_type: nil)
|
251
|
+
if function_id.nil?
|
252
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
253
|
+
end
|
254
|
+
|
134
255
|
path = '/functions/{functionId}/tags'
|
135
256
|
.gsub('{functionId}', function_id)
|
136
257
|
|
137
|
-
params = {
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
258
|
+
params = {}
|
259
|
+
|
260
|
+
if !search.nil?
|
261
|
+
params[:search] = search
|
262
|
+
end
|
263
|
+
|
264
|
+
if !limit.nil?
|
265
|
+
params[:limit] = limit
|
266
|
+
end
|
267
|
+
|
268
|
+
if !offset.nil?
|
269
|
+
params[:offset] = offset
|
270
|
+
end
|
271
|
+
|
272
|
+
if !order_type.nil?
|
273
|
+
params[:orderType] = order_type
|
274
|
+
end
|
143
275
|
|
144
276
|
return @client.call('get', path, {
|
145
277
|
'content-type' => 'application/json',
|
@@ -147,13 +279,30 @@ module Appwrite
|
|
147
279
|
end
|
148
280
|
|
149
281
|
def create_tag(function_id:, command:, code:)
|
282
|
+
if function_id.nil?
|
283
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
284
|
+
end
|
285
|
+
|
286
|
+
if command.nil?
|
287
|
+
raise Appwrite::Exception.new('Missing required parameter: "command"')
|
288
|
+
end
|
289
|
+
|
290
|
+
if code.nil?
|
291
|
+
raise Appwrite::Exception.new('Missing required parameter: "code"')
|
292
|
+
end
|
293
|
+
|
150
294
|
path = '/functions/{functionId}/tags'
|
151
295
|
.gsub('{functionId}', function_id)
|
152
296
|
|
153
|
-
params = {
|
154
|
-
|
155
|
-
|
156
|
-
|
297
|
+
params = {}
|
298
|
+
|
299
|
+
if !command.nil?
|
300
|
+
params[:command] = command
|
301
|
+
end
|
302
|
+
|
303
|
+
if !code.nil?
|
304
|
+
params[:code] = code
|
305
|
+
end
|
157
306
|
|
158
307
|
return @client.call('post', path, {
|
159
308
|
'content-type' => 'multipart/form-data',
|
@@ -161,12 +310,19 @@ module Appwrite
|
|
161
310
|
end
|
162
311
|
|
163
312
|
def get_tag(function_id:, tag_id:)
|
313
|
+
if function_id.nil?
|
314
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
315
|
+
end
|
316
|
+
|
317
|
+
if tag_id.nil?
|
318
|
+
raise Appwrite::Exception.new('Missing required parameter: "tagId"')
|
319
|
+
end
|
320
|
+
|
164
321
|
path = '/functions/{functionId}/tags/{tagId}'
|
165
322
|
.gsub('{functionId}', function_id)
|
166
323
|
.gsub('{tagId}', tag_id)
|
167
324
|
|
168
|
-
params = {
|
169
|
-
}
|
325
|
+
params = {}
|
170
326
|
|
171
327
|
return @client.call('get', path, {
|
172
328
|
'content-type' => 'application/json',
|
@@ -174,12 +330,19 @@ module Appwrite
|
|
174
330
|
end
|
175
331
|
|
176
332
|
def delete_tag(function_id:, tag_id:)
|
333
|
+
if function_id.nil?
|
334
|
+
raise Appwrite::Exception.new('Missing required parameter: "functionId"')
|
335
|
+
end
|
336
|
+
|
337
|
+
if tag_id.nil?
|
338
|
+
raise Appwrite::Exception.new('Missing required parameter: "tagId"')
|
339
|
+
end
|
340
|
+
|
177
341
|
path = '/functions/{functionId}/tags/{tagId}'
|
178
342
|
.gsub('{functionId}', function_id)
|
179
343
|
.gsub('{tagId}', tag_id)
|
180
344
|
|
181
|
-
params = {
|
182
|
-
}
|
345
|
+
params = {}
|
183
346
|
|
184
347
|
return @client.call('delete', path, {
|
185
348
|
'content-type' => 'application/json',
|