files.com 1.1.528 → 1.1.530
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/account_line_item.md +4 -4
- data/docs/bandwidth_snapshot.md +7 -7
- data/docs/bundle.md +1 -1
- data/docs/invoice.md +4 -4
- data/docs/invoice_line_item.md +1 -1
- data/docs/payment.md +4 -4
- data/docs/payment_line_item.md +1 -1
- data/docs/remote_bandwidth_snapshot.md +2 -2
- data/docs/remote_mount_backend.md +8 -8
- data/docs/site.md +1 -1
- data/docs/usage_daily_snapshot.md +4 -4
- data/docs/usage_snapshot.md +10 -10
- data/lib/files.com/models/bundle.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: afad20ca972a1aa561b1f1445ffb627303a203cff9550979eebc89c60fca3285
|
|
4
|
+
data.tar.gz: 258e844ea1234bc061a9b75e437769331ba58c86f9de0e231ec52b897a067887
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e8371cf2846dc8ab1c3812556a06b28655fabaeb4bbbea929c38a093b06c2933963e4b08705263668167137e08d39d553530b3b9d9de242aaba6dd4eacf1cf2
|
|
7
|
+
data.tar.gz: 5e1b753fe649f538d62b1b24f0a30ea42ea4f60af6c1bf1e0bf48f50638eb554138492445a79948c9a568e6dbba2751c88bae61f91f731cca76ac69a02687ec1
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.530
|
data/docs/account_line_item.md
CHANGED
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
```
|
|
6
6
|
{
|
|
7
7
|
"id": 1,
|
|
8
|
-
"amount": 1.0,
|
|
9
|
-
"balance": 1.0,
|
|
8
|
+
"amount": "1.0",
|
|
9
|
+
"balance": "1.0",
|
|
10
10
|
"created_at": "2000-01-01T01:00:00Z",
|
|
11
11
|
"currency": "USD",
|
|
12
12
|
"download_uri": "https://url...",
|
|
13
13
|
"invoice_line_items": [
|
|
14
14
|
{
|
|
15
15
|
"id": 1,
|
|
16
|
-
"amount": 1.0,
|
|
16
|
+
"amount": "1.0",
|
|
17
17
|
"created_at": "2000-01-01T01:00:00Z",
|
|
18
18
|
"description": "Service from 2019-01-01 through 2019-12-31",
|
|
19
19
|
"type": "invoice",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"method": "paypal",
|
|
31
31
|
"payment_line_items": [
|
|
32
32
|
{
|
|
33
|
-
"amount": 1.0,
|
|
33
|
+
"amount": "1.0",
|
|
34
34
|
"created_at": "2000-01-01T01:00:00Z",
|
|
35
35
|
"invoice_id": 1,
|
|
36
36
|
"payment_id": 1
|
data/docs/bandwidth_snapshot.md
CHANGED
|
@@ -5,13 +5,13 @@
|
|
|
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.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",
|
|
15
15
|
"logged_at": "2000-01-01T01:00:00Z"
|
|
16
16
|
}
|
|
17
17
|
```
|
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, 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, created_at ]` and `[ 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`.
|
data/docs/invoice.md
CHANGED
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
```
|
|
6
6
|
{
|
|
7
7
|
"id": 1,
|
|
8
|
-
"amount": 1.0,
|
|
9
|
-
"balance": 1.0,
|
|
8
|
+
"amount": "1.0",
|
|
9
|
+
"balance": "1.0",
|
|
10
10
|
"created_at": "2000-01-01T01:00:00Z",
|
|
11
11
|
"currency": "USD",
|
|
12
12
|
"download_uri": "https://url...",
|
|
13
13
|
"invoice_line_items": [
|
|
14
14
|
{
|
|
15
15
|
"id": 1,
|
|
16
|
-
"amount": 1.0,
|
|
16
|
+
"amount": "1.0",
|
|
17
17
|
"created_at": "2000-01-01T01:00:00Z",
|
|
18
18
|
"description": "Service from 2019-01-01 through 2019-12-31",
|
|
19
19
|
"type": "invoice",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"method": "paypal",
|
|
31
31
|
"payment_line_items": [
|
|
32
32
|
{
|
|
33
|
-
"amount": 1.0,
|
|
33
|
+
"amount": "1.0",
|
|
34
34
|
"created_at": "2000-01-01T01:00:00Z",
|
|
35
35
|
"invoice_id": 1,
|
|
36
36
|
"payment_id": 1
|
data/docs/invoice_line_item.md
CHANGED
data/docs/payment.md
CHANGED
|
@@ -5,15 +5,15 @@
|
|
|
5
5
|
```
|
|
6
6
|
{
|
|
7
7
|
"id": 1,
|
|
8
|
-
"amount": 1.0,
|
|
9
|
-
"balance": 1.0,
|
|
8
|
+
"amount": "1.0",
|
|
9
|
+
"balance": "1.0",
|
|
10
10
|
"created_at": "2000-01-01T01:00:00Z",
|
|
11
11
|
"currency": "USD",
|
|
12
12
|
"download_uri": "https://url...",
|
|
13
13
|
"invoice_line_items": [
|
|
14
14
|
{
|
|
15
15
|
"id": 1,
|
|
16
|
-
"amount": 1.0,
|
|
16
|
+
"amount": "1.0",
|
|
17
17
|
"created_at": "2000-01-01T01:00:00Z",
|
|
18
18
|
"description": "Service from 2019-01-01 through 2019-12-31",
|
|
19
19
|
"type": "invoice",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"method": "paypal",
|
|
31
31
|
"payment_line_items": [
|
|
32
32
|
{
|
|
33
|
-
"amount": 1.0,
|
|
33
|
+
"amount": "1.0",
|
|
34
34
|
"created_at": "2000-01-01T01:00:00Z",
|
|
35
35
|
"invoice_id": 1,
|
|
36
36
|
"payment_id": 1
|
data/docs/payment_line_item.md
CHANGED
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"health_check_type": "active",
|
|
24
24
|
"id": 1,
|
|
25
25
|
"interval": 60,
|
|
26
|
-
"min_free_cpu": 1.0,
|
|
27
|
-
"min_free_mem": 1.0,
|
|
26
|
+
"min_free_cpu": "1.0",
|
|
27
|
+
"min_free_mem": "1.0",
|
|
28
28
|
"priority": 1,
|
|
29
29
|
"remote_path": "/path/on/remote",
|
|
30
30
|
"remote_server_id": 1,
|
|
@@ -93,8 +93,8 @@ Files::RemoteMountBackend.create(
|
|
|
93
93
|
health_check_enabled: true,
|
|
94
94
|
health_check_type: "active",
|
|
95
95
|
interval: 60,
|
|
96
|
-
min_free_cpu: 1.0,
|
|
97
|
-
min_free_mem: 1.0,
|
|
96
|
+
min_free_cpu: "1.0",
|
|
97
|
+
min_free_mem: "1.0",
|
|
98
98
|
priority: 1,
|
|
99
99
|
remote_path: "/path/on/remote",
|
|
100
100
|
rise: 1,
|
|
@@ -145,8 +145,8 @@ Files::RemoteMountBackend.update(id,
|
|
|
145
145
|
health_check_enabled: true,
|
|
146
146
|
health_check_type: "active",
|
|
147
147
|
interval: 60,
|
|
148
|
-
min_free_cpu: 1.0,
|
|
149
|
-
min_free_mem: 1.0,
|
|
148
|
+
min_free_cpu: "1.0",
|
|
149
|
+
min_free_mem: "1.0",
|
|
150
150
|
priority: 1,
|
|
151
151
|
remote_path: "/path/on/remote",
|
|
152
152
|
rise: 1,
|
|
@@ -213,8 +213,8 @@ remote_mount_backend.update(
|
|
|
213
213
|
health_check_enabled: true,
|
|
214
214
|
health_check_type: "active",
|
|
215
215
|
interval: 60,
|
|
216
|
-
min_free_cpu: 1.0,
|
|
217
|
-
min_free_mem: 1.0,
|
|
216
|
+
min_free_cpu: "1.0",
|
|
217
|
+
min_free_mem: "1.0",
|
|
218
218
|
priority: 1,
|
|
219
219
|
remote_path: "/path/on/remote",
|
|
220
220
|
rise: 1,
|
data/docs/site.md
CHANGED
|
@@ -135,7 +135,7 @@
|
|
|
135
135
|
"motd_text": "example",
|
|
136
136
|
"motd_use_for_ftp": true,
|
|
137
137
|
"motd_use_for_sftp": true,
|
|
138
|
-
"next_billing_amount": 1.0,
|
|
138
|
+
"next_billing_amount": "1.0",
|
|
139
139
|
"next_billing_date": "Apr 20",
|
|
140
140
|
"office_integration_available": true,
|
|
141
141
|
"office_integration_type": "example",
|
|
@@ -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": "65536",
|
|
14
|
+
"deleted_files_storage": "65536",
|
|
15
|
+
"deleted_files_counted_in_minimum": "65536",
|
|
16
|
+
"root_storage": "65536",
|
|
17
17
|
"usage_by_top_level_dir": [
|
|
18
18
|
{
|
|
19
19
|
"dir": "dir",
|
data/docs/usage_snapshot.md
CHANGED
|
@@ -8,16 +8,16 @@
|
|
|
8
8
|
"start_at": "2000-01-01T01:00:00Z",
|
|
9
9
|
"end_at": "2000-01-01T01:00:00Z",
|
|
10
10
|
"high_water_user_count": 1,
|
|
11
|
-
"current_storage": 1.0,
|
|
12
|
-
"high_water_storage": 1.0,
|
|
13
|
-
"root_storage": 1.0,
|
|
14
|
-
"deleted_files_counted_in_minimum": 1.0,
|
|
15
|
-
"deleted_files_storage": 1.0,
|
|
16
|
-
"total_billable_usage": 1.0,
|
|
17
|
-
"total_billable_transfer_usage": 1.0,
|
|
18
|
-
"bytes_sent": 1.0,
|
|
19
|
-
"sync_bytes_received": 1.0,
|
|
20
|
-
"sync_bytes_sent": 1.0,
|
|
11
|
+
"current_storage": "1.0",
|
|
12
|
+
"high_water_storage": "1.0",
|
|
13
|
+
"root_storage": "1.0",
|
|
14
|
+
"deleted_files_counted_in_minimum": "1.0",
|
|
15
|
+
"deleted_files_storage": "1.0",
|
|
16
|
+
"total_billable_usage": "1.0",
|
|
17
|
+
"total_billable_transfer_usage": "1.0",
|
|
18
|
+
"bytes_sent": "1.0",
|
|
19
|
+
"sync_bytes_received": "1.0",
|
|
20
|
+
"sync_bytes_sent": "1.0",
|
|
21
21
|
"usage_by_top_level_dir": [
|
|
22
22
|
{
|
|
23
23
|
"dir": "dir",
|
|
@@ -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, 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, created_at ]` and `[ 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`.
|
data/lib/files.com/version.rb
CHANGED