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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8af555aa0db8d86c85e7225ef57aed6a878af3fe3d64fffd3e9457ff958d3e81
4
- data.tar.gz: a6ec014f833dcaee78827af677553bfbb836b8bdcd762975ba769529f97ec9d1
3
+ metadata.gz: f298bcfed091f21eb8876b3fec2b4bf799dc9558a517475e91bf84ebda754079
4
+ data.tar.gz: 73edc75fcdc3f00368c7e588fadcf079dbc0bfd3b2f20c7d59af09d3954082b7
5
5
  SHA512:
6
- metadata.gz: 11ecb955266d6190692f5820a83e0c11a1d7948bac54f4449ad283a741fc45dc38ab0f58da075d97603e33910f834c4e59b773270a0beef3fd4a6a39e4dc2228
7
- data.tar.gz: 3d161ff7a8c6df53ae1ead4ad7c5a6ef98facd53f7ad648592f7da48eac04716262c0d861498bd4fbf43540a7fafae0d3db51c6a3bf6eb255269044067bd94e8
6
+ metadata.gz: 8821417b213ed08d666ca7e426b7ffc9b2d9e0b47d181e2862eae7324c88b87500b9aa3a5ebc6d3114c034b0104467495530bdcefdcddf2070ea275147104a6f
7
+ data.tar.gz: 02b15cb5768938d36eb2661a550906a22ed0bd93a99ab1df571c8788904e5b09e31c11ce16b300c8e76306a2f9685c2668070efffa711c38c9031465962f7558
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.211
1
+ 1.1.212
@@ -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]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.211"
4
+ VERSION = "1.1.212"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: files.com
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.211
4
+ version: 1.1.212
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com