files.com 1.1.534 → 1.1.535

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: 3dd6a706eccccb9b058cbc517fa7b0123943a04b1babbf4fb43456d5136a7996
4
- data.tar.gz: 0c09abfb13f3fac4eccfe347dcdd29d85bd8d24fe22834ed1cfe91389e102555
3
+ metadata.gz: 4f33827998fe7016f6ab1fc5f0e8fd4626eaf5bdcb2c436e80c248e976a99acc
4
+ data.tar.gz: 9f9761d8a6f40a7223d1aa4ee8eda3463213674c9d333d27be760d3f05f99b48
5
5
  SHA512:
6
- metadata.gz: '09d78cd5e165a58d9e0def5b8d48fda347b66c7323c25982756dc3ad72dae72b37694e1760582c87a6c06277390ba6dbc037ceefc0445d89bad186785d4055a8'
7
- data.tar.gz: c94ee580c5101d1b1f44bfe60669aa24d208208e2c25d18527b629ff2b33e1b504194e9abe9be116a415af9ff99f6f55f839ac9b208a175f170353d144634300
6
+ metadata.gz: df3d2087b12853cbbdf990f223dff0df4edced97a5a370452894fcf34f461de6c23e33c2d4ac6b991a07395965096b37829ed04223ae050578c2e84ac156887d
7
+ data.tar.gz: c1c99bb23c629f3c8d229ce0a8f0e5ab33bc6b4bed9fc3c985e787aab0fb1e18f244dec9096c2af175b6b04d10e02187bdc2cba42b3c39ca91b361c8cc2b7114
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.534
1
+ 1.1.535
@@ -54,7 +54,7 @@ Files::AutomationRun.list(
54
54
  * `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
55
55
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
56
56
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
57
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
57
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
58
58
  * `automation_id` (int64): Required - ID of the associated Automation.
59
59
 
60
60
 
@@ -5,25 +5,25 @@
5
5
  ```
6
6
  {
7
7
  "id": 1,
8
- "bytes_received": "1.0",
9
- "bytes_sent": "1.0",
10
- "sync_bytes_received": "1.0",
11
- "sync_bytes_sent": "1.0",
12
- "requests_get": "1.0",
13
- "requests_put": "1.0",
14
- "requests_other": "1.0",
8
+ "bytes_received": 1,
9
+ "bytes_sent": 1,
10
+ "sync_bytes_received": 1,
11
+ "sync_bytes_sent": 1,
12
+ "requests_get": 1,
13
+ "requests_put": 1,
14
+ "requests_other": 1,
15
15
  "logged_at": "2000-01-01T01:00:00Z"
16
16
  }
17
17
  ```
18
18
 
19
19
  * `id` (int64): Site bandwidth ID
20
- * `bytes_received` (double): Site bandwidth report bytes received
21
- * `bytes_sent` (double): Site bandwidth report bytes sent
22
- * `sync_bytes_received` (double): Site sync bandwidth report bytes received
23
- * `sync_bytes_sent` (double): Site sync bandwidth report bytes sent
24
- * `requests_get` (double): Site bandwidth report get requests
25
- * `requests_put` (double): Site bandwidth report put requests
26
- * `requests_other` (double): Site bandwidth report other requests
20
+ * `bytes_received` (int64): Site bandwidth report bytes received
21
+ * `bytes_sent` (int64): Site bandwidth report bytes sent
22
+ * `sync_bytes_received` (int64): Site sync bandwidth report bytes received
23
+ * `sync_bytes_sent` (int64): Site sync bandwidth report bytes sent
24
+ * `requests_get` (int64): Site bandwidth report get requests
25
+ * `requests_put` (int64): Site bandwidth report put requests
26
+ * `requests_other` (int64): Site bandwidth report other requests
27
27
  * `logged_at` (date-time): Time the site bandwidth report was logged
28
28
 
29
29
 
@@ -84,7 +84,7 @@ module Files
84
84
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
85
85
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
86
86
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
87
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
87
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
88
88
  # automation_id (required) - int64 - ID of the associated Automation.
89
89
  def self.list(params = {}, options = {})
90
90
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -14,37 +14,37 @@ module Files
14
14
  @attributes[:id]
15
15
  end
16
16
 
17
- # double - Site bandwidth report bytes received
17
+ # int64 - Site bandwidth report bytes received
18
18
  def bytes_received
19
19
  @attributes[:bytes_received]
20
20
  end
21
21
 
22
- # double - Site bandwidth report bytes sent
22
+ # int64 - Site bandwidth report bytes sent
23
23
  def bytes_sent
24
24
  @attributes[:bytes_sent]
25
25
  end
26
26
 
27
- # double - Site sync bandwidth report bytes received
27
+ # int64 - Site sync bandwidth report bytes received
28
28
  def sync_bytes_received
29
29
  @attributes[:sync_bytes_received]
30
30
  end
31
31
 
32
- # double - Site sync bandwidth report bytes sent
32
+ # int64 - Site sync bandwidth report bytes sent
33
33
  def sync_bytes_sent
34
34
  @attributes[:sync_bytes_sent]
35
35
  end
36
36
 
37
- # double - Site bandwidth report get requests
37
+ # int64 - Site bandwidth report get requests
38
38
  def requests_get
39
39
  @attributes[:requests_get]
40
40
  end
41
41
 
42
- # double - Site bandwidth report put requests
42
+ # int64 - Site bandwidth report put requests
43
43
  def requests_put
44
44
  @attributes[:requests_put]
45
45
  end
46
46
 
47
- # double - Site bandwidth report other requests
47
+ # int64 - Site bandwidth report other requests
48
48
  def requests_other
49
49
  @attributes[:requests_other]
50
50
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.534"
4
+ VERSION = "1.1.535"
5
5
  end
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.1.534
4
+ version: 1.1.535
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2026-01-29 00:00:00.000000000 Z
11
+ date: 2026-01-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable