files.com 1.1.211 → 1.1.212
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_run.md +4 -2
- data/lib/files.com/models/automation_run.rb +10 -5
- data/lib/files.com/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f298bcfed091f21eb8876b3fec2b4bf799dc9558a517475e91bf84ebda754079
|
4
|
+
data.tar.gz: 73edc75fcdc3f00368c7e588fadcf079dbc0bfd3b2f20c7d59af09d3954082b7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8821417b213ed08d666ca7e426b7ffc9b2d9e0b47d181e2862eae7324c88b87500b9aa3a5ebc6d3114c034b0104467495530bdcefdcddf2070ea275147104a6f
|
7
|
+
data.tar.gz: 02b15cb5768938d36eb2661a550906a22ed0bd93a99ab1df571c8788904e5b09e31c11ce16b300c8e76306a2f9685c2668070efffa711c38c9031465962f7558
|
data/_VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.212
|
data/docs/automation_run.md
CHANGED
@@ -8,9 +8,10 @@
|
|
8
8
|
"automation_id": 1,
|
9
9
|
"completed_at": "2000-01-01T01:00:00Z",
|
10
10
|
"created_at": "2000-01-01T01:00:00Z",
|
11
|
+
"retry_at": "example",
|
11
12
|
"retried_at": "2000-01-01T01:00:00Z",
|
12
|
-
"retry_of_run_id": 1,
|
13
13
|
"retried_in_run_id": 1,
|
14
|
+
"retry_of_run_id": 1,
|
14
15
|
"runtime": 1.0,
|
15
16
|
"status": "success",
|
16
17
|
"successful_operations": 1,
|
@@ -23,9 +24,10 @@
|
|
23
24
|
* `automation_id` (int64): ID of the associated Automation.
|
24
25
|
* `completed_at` (date-time): Automation run completion/failure date/time.
|
25
26
|
* `created_at` (date-time): Automation run start date/time.
|
27
|
+
* `retry_at` (string): If set, this automation will be retried at this date/time due to `failure` or `partial_failure`.
|
26
28
|
* `retried_at` (date-time): If set, this Automation run was retried due to `failure` or `partial_failure`.
|
27
|
-
* `retry_of_run_id` (int64): ID of the original run that this run is retrying.
|
28
29
|
* `retried_in_run_id` (int64): ID of the run that is or will be retrying this run.
|
30
|
+
* `retry_of_run_id` (int64): ID of the original run that this run is retrying.
|
29
31
|
* `runtime` (double): Automation run runtime.
|
30
32
|
* `status` (string): The success status of the AutomationRun. One of `running`, `success`, `partial_failure`, or `failure`.
|
31
33
|
* `successful_operations` (int64): Count of successful operations.
|
@@ -29,21 +29,26 @@ module Files
|
|
29
29
|
@attributes[:created_at]
|
30
30
|
end
|
31
31
|
|
32
|
+
# string - If set, this automation will be retried at this date/time due to `failure` or `partial_failure`.
|
33
|
+
def retry_at
|
34
|
+
@attributes[:retry_at]
|
35
|
+
end
|
36
|
+
|
32
37
|
# date-time - If set, this Automation run was retried due to `failure` or `partial_failure`.
|
33
38
|
def retried_at
|
34
39
|
@attributes[:retried_at]
|
35
40
|
end
|
36
41
|
|
37
|
-
# int64 - ID of the original run that this run is retrying.
|
38
|
-
def retry_of_run_id
|
39
|
-
@attributes[:retry_of_run_id]
|
40
|
-
end
|
41
|
-
|
42
42
|
# int64 - ID of the run that is or will be retrying this run.
|
43
43
|
def retried_in_run_id
|
44
44
|
@attributes[:retried_in_run_id]
|
45
45
|
end
|
46
46
|
|
47
|
+
# int64 - ID of the original run that this run is retrying.
|
48
|
+
def retry_of_run_id
|
49
|
+
@attributes[:retry_of_run_id]
|
50
|
+
end
|
51
|
+
|
47
52
|
# double - Automation run runtime.
|
48
53
|
def runtime
|
49
54
|
@attributes[:runtime]
|
data/lib/files.com/version.rb
CHANGED