files.com 1.1.536 → 1.1.538
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/bundle.md +1 -1
- data/docs/usage_daily_snapshot.md +8 -8
- data/lib/files.com/models/bundle.rb +1 -1
- data/lib/files.com/models/usage_daily_snapshot.rb +4 -4
- 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: a544dd0cf0584e3f3483bef5f79d87c800147cbf9afb553ea507be8ab080231e
|
|
4
|
+
data.tar.gz: 9f37c7c2f145b106b4a1e39e89a52bd9fe08b5ab6237e5077ce19530cd77544c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f92595a864d7c015d30c465d90e69c73b947c259b970d3267d125abd023d7b029cb30064606949b12c357db2a20160b537a62dc093ad45fcd28d63257b99865
|
|
7
|
+
data.tar.gz: 620b8262ec34fb4918c617d2ab90957d829485130c9c6cc3719f9ead745b399fc78e6d7505d2d7256ba28eb65bde91bf1976f76f8cacc886535a771c31276a94
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.538
|
data/docs/bundle.md
CHANGED
|
@@ -154,7 +154,7 @@ Files::Bundle.list(
|
|
|
154
154
|
* `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.
|
|
155
155
|
* `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
156
156
|
* `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
157
|
-
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id,
|
|
157
|
+
* `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
158
158
|
* `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
159
159
|
* `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
160
160
|
* `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"read_api_usage": 1,
|
|
11
11
|
"write_api_usage": 1,
|
|
12
12
|
"user_count": 1,
|
|
13
|
-
"current_storage":
|
|
14
|
-
"deleted_files_storage":
|
|
15
|
-
"deleted_files_counted_in_minimum":
|
|
16
|
-
"root_storage":
|
|
13
|
+
"current_storage": 1,
|
|
14
|
+
"deleted_files_storage": 1,
|
|
15
|
+
"deleted_files_counted_in_minimum": 1,
|
|
16
|
+
"root_storage": 1,
|
|
17
17
|
"usage_by_top_level_dir": [
|
|
18
18
|
{
|
|
19
19
|
"dir": "dir",
|
|
@@ -30,10 +30,10 @@
|
|
|
30
30
|
* `read_api_usage` (int64): Read API Calls used on this day. Note: only updated for days before the current day.
|
|
31
31
|
* `write_api_usage` (int64): Write API Calls used on this day. Note: only updated for days before the current day.
|
|
32
32
|
* `user_count` (int64): Number of billable users as of this day.
|
|
33
|
-
* `current_storage` (
|
|
34
|
-
* `deleted_files_storage` (
|
|
35
|
-
* `deleted_files_counted_in_minimum` (
|
|
36
|
-
* `root_storage` (
|
|
33
|
+
* `current_storage` (int64): GB of Files Native Storage used on this day.
|
|
34
|
+
* `deleted_files_storage` (int64): GB of Files Native Storage used on this day for files that have been deleted and are stored as backups.
|
|
35
|
+
* `deleted_files_counted_in_minimum` (int64): GB of Files Native Storage used on this day for files that have been permanently deleted but were uploaded less than 30 days ago, and are still billable.
|
|
36
|
+
* `root_storage` (int64): GB of Files Native Storage used for the root folder. Included here because this value will not be part of `usage_by_top_level_dir`
|
|
37
37
|
* `usage_by_top_level_dir` (array(object)): Usage broken down by each top-level folder
|
|
38
38
|
|
|
39
39
|
|
|
@@ -531,7 +531,7 @@ module Files
|
|
|
531
531
|
# 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.
|
|
532
532
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
|
533
533
|
# sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
|
|
534
|
-
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id,
|
|
534
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
|
|
535
535
|
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
536
536
|
# filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
|
|
537
537
|
# filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
|
|
@@ -39,22 +39,22 @@ module Files
|
|
|
39
39
|
@attributes[:user_count]
|
|
40
40
|
end
|
|
41
41
|
|
|
42
|
-
#
|
|
42
|
+
# int64 - GB of Files Native Storage used on this day.
|
|
43
43
|
def current_storage
|
|
44
44
|
@attributes[:current_storage]
|
|
45
45
|
end
|
|
46
46
|
|
|
47
|
-
#
|
|
47
|
+
# int64 - GB of Files Native Storage used on this day for files that have been deleted and are stored as backups.
|
|
48
48
|
def deleted_files_storage
|
|
49
49
|
@attributes[:deleted_files_storage]
|
|
50
50
|
end
|
|
51
51
|
|
|
52
|
-
#
|
|
52
|
+
# int64 - GB of Files Native Storage used on this day for files that have been permanently deleted but were uploaded less than 30 days ago, and are still billable.
|
|
53
53
|
def deleted_files_counted_in_minimum
|
|
54
54
|
@attributes[:deleted_files_counted_in_minimum]
|
|
55
55
|
end
|
|
56
56
|
|
|
57
|
-
#
|
|
57
|
+
# int64 - GB of Files Native Storage used for the root folder. Included here because this value will not be part of `usage_by_top_level_dir`
|
|
58
58
|
def root_storage
|
|
59
59
|
@attributes[:root_storage]
|
|
60
60
|
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.538
|
|
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-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|