files.com 1.1.683 → 1.1.685
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 +28 -0
- data/docs/automation_log.md +10 -10
- data/lib/files.com/models/automation.rb +22 -0
- data/lib/files.com/models/automation_log.rb +12 -12
- data/lib/files.com/version.rb +1 -1
- 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: 7a1c779ef2280c7391800bb0bc757e7add1959ac72f876f5be1a7de272a3710f
|
|
4
|
+
data.tar.gz: 832f2c325448db3d0394c8237a14b3df803ac53ff99e685f92b62b0a0b0a1b45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfc0415086f5dabe2ab8eadc5860b3e8a7a65b517835dce83ab0e370238a1737a213d25d43830e57d885c48e646aa26b2c591256e5795b5d4186c225a1544180
|
|
7
|
+
data.tar.gz: d457913929cff346442c151dff3c9129a7e2da39112c9b674e209fc706f081f3011ca1c6fbcd26aa5d3de3e19446ff1c68ba16151d8a986d0de662bcd09c40c8
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.685
|
data/docs/automation.md
CHANGED
|
@@ -268,6 +268,19 @@ Files::Automation.create(
|
|
|
268
268
|
* `workspace_id` (int64): Workspace ID
|
|
269
269
|
|
|
270
270
|
|
|
271
|
+
---
|
|
272
|
+
|
|
273
|
+
## Upgrade a legacy Automation to Automation v2
|
|
274
|
+
|
|
275
|
+
```
|
|
276
|
+
Files::Automation.upgrade(id)
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
### Parameters
|
|
280
|
+
|
|
281
|
+
* `id` (int64): Required - Automation ID.
|
|
282
|
+
|
|
283
|
+
|
|
271
284
|
---
|
|
272
285
|
|
|
273
286
|
## Manually Run Automation. v2 Automations require Site or Workspace Admin permission
|
|
@@ -377,6 +390,21 @@ Files::Automation.delete(id)
|
|
|
377
390
|
* `id` (int64): Required - Automation ID.
|
|
378
391
|
|
|
379
392
|
|
|
393
|
+
---
|
|
394
|
+
|
|
395
|
+
## Upgrade a legacy Automation to Automation v2
|
|
396
|
+
|
|
397
|
+
```
|
|
398
|
+
automation = Files::Automation.find(id)
|
|
399
|
+
|
|
400
|
+
automation.upgrade
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
### Parameters
|
|
404
|
+
|
|
405
|
+
* `id` (int64): Required - Automation ID.
|
|
406
|
+
|
|
407
|
+
|
|
380
408
|
---
|
|
381
409
|
|
|
382
410
|
## Manually Run Automation. v2 Automations require Site or Workspace Admin permission
|