files.com 1.0.200 → 1.0.201
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/_VERSION +1 -1
- data/docs/automation.md +10 -0
- data/docs/behavior.md +10 -0
- data/lib/files.com/models/automation.rb +30 -0
- data/lib/files.com/models/behavior.rb +30 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f8b5cd1077ae4d1034afc3d69b932d1d634eb5edef2ca1287dabbf4bcd2248d5
|
|
4
|
+
data.tar.gz: 96543ffd75b2f6c6dc86e7b08aa28b2dcec8ba089bbaacb35473df087d0b51c0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cc3a0696ff3338286f1515c3cf457fb88e7f62c873eab656a437d9f7b973d31e693e575a477333d2bf171fbd11cec10449c95ffab9bee1a59096fa6a64b1a1c
|
|
7
|
+
data.tar.gz: c19f88ab8382c1e0ed07e1873baef0d292e4d0d2838fc489601bbf989ed1815b29cc3c4b161a4ed867357b966bf0c6c820aee39b709131c38c252976e98c3de5
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.201
|
data/docs/automation.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"automation": "create_folder",
|
|
9
9
|
"trigger": "realtime",
|
|
10
10
|
"interval": "week",
|
|
11
|
+
"name": "",
|
|
11
12
|
"schedule": {
|
|
12
13
|
"days_of_week": [
|
|
13
14
|
0,
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
],
|
|
27
28
|
"destination_replace_from": "",
|
|
28
29
|
"destination_replace_to": "",
|
|
30
|
+
"description": "",
|
|
29
31
|
"path": "",
|
|
30
32
|
"user_id": 1,
|
|
31
33
|
"user_ids": [
|
|
@@ -47,11 +49,13 @@
|
|
|
47
49
|
* `automation` (string): Automation type
|
|
48
50
|
* `trigger` (string): How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
49
51
|
* `interval` (string): If trigger is `daily`, this specifies how often to run this automation. One of: `day`, `week`, `week_end`, `month`, `month_end`, `quarter`, `quarter_end`, `year`, `year_end`
|
|
52
|
+
* `name` (string): Name for this automation.
|
|
50
53
|
* `schedule` (object): If trigger is `custom_schedule`, Custom schedule description for when the automation should be run.
|
|
51
54
|
* `source` (string): Source Path
|
|
52
55
|
* `destinations` (string): Destination Path
|
|
53
56
|
* `destination_replace_from` (string): If set, this string in the destination path will be replaced with the value in `destination_replace_to`.
|
|
54
57
|
* `destination_replace_to` (string): If set, this string will replace the value `destination_replace_from` in the destination filename. You can use special patterns here.
|
|
58
|
+
* `description` (string): Description for the this Automation.
|
|
55
59
|
* `path` (string): Path on which this Automation runs. Supports globs. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
|
56
60
|
* `user_id` (int64): User ID of the Automation's creator.
|
|
57
61
|
* `user_ids` (array): IDs of Users for the Automation (i.e. who to Request File from)
|
|
@@ -134,6 +138,8 @@ Files::Automation.create(
|
|
|
134
138
|
* `user_ids` (string): A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
135
139
|
* `group_ids` (string): A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
136
140
|
* `schedule` (object): Custom schedule for running this automation.
|
|
141
|
+
* `description` (string): Description for the this Automation.
|
|
142
|
+
* `name` (string): Name for this automation.
|
|
137
143
|
* `trigger` (string): How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
138
144
|
* `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
|
|
139
145
|
* `trigger_action_path` (string): If trigger is `action`, this is the path to watch for the specified trigger actions.
|
|
@@ -174,6 +180,8 @@ Files::Automation.update(id,
|
|
|
174
180
|
* `user_ids` (string): A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
175
181
|
* `group_ids` (string): A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
176
182
|
* `schedule` (object): Custom schedule for running this automation.
|
|
183
|
+
* `description` (string): Description for the this Automation.
|
|
184
|
+
* `name` (string): Name for this automation.
|
|
177
185
|
* `trigger` (string): How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
178
186
|
* `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
|
|
179
187
|
* `trigger_action_path` (string): If trigger is `action`, this is the path to watch for the specified trigger actions.
|
|
@@ -229,6 +237,8 @@ automation.update(
|
|
|
229
237
|
* `user_ids` (string): A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
230
238
|
* `group_ids` (string): A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
231
239
|
* `schedule` (object): Custom schedule for running this automation.
|
|
240
|
+
* `description` (string): Description for the this Automation.
|
|
241
|
+
* `name` (string): Name for this automation.
|
|
232
242
|
* `trigger` (string): How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
233
243
|
* `trigger_actions` (array(string)): If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
|
|
234
244
|
* `trigger_action_path` (string): If trigger is `action`, this is the path to watch for the specified trigger actions.
|
data/docs/behavior.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
"path": "",
|
|
9
9
|
"attachment_url": "",
|
|
10
10
|
"behavior": "webhook",
|
|
11
|
+
"name": "",
|
|
12
|
+
"description": "",
|
|
11
13
|
"value": {
|
|
12
14
|
"method": "GET"
|
|
13
15
|
}
|
|
@@ -18,6 +20,8 @@
|
|
|
18
20
|
* `path` (string): Folder path This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
|
19
21
|
* `attachment_url` (string): URL for attached file
|
|
20
22
|
* `behavior` (string): Behavior type.
|
|
23
|
+
* `name` (string): Name for this behavior.
|
|
24
|
+
* `description` (string): Description for this behavior.
|
|
21
25
|
* `value` (object): Settings for this behavior. See the section above for an example value to provide here. Formatting is different for each Behavior type. May be sent as nested JSON or a single JSON-encoded string. If using XML encoding for the API call, this data must be sent as a JSON-encoded string.
|
|
22
26
|
* `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
23
27
|
|
|
@@ -103,6 +107,8 @@ Files::Behavior.create(
|
|
|
103
107
|
|
|
104
108
|
* `value` (string): The value of the folder behavior. Can be a integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
|
|
105
109
|
* `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
110
|
+
* `name` (string): Name for this behavior.
|
|
111
|
+
* `description` (string): Description for this behavior.
|
|
106
112
|
* `path` (string): Required - Folder behaviors path.
|
|
107
113
|
* `behavior` (string): Required - Behavior type.
|
|
108
114
|
|
|
@@ -148,6 +154,8 @@ Files::Behavior.update(id,
|
|
|
148
154
|
* `id` (int64): Required - Behavior ID.
|
|
149
155
|
* `value` (string): The value of the folder behavior. Can be a integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
|
|
150
156
|
* `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
157
|
+
* `name` (string): Name for this behavior.
|
|
158
|
+
* `description` (string): Description for this behavior.
|
|
151
159
|
* `behavior` (string): Behavior type.
|
|
152
160
|
* `path` (string): Folder behaviors path.
|
|
153
161
|
|
|
@@ -183,6 +191,8 @@ behavior.update(
|
|
|
183
191
|
* `id` (int64): Required - Behavior ID.
|
|
184
192
|
* `value` (string): The value of the folder behavior. Can be a integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
|
|
185
193
|
* `attachment_file` (file): Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
194
|
+
* `name` (string): Name for this behavior.
|
|
195
|
+
* `description` (string): Description for this behavior.
|
|
186
196
|
* `behavior` (string): Behavior type.
|
|
187
197
|
* `path` (string): Folder behaviors path.
|
|
188
198
|
|
|
@@ -45,6 +45,15 @@ module Files
|
|
|
45
45
|
@attributes[:interval] = value
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
# string - Name for this automation.
|
|
49
|
+
def name
|
|
50
|
+
@attributes[:name]
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def name=(value)
|
|
54
|
+
@attributes[:name] = value
|
|
55
|
+
end
|
|
56
|
+
|
|
48
57
|
# object - If trigger is `custom_schedule`, Custom schedule description for when the automation should be run.
|
|
49
58
|
def schedule
|
|
50
59
|
@attributes[:schedule]
|
|
@@ -90,6 +99,15 @@ module Files
|
|
|
90
99
|
@attributes[:destination_replace_to] = value
|
|
91
100
|
end
|
|
92
101
|
|
|
102
|
+
# string - Description for the this Automation.
|
|
103
|
+
def description
|
|
104
|
+
@attributes[:description]
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
def description=(value)
|
|
108
|
+
@attributes[:description] = value
|
|
109
|
+
end
|
|
110
|
+
|
|
93
111
|
# string - Path on which this Automation runs. Supports globs. This must be slash-delimited, but it must neither start nor end with a slash. Maximum of 5000 characters.
|
|
94
112
|
def path
|
|
95
113
|
@attributes[:path]
|
|
@@ -183,6 +201,8 @@ module Files
|
|
|
183
201
|
# user_ids - string - A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
184
202
|
# group_ids - string - A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
185
203
|
# schedule - object - Custom schedule for running this automation.
|
|
204
|
+
# description - string - Description for the this Automation.
|
|
205
|
+
# name - string - Name for this automation.
|
|
186
206
|
# trigger - string - How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
187
207
|
# trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
|
|
188
208
|
# trigger_action_path - string - If trigger is `action`, this is the path to watch for the specified trigger actions.
|
|
@@ -202,6 +222,8 @@ module Files
|
|
|
202
222
|
raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
|
|
203
223
|
raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params.dig(:user_ids) and !params.dig(:user_ids).is_a?(String)
|
|
204
224
|
raise InvalidParameterError.new("Bad parameter: group_ids must be an String") if params.dig(:group_ids) and !params.dig(:group_ids).is_a?(String)
|
|
225
|
+
raise InvalidParameterError.new("Bad parameter: description must be an String") if params.dig(:description) and !params.dig(:description).is_a?(String)
|
|
226
|
+
raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
|
|
205
227
|
raise InvalidParameterError.new("Bad parameter: trigger must be an String") if params.dig(:trigger) and !params.dig(:trigger).is_a?(String)
|
|
206
228
|
raise InvalidParameterError.new("Bad parameter: trigger_actions must be an Array") if params.dig(:trigger_actions) and !params.dig(:trigger_actions).is_a?(Array)
|
|
207
229
|
raise InvalidParameterError.new("Bad parameter: trigger_action_path must be an String") if params.dig(:trigger_action_path) and !params.dig(:trigger_action_path).is_a?(String)
|
|
@@ -294,6 +316,8 @@ module Files
|
|
|
294
316
|
# user_ids - string - A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
295
317
|
# group_ids - string - A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
296
318
|
# schedule - object - Custom schedule for running this automation.
|
|
319
|
+
# description - string - Description for the this Automation.
|
|
320
|
+
# name - string - Name for this automation.
|
|
297
321
|
# trigger - string - How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
298
322
|
# trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
|
|
299
323
|
# trigger_action_path - string - If trigger is `action`, this is the path to watch for the specified trigger actions.
|
|
@@ -310,6 +334,8 @@ module Files
|
|
|
310
334
|
raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params.dig(:user_ids) and !params.dig(:user_ids).is_a?(String)
|
|
311
335
|
raise InvalidParameterError.new("Bad parameter: group_ids must be an String") if params.dig(:group_ids) and !params.dig(:group_ids).is_a?(String)
|
|
312
336
|
raise InvalidParameterError.new("Bad parameter: schedule must be an Hash") if params.dig(:schedule) and !params.dig(:schedule).is_a?(Hash)
|
|
337
|
+
raise InvalidParameterError.new("Bad parameter: description must be an String") if params.dig(:description) and !params.dig(:description).is_a?(String)
|
|
338
|
+
raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
|
|
313
339
|
raise InvalidParameterError.new("Bad parameter: trigger must be an String") if params.dig(:trigger) and !params.dig(:trigger).is_a?(String)
|
|
314
340
|
raise InvalidParameterError.new("Bad parameter: trigger_actions must be an Array") if params.dig(:trigger_actions) and !params.dig(:trigger_actions).is_a?(Array)
|
|
315
341
|
raise InvalidParameterError.new("Bad parameter: trigger_action_path must be an String") if params.dig(:trigger_action_path) and !params.dig(:trigger_action_path).is_a?(String)
|
|
@@ -332,6 +358,8 @@ module Files
|
|
|
332
358
|
# user_ids - string - A list of user IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
333
359
|
# group_ids - string - A list of group IDs the automation is associated with. If sent as a string, it should be comma-delimited.
|
|
334
360
|
# schedule - object - Custom schedule for running this automation.
|
|
361
|
+
# description - string - Description for the this Automation.
|
|
362
|
+
# name - string - Name for this automation.
|
|
335
363
|
# trigger - string - How this automation is triggered to run. One of: `realtime`, `daily`, `custom_schedule`, `webhook`, `email`, or `action`.
|
|
336
364
|
# trigger_actions - array(string) - If trigger is `action`, this is the list of action types on which to trigger the automation. Valid actions are create, read, update, destroy, move, copy
|
|
337
365
|
# trigger_action_path - string - If trigger is `action`, this is the path to watch for the specified trigger actions.
|
|
@@ -351,6 +379,8 @@ module Files
|
|
|
351
379
|
raise InvalidParameterError.new("Bad parameter: user_ids must be an String") if params.dig(:user_ids) and !params.dig(:user_ids).is_a?(String)
|
|
352
380
|
raise InvalidParameterError.new("Bad parameter: group_ids must be an String") if params.dig(:group_ids) and !params.dig(:group_ids).is_a?(String)
|
|
353
381
|
raise InvalidParameterError.new("Bad parameter: schedule must be an Hash") if params.dig(:schedule) and !params.dig(:schedule).is_a?(Hash)
|
|
382
|
+
raise InvalidParameterError.new("Bad parameter: description must be an String") if params.dig(:description) and !params.dig(:description).is_a?(String)
|
|
383
|
+
raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
|
|
354
384
|
raise InvalidParameterError.new("Bad parameter: trigger must be an String") if params.dig(:trigger) and !params.dig(:trigger).is_a?(String)
|
|
355
385
|
raise InvalidParameterError.new("Bad parameter: trigger_actions must be an Array") if params.dig(:trigger_actions) and !params.dig(:trigger_actions).is_a?(Array)
|
|
356
386
|
raise InvalidParameterError.new("Bad parameter: trigger_action_path must be an String") if params.dig(:trigger_action_path) and !params.dig(:trigger_action_path).is_a?(String)
|
|
@@ -45,6 +45,24 @@ module Files
|
|
|
45
45
|
@attributes[:behavior] = value
|
|
46
46
|
end
|
|
47
47
|
|
|
48
|
+
# string - Name for this behavior.
|
|
49
|
+
def name
|
|
50
|
+
@attributes[:name]
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def name=(value)
|
|
54
|
+
@attributes[:name] = value
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
# string - Description for this behavior.
|
|
58
|
+
def description
|
|
59
|
+
@attributes[:description]
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def description=(value)
|
|
63
|
+
@attributes[:description] = value
|
|
64
|
+
end
|
|
65
|
+
|
|
48
66
|
# object - Settings for this behavior. See the section above for an example value to provide here. Formatting is different for each Behavior type. May be sent as nested JSON or a single JSON-encoded string. If using XML encoding for the API call, this data must be sent as a JSON-encoded string.
|
|
49
67
|
def value
|
|
50
68
|
@attributes[:value]
|
|
@@ -66,6 +84,8 @@ module Files
|
|
|
66
84
|
# Parameters:
|
|
67
85
|
# value - string - The value of the folder behavior. Can be a integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
|
|
68
86
|
# attachment_file - file - Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
87
|
+
# name - string - Name for this behavior.
|
|
88
|
+
# description - string - Description for this behavior.
|
|
69
89
|
# behavior - string - Behavior type.
|
|
70
90
|
# path - string - Folder behaviors path.
|
|
71
91
|
def update(params = {})
|
|
@@ -74,6 +94,8 @@ module Files
|
|
|
74
94
|
raise MissingParameterError.new("Current object doesn't have a id") unless @attributes[:id]
|
|
75
95
|
raise InvalidParameterError.new("Bad parameter: id must be an Integer") if params.dig(:id) and !params.dig(:id).is_a?(Integer)
|
|
76
96
|
raise InvalidParameterError.new("Bad parameter: value must be an String") if params.dig(:value) and !params.dig(:value).is_a?(String)
|
|
97
|
+
raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
|
|
98
|
+
raise InvalidParameterError.new("Bad parameter: description must be an String") if params.dig(:description) and !params.dig(:description).is_a?(String)
|
|
77
99
|
raise InvalidParameterError.new("Bad parameter: behavior must be an String") if params.dig(:behavior) and !params.dig(:behavior).is_a?(String)
|
|
78
100
|
raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
|
|
79
101
|
raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id)
|
|
@@ -190,10 +212,14 @@ module Files
|
|
|
190
212
|
# Parameters:
|
|
191
213
|
# value - string - The value of the folder behavior. Can be a integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
|
|
192
214
|
# attachment_file - file - Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
215
|
+
# name - string - Name for this behavior.
|
|
216
|
+
# description - string - Description for this behavior.
|
|
193
217
|
# path (required) - string - Folder behaviors path.
|
|
194
218
|
# behavior (required) - string - Behavior type.
|
|
195
219
|
def self.create(params = {}, options = {})
|
|
196
220
|
raise InvalidParameterError.new("Bad parameter: value must be an String") if params.dig(:value) and !params.dig(:value).is_a?(String)
|
|
221
|
+
raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
|
|
222
|
+
raise InvalidParameterError.new("Bad parameter: description must be an String") if params.dig(:description) and !params.dig(:description).is_a?(String)
|
|
197
223
|
raise InvalidParameterError.new("Bad parameter: path must be an String") if params.dig(:path) and !params.dig(:path).is_a?(String)
|
|
198
224
|
raise InvalidParameterError.new("Bad parameter: behavior must be an String") if params.dig(:behavior) and !params.dig(:behavior).is_a?(String)
|
|
199
225
|
raise MissingParameterError.new("Parameter missing: path") unless params.dig(:path)
|
|
@@ -226,6 +252,8 @@ module Files
|
|
|
226
252
|
# Parameters:
|
|
227
253
|
# value - string - The value of the folder behavior. Can be a integer, array, or hash depending on the type of folder behavior. See The Behavior Types section for example values for each type of behavior.
|
|
228
254
|
# attachment_file - file - Certain behaviors may require a file, for instance, the "watermark" behavior requires a watermark image
|
|
255
|
+
# name - string - Name for this behavior.
|
|
256
|
+
# description - string - Description for this behavior.
|
|
229
257
|
# behavior - string - Behavior type.
|
|
230
258
|
# path - string - Folder behaviors path.
|
|
231
259
|
def self.update(id, params = {}, options = {})
|
|
@@ -233,6 +261,8 @@ module Files
|
|
|
233
261
|
params[:id] = id
|
|
234
262
|
raise InvalidParameterError.new("Bad parameter: id must be one of String, Integer, Hash") if params.dig(:id) and [ String, Integer, Hash ].none? { |klass| params.dig(:id).is_a?(klass) }
|
|
235
263
|
raise InvalidParameterError.new("Bad parameter: value must be an String") if params.dig(:value) and !params.dig(:value).is_a?(String)
|
|
264
|
+
raise InvalidParameterError.new("Bad parameter: name must be an String") if params.dig(:name) and !params.dig(:name).is_a?(String)
|
|
265
|
+
raise InvalidParameterError.new("Bad parameter: description must be an String") if params.dig(:description) and !params.dig(:description).is_a?(String)
|
|
236
266
|
raise InvalidParameterError.new("Bad parameter: behavior must be an String") if params.dig(:behavior) and !params.dig(:behavior).is_a?(String)
|
|
237
267
|
raise InvalidParameterError.new("Bad parameter: path must be one of String, Integer, Hash") if params.dig(:path) and [ String, Integer, Hash ].none? { |klass| params.dig(:path).is_a?(klass) }
|
|
238
268
|
raise MissingParameterError.new("Parameter missing: id") unless params.dig(:id)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: files.com
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.201
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- files.com
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-08-
|
|
11
|
+
date: 2021-08-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|