files.com 1.1.135 → 1.1.136

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: '09c4cb3d58a17be7a9ab26258187f31ae2d1637846a28639226bfc74894b252e'
4
- data.tar.gz: 0372652b3e8759b015fcabe8142408940c8948295e65cd37d6e82757e0936d9c
3
+ metadata.gz: 3e859f7c41276594a9eb2212c1c76ba8704592000d82c9d39276d86f8ff8c7cf
4
+ data.tar.gz: 0cc4abaa60ae1a97cc03a23332fd9a8a3d499c4097d4e58d495d46af7de85171
5
5
  SHA512:
6
- metadata.gz: 436944eb77c62f2b239a12ee4b4df981a929f96d44505e2b9720e12558f045754e45bf0978b9f856076ac92fae61639ffa11d4000c3109c40a3d66c0e46b06ef
7
- data.tar.gz: 232a5a10fc682b48fe5c9b62b4f93a4994e36c1ed6ed7269571b7770bebf261c0cc97feb6172810072b36338b75fd7b8c4774f6cc19b13ee202d205c13799ead
6
+ metadata.gz: 9dcdb120db0ebbef604268e33b104cdf7edf5000d0d98583e3f2d2ba5d7b6626c20a76312958bb745a73553361d294189e5b6ea02c8486aad11e3fb89b00947c
7
+ data.tar.gz: 450ac8eeabf09ba388aff5d662fbfb27d6cc9683b0969cb3b7b3e2a5f6df6dfb232db35882a933c0c6f4b8f9b423526a735fff64e15337b81a542713834b8a69
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.135
1
+ 1.1.136
@@ -18,7 +18,7 @@
18
18
  "log_level": "example",
19
19
  "log_rotate_num": 1,
20
20
  "log_rotate_size": 1,
21
- "max_concurrent_jobs": 1,
21
+ "override_max_concurrent_jobs": 1,
22
22
  "graceful_shutdown_timeout": 1,
23
23
  "transfer_rate_limit": "example",
24
24
  "api_token": "example",
@@ -37,16 +37,16 @@
37
37
  * `subdomain` (string): Files.com subdomain site name
38
38
  * `root` (string): The root directory for the agent
39
39
  * `follow_links` (boolean): Follow symlinks when traversing directories
40
- * `prefer_protocol` (string): Preferred network protocol ['udp', 'tcp']
41
- * `dns` (string): DNS lookup method ['auto','doh','system']
40
+ * `prefer_protocol` (string): Preferred network protocol ['udp', 'tcp'] (default udp)
41
+ * `dns` (string): DNS lookup method ['auto','doh','system'] (default auto)
42
42
  * `proxy_all_outbound` (boolean): Proxy all outbound traffic through files.com proxy server
43
43
  * `endpoint_override` (string): Custom site endpoint URL
44
44
  * `log_file` (string): Log file name and location
45
- * `log_level` (string): Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal']
45
+ * `log_level` (string): Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal'] (default info)
46
46
  * `log_rotate_num` (int64): Log route for agent logs. (default 5)
47
- * `log_rotate_size` (int64): Log route size in MB for agent logs. (default 20MB)
48
- * `max_concurrent_jobs` (int64): Maximum number of concurrent jobs (default CPU Count * 4)
49
- * `graceful_shutdown_timeout` (int64): Graceful shutdown timeout in seconds
47
+ * `log_rotate_size` (int64): Log route size in MB for agent logs. (default 20)
48
+ * `override_max_concurrent_jobs` (int64): Maximum number of concurrent jobs (default 1024)
49
+ * `graceful_shutdown_timeout` (int64): Graceful shutdown timeout in seconds (default 15)
50
50
  * `transfer_rate_limit` (string): File transfer (upload/download) rate limit
51
51
  `<limit>-<period>`, with the given periods:
52
52
  * 'S': second
@@ -39,12 +39,12 @@ module Files
39
39
  @attributes[:follow_links]
40
40
  end
41
41
 
42
- # string - Preferred network protocol ['udp', 'tcp']
42
+ # string - Preferred network protocol ['udp', 'tcp'] (default udp)
43
43
  def prefer_protocol
44
44
  @attributes[:prefer_protocol]
45
45
  end
46
46
 
47
- # string - DNS lookup method ['auto','doh','system']
47
+ # string - DNS lookup method ['auto','doh','system'] (default auto)
48
48
  def dns
49
49
  @attributes[:dns]
50
50
  end
@@ -64,7 +64,7 @@ module Files
64
64
  @attributes[:log_file]
65
65
  end
66
66
 
67
- # string - Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal']
67
+ # string - Log level for the agent logs ['debug', 'info', 'warn', 'error', 'fatal'] (default info)
68
68
  def log_level
69
69
  @attributes[:log_level]
70
70
  end
@@ -74,17 +74,17 @@ module Files
74
74
  @attributes[:log_rotate_num]
75
75
  end
76
76
 
77
- # int64 - Log route size in MB for agent logs. (default 20MB)
77
+ # int64 - Log route size in MB for agent logs. (default 20)
78
78
  def log_rotate_size
79
79
  @attributes[:log_rotate_size]
80
80
  end
81
81
 
82
- # int64 - Maximum number of concurrent jobs (default CPU Count * 4)
83
- def max_concurrent_jobs
84
- @attributes[:max_concurrent_jobs]
82
+ # int64 - Maximum number of concurrent jobs (default 1024)
83
+ def override_max_concurrent_jobs
84
+ @attributes[:override_max_concurrent_jobs]
85
85
  end
86
86
 
87
- # int64 - Graceful shutdown timeout in seconds
87
+ # int64 - Graceful shutdown timeout in seconds (default 15)
88
88
  def graceful_shutdown_timeout
89
89
  @attributes[:graceful_shutdown_timeout]
90
90
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.135"
4
+ VERSION = "1.1.136"
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.135
4
+ version: 1.1.136
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-20 00:00:00.000000000 Z
11
+ date: 2024-09-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable