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 +4 -4
- data/_VERSION +1 -1
- data/docs/automation_run.md +1 -1
- data/docs/bandwidth_snapshot.md +14 -14
- data/lib/files.com/models/automation_run.rb +1 -1
- data/lib/files.com/models/bandwidth_snapshot.rb +7 -7
- 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: 4f33827998fe7016f6ab1fc5f0e8fd4626eaf5bdcb2c436e80c248e976a99acc
|
|
4
|
+
data.tar.gz: 9f9761d8a6f40a7223d1aa4ee8eda3463213674c9d333d27be760d3f05f99b48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: df3d2087b12853cbbdf990f223dff0df4edced97a5a370452894fcf34f461de6c23e33c2d4ac6b991a07395965096b37829ed04223ae050578c2e84ac156887d
|
|
7
|
+
data.tar.gz: c1c99bb23c629f3c8d229ce0a8f0e5ab33bc6b4bed9fc3c985e787aab0fb1e18f244dec9096c2af175b6b04d10e02187bdc2cba42b3c39ca91b361c8cc2b7114
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.535
|
data/docs/automation_run.md
CHANGED
|
@@ -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 `[
|
|
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
|
|
data/docs/bandwidth_snapshot.md
CHANGED
|
@@ -5,25 +5,25 @@
|
|
|
5
5
|
```
|
|
6
6
|
{
|
|
7
7
|
"id": 1,
|
|
8
|
-
"bytes_received":
|
|
9
|
-
"bytes_sent":
|
|
10
|
-
"sync_bytes_received":
|
|
11
|
-
"sync_bytes_sent":
|
|
12
|
-
"requests_get":
|
|
13
|
-
"requests_put":
|
|
14
|
-
"requests_other":
|
|
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` (
|
|
21
|
-
* `bytes_sent` (
|
|
22
|
-
* `sync_bytes_received` (
|
|
23
|
-
* `sync_bytes_sent` (
|
|
24
|
-
* `requests_get` (
|
|
25
|
-
* `requests_put` (
|
|
26
|
-
* `requests_other` (
|
|
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 `[
|
|
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
|
-
#
|
|
17
|
+
# int64 - Site bandwidth report bytes received
|
|
18
18
|
def bytes_received
|
|
19
19
|
@attributes[:bytes_received]
|
|
20
20
|
end
|
|
21
21
|
|
|
22
|
-
#
|
|
22
|
+
# int64 - Site bandwidth report bytes sent
|
|
23
23
|
def bytes_sent
|
|
24
24
|
@attributes[:bytes_sent]
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
#
|
|
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
|
-
#
|
|
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
|
-
#
|
|
37
|
+
# int64 - Site bandwidth report get requests
|
|
38
38
|
def requests_get
|
|
39
39
|
@attributes[:requests_get]
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
#
|
|
42
|
+
# int64 - Site bandwidth report put requests
|
|
43
43
|
def requests_put
|
|
44
44
|
@attributes[:requests_put]
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
#
|
|
47
|
+
# int64 - Site bandwidth report other requests
|
|
48
48
|
def requests_other
|
|
49
49
|
@attributes[:requests_other]
|
|
50
50
|
end
|
data/lib/files.com/version.rb
CHANGED
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.
|
|
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-
|
|
11
|
+
date: 2026-01-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|