files.com 1.1.60 → 1.1.61
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 +2 -2
- data/lib/files.com/models/automation_run.rb +1 -1
- 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: 561966249a63748bf423c3ddb91a6a954db8f3a22b2f13e670c587c1264f0b5b
|
|
4
|
+
data.tar.gz: 45f08c04befd6c14b2f4478cbbf5bc2c6b3a7f91b31b2255bdef7aeea87869e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b98bdf7af162bfc618f2703ba80b2079e427ab8f5c318edadecce6c9b6985c0b878409eea918e03fff50237654bf3dc2f94f9220953e0a2041b3ef536d73111a
|
|
7
|
+
data.tar.gz: 768dcfd3e4b6ae062a70e81e6394c5830e0812df4505dd9f3cfa49113e6fb71415c01842d2bd5a5bce4765a6094c441b25381b487b06de58e6885e2ebf2c7a1f
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.61
|
data/docs/automation_run.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"automation_id": 1,
|
|
9
9
|
"completed_at": "2000-01-01T01:00:00Z",
|
|
10
10
|
"created_at": "2000-01-01T01:00:00Z",
|
|
11
|
-
"runtime":
|
|
11
|
+
"runtime": 1.0,
|
|
12
12
|
"status": "success",
|
|
13
13
|
"run_stage": "planning",
|
|
14
14
|
"successful_operations": 1,
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
* `automation_id` (int64): ID of the associated Automation.
|
|
22
22
|
* `completed_at` (date-time): Automation run completion/failure date/time.
|
|
23
23
|
* `created_at` (date-time): Automation run start date/time.
|
|
24
|
-
* `runtime` (
|
|
24
|
+
* `runtime` (double): Automation run runtime.
|
|
25
25
|
* `status` (string): The success status of the AutomationRun. One of `running`, `success`, `partial_failure`, or `failure`.
|
|
26
26
|
* `run_stage` (string): The stage currently being executed in the execution environment. One of `queued_for_planning`, `planning`, `queued_for_execution`, `executing`, or `finished`.
|
|
27
27
|
* `successful_operations` (int64): Count of successful operations.
|
data/lib/files.com/version.rb
CHANGED