files.com 1.1.698 → 1.1.699
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/remote_server.md +2 -0
- data/lib/files.com/models/remote_server.rb +9 -0
- 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: b1b9be22ebb74b65e03b96b718b6f2e0406f0472e818138613807cd2c8cb9f8b
|
|
4
|
+
data.tar.gz: 92656a3a1cf3e8ef7ec96124ff045bcfead5e12bf83dcb26a8e935c4741c0eac
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eb2f9eabd5cdcd4e7b0a9399c900728ce0e657729e80dab10ba15bdb40a0efc4d630ae14568fab01762cde531fc450b4d739b3d4edb5be3615179c0fd0716c5a
|
|
7
|
+
data.tar.gz: b78256c26f8b5213d05c362514b3213fa3a7da4ebcb0f0a9e68dc51c55da3642fac03906891fd38d2c1d351728ae60e2c4f5d44e36eac23481e728ed8c9029af
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.699
|
data/docs/remote_server.md
CHANGED
|
@@ -69,6 +69,7 @@
|
|
|
69
69
|
"files_agent_up_to_date": true,
|
|
70
70
|
"files_agent_latest_version": "example",
|
|
71
71
|
"files_agent_supports_push_updates": true,
|
|
72
|
+
"direct_transfer_available": true,
|
|
72
73
|
"outbound_agent_id": 1,
|
|
73
74
|
"filebase_bucket": "my-bucket",
|
|
74
75
|
"filebase_access_key": "example",
|
|
@@ -149,6 +150,7 @@
|
|
|
149
150
|
* `files_agent_up_to_date` (boolean): If true, the Files Agent is up to date.
|
|
150
151
|
* `files_agent_latest_version` (string): Latest available Files Agent version
|
|
151
152
|
* `files_agent_supports_push_updates` (boolean): Files Agent supports receiving push updates
|
|
153
|
+
* `direct_transfer_available` (boolean): Whether the Files Agent Proxy recently validated a direct transfer connection. `true` means a direct connection was recently validated (actual availability can vary by client network), `false` means direct transfers are enabled but not currently available, and `null` means direct transfers are disabled or unsupported. Only provided for a connected Files Agent when showing a single Remote Server.
|
|
152
154
|
* `outbound_agent_id` (int64): Route traffic to outbound on a files-agent
|
|
153
155
|
* `filebase_bucket` (string): Filebase: Bucket name
|
|
154
156
|
* `filebase_access_key` (string): Filebase: Access Key.
|
|
@@ -594,6 +594,15 @@ module Files
|
|
|
594
594
|
@attributes[:files_agent_supports_push_updates] = value
|
|
595
595
|
end
|
|
596
596
|
|
|
597
|
+
# boolean - Whether the Files Agent Proxy recently validated a direct transfer connection. `true` means a direct connection was recently validated (actual availability can vary by client network), `false` means direct transfers are enabled but not currently available, and `null` means direct transfers are disabled or unsupported. Only provided for a connected Files Agent when showing a single Remote Server.
|
|
598
|
+
def direct_transfer_available
|
|
599
|
+
@attributes[:direct_transfer_available]
|
|
600
|
+
end
|
|
601
|
+
|
|
602
|
+
def direct_transfer_available=(value)
|
|
603
|
+
@attributes[:direct_transfer_available] = value
|
|
604
|
+
end
|
|
605
|
+
|
|
597
606
|
# int64 - Route traffic to outbound on a files-agent
|
|
598
607
|
def outbound_agent_id
|
|
599
608
|
@attributes[:outbound_agent_id]
|
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.699
|
|
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-07-
|
|
11
|
+
date: 2026-07-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|