files.com 1.0.235 → 1.0.236

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1b3baaefc0f4a26735cea71608e049df98a24520b99abdde35c29a62b1080d23
4
- data.tar.gz: b6ba695e36c7f873f7ef2ec26c9c72460f6bf219206eae593586fdd915b498cf
3
+ metadata.gz: 552519b04a1256d02139b97b36d9c2d398b0b35aa06e934380b2c0e6dbcc48a9
4
+ data.tar.gz: 57a407a420d4f2646937ae647022f8b0f1ba8e93e8f0a52fe5fd413f1ad5fd36
5
5
  SHA512:
6
- metadata.gz: d020694cdd5fe7fa68898f89cf5ecc01bfa7d187d41923c3631d44573cfbfc429b1676f871bd2e84916731a6c5ff4df5edd12c200cf05f664559fababa94b889
7
- data.tar.gz: 6db792177c5186136cf9ee6c630e65dac277e597a425e08004ac8b8d722ec1d9bb9d255aee0a9a94a78cfb5335d307ffca8cce3cee3ae1e338a67df269ec2018
6
+ metadata.gz: fd27015305911d0ed20e1dca918c11113d44a93587e57dc6888176ec4fba12704a8cc74ad20d941c9b62e79eef13340ab19419c7b9cb0698aa76e08a8f8fcf03
7
+ data.tar.gz: 653f9efbd638f7b202974897bbc70ac6af3f910f85fdac4c6c6a188e40b1a25ad33de8bece0554dbe013531ec9c3a40c5a50714014255016828e97e911fcb9df
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.235
1
+ 1.0.236
@@ -5,6 +5,7 @@
5
5
  ```
6
6
  {
7
7
  "id": 1,
8
+ "disabled": true,
8
9
  "authentication_method": "password",
9
10
  "hostname": "remote-server.com",
10
11
  "remote_home_path": "/home/user1",
@@ -40,6 +41,7 @@
40
41
  ```
41
42
 
42
43
  * `id` (int64): Remote server ID
44
+ * `disabled` (boolean): If true, this server has been disabled due to failures. Make any change or set disabled to false to clear this flag.
43
45
  * `authentication_method` (string): Type of authentication method
44
46
  * `hostname` (string): Hostname or IP address
45
47
  * `remote_home_path` (string): Initial home folder on remote server
data/docs/sso_strategy.md CHANGED
@@ -85,7 +85,7 @@
85
85
  * `provision_company` (string): Default company for auto provisioned users.
86
86
  * `ldap_base_dn` (string): Base DN for looking up users in LDAP server
87
87
  * `ldap_domain` (string): Domain name that will be appended to LDAP usernames
88
- * `enabled` (boolean): Is strategy enabled?
88
+ * `enabled` (boolean): Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
89
89
  * `ldap_host` (string): LDAP host
90
90
  * `ldap_host_2` (string): LDAP backup host
91
91
  * `ldap_host_3` (string): LDAP backup host
@@ -18,6 +18,15 @@ module Files
18
18
  @attributes[:id] = value
19
19
  end
20
20
 
21
+ # boolean - If true, this server has been disabled due to failures. Make any change or set disabled to false to clear this flag.
22
+ def disabled
23
+ @attributes[:disabled]
24
+ end
25
+
26
+ def disabled=(value)
27
+ @attributes[:disabled] = value
28
+ end
29
+
21
30
  # string - Type of authentication method
22
31
  def authentication_method
23
32
  @attributes[:authentication_method]
@@ -184,7 +184,7 @@ module Files
184
184
  @attributes[:ldap_domain]
185
185
  end
186
186
 
187
- # boolean - Is strategy enabled?
187
+ # boolean - Is strategy enabled? This may become automatically set to `false` after a high number and duration of failures.
188
188
  def enabled
189
189
  @attributes[:enabled]
190
190
  end
data/lib/files.com.rb CHANGED
@@ -94,7 +94,6 @@ require "files.com/models/site"
94
94
  require "files.com/models/sso_strategy"
95
95
  require "files.com/models/status"
96
96
  require "files.com/models/style"
97
- require "files.com/models/sync_job"
98
97
  require "files.com/models/usage_daily_snapshot"
99
98
  require "files.com/models/usage_snapshot"
100
99
  require "files.com/models/user"
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.0.235
4
+ version: 1.0.236
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-01-24 00:00:00.000000000 Z
11
+ date: 2022-01-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -154,7 +154,6 @@ files:
154
154
  - docs/sso_strategy.md
155
155
  - docs/status.md
156
156
  - docs/style.md
157
- - docs/sync_job.md
158
157
  - docs/usage_daily_snapshot.md
159
158
  - docs/usage_snapshot.md
160
159
  - docs/user.md
@@ -236,7 +235,6 @@ files:
236
235
  - lib/files.com/models/sso_strategy.rb
237
236
  - lib/files.com/models/status.rb
238
237
  - lib/files.com/models/style.rb
239
- - lib/files.com/models/sync_job.rb
240
238
  - lib/files.com/models/usage_daily_snapshot.rb
241
239
  - lib/files.com/models/usage_snapshot.rb
242
240
  - lib/files.com/models/user.rb
data/docs/sync_job.md DELETED
@@ -1,37 +0,0 @@
1
- # SyncJob
2
-
3
- ## Example SyncJob Object
4
-
5
- ```
6
- {
7
- "queued_at": "2000-01-01T01:00:00Z",
8
- "updated_at": "2000-01-01T01:00:00Z",
9
- "status": "",
10
- "regional_worker_status": "",
11
- "uuid": "",
12
- "folder_behavior_id": 1
13
- }
14
- ```
15
-
16
- * `queued_at` (date-time): Job enqueued at
17
- * `updated_at` (date-time): Job updated at
18
- * `status` (string): Status of the job
19
- * `regional_worker_status` (string): Most recent reported status of sync worker
20
- * `uuid` (string):
21
- * `folder_behavior_id` (int64):
22
-
23
-
24
- ---
25
-
26
- ## List Sync Jobs
27
-
28
- ```
29
- Files::SyncJob.list(
30
- per_page: 1
31
- )
32
- ```
33
-
34
- ### Parameters
35
-
36
- * `cursor` (string): Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
37
- * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
@@ -1,58 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module Files
4
- class SyncJob
5
- attr_reader :options, :attributes
6
-
7
- def initialize(attributes = {}, options = {})
8
- @attributes = attributes || {}
9
- @options = options || {}
10
- end
11
-
12
- # date-time - Job enqueued at
13
- def queued_at
14
- @attributes[:queued_at]
15
- end
16
-
17
- # date-time - Job updated at
18
- def updated_at
19
- @attributes[:updated_at]
20
- end
21
-
22
- # string - Status of the job
23
- def status
24
- @attributes[:status]
25
- end
26
-
27
- # string - Most recent reported status of sync worker
28
- def regional_worker_status
29
- @attributes[:regional_worker_status]
30
- end
31
-
32
- # string -
33
- def uuid
34
- @attributes[:uuid]
35
- end
36
-
37
- # int64 -
38
- def folder_behavior_id
39
- @attributes[:folder_behavior_id]
40
- end
41
-
42
- # Parameters:
43
- # cursor - string - Used for pagination. Send a cursor value to resume an existing list from the point at which you left off. Get a cursor from an existing list via either the X-Files-Cursor-Next header or the X-Files-Cursor-Prev header.
44
- # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
45
- def self.list(params = {}, options = {})
46
- raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
47
- raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
48
-
49
- List.new(SyncJob, params) do
50
- Api.send_request("/sync_jobs", :get, params, options)
51
- end
52
- end
53
-
54
- def self.all(params = {}, options = {})
55
- list(params, options)
56
- end
57
- end
58
- end