files.com 1.1.262 → 1.1.264

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: 0575377f15d0d20eddd448f88ee14a0344c6a38531f3f96d231c20524c0c4e64
4
- data.tar.gz: 4a32bd694f0176fb8434e87183448555672ef92cb87fd6df800885641fd45732
3
+ metadata.gz: 189aa1584a1d82f12b3708952ee731f198fa5638df70c9d771cea9858ef3f7e1
4
+ data.tar.gz: d679c9eb2d984507ef8bcdbc6c6172a509e515d18a5b37b7966ef297d48d473d
5
5
  SHA512:
6
- metadata.gz: f22ed9db31c3c5e3fe44225e2e58059c9decdd09c0151e954a5f32b343b6e35ffaabda00388d62c884c89d58268ad43836c8c47d9a5dc5d1759f8a1226ef762f
7
- data.tar.gz: b8a1ac6677e2d9c1570f4537070e0105bdbe5c3c93e22244423a2050d77e523c78e038cbb517415159073312b96568b9dac182fe68e1b8897605a6f13915a161
6
+ metadata.gz: 0110e7e03165c409bddc12a9fb69c7a500fceb37fa6a78526bd45e3d45048e5186686e4c6cd3a2c883e7d9e0a66c5a7e858d903e200cd2f8f20159325d5f2c6a
7
+ data.tar.gz: 7df0f8e4330964053c330f327b5eb7934b91777e2aecc51ad8212d9433ef8e3fa2a9d83cf03305d9c6d068599be811019e210b2370661b73d0c91d5d2e423f37
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.262
1
+ 1.1.264
data/docs/automation.md CHANGED
@@ -5,6 +5,7 @@
5
5
  ```
6
6
  {
7
7
  "id": 1,
8
+ "always_serialize_jobs": true,
8
9
  "always_overwrite_size_matching_files": true,
9
10
  "automation": "create_folder",
10
11
  "deleted": true,
@@ -90,6 +91,7 @@
90
91
  ```
91
92
 
92
93
  * `id` (int64): Automation ID
94
+ * `always_serialize_jobs` (boolean): Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
93
95
  * `always_overwrite_size_matching_files` (boolean): Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
94
96
  * `automation` (string): Automation type
95
97
  * `deleted` (boolean): Indicates if the automation has been deleted.
@@ -180,6 +182,7 @@ Files::Automation.create(
180
182
  schedule_times_of_day: ["7:30","11:30"],
181
183
  schedule_time_zone: "Eastern Time (US & Canada)",
182
184
  always_overwrite_size_matching_files: true,
185
+ always_serialize_jobs: true,
183
186
  description: "example",
184
187
  disabled: true,
185
188
  exclude_pattern: "path/to/exclude/*",
@@ -215,6 +218,7 @@ Files::Automation.create(
215
218
  * `schedule_times_of_day` (array(string)): If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
216
219
  * `schedule_time_zone` (string): If trigger is `custom_schedule`. Time zone for the schedule.
217
220
  * `always_overwrite_size_matching_files` (boolean): Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
221
+ * `always_serialize_jobs` (boolean): Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
218
222
  * `description` (string): Description for the this Automation.
219
223
  * `disabled` (boolean): If true, this automation will not run.
220
224
  * `exclude_pattern` (string): If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
@@ -266,6 +270,7 @@ Files::Automation.update(id,
266
270
  schedule_times_of_day: ["7:30","11:30"],
267
271
  schedule_time_zone: "Eastern Time (US & Canada)",
268
272
  always_overwrite_size_matching_files: true,
273
+ always_serialize_jobs: true,
269
274
  description: "example",
270
275
  disabled: true,
271
276
  exclude_pattern: "path/to/exclude/*",
@@ -302,6 +307,7 @@ Files::Automation.update(id,
302
307
  * `schedule_times_of_day` (array(string)): If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
303
308
  * `schedule_time_zone` (string): If trigger is `custom_schedule`. Time zone for the schedule.
304
309
  * `always_overwrite_size_matching_files` (boolean): Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
310
+ * `always_serialize_jobs` (boolean): Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
305
311
  * `description` (string): Description for the this Automation.
306
312
  * `disabled` (boolean): If true, this automation will not run.
307
313
  * `exclude_pattern` (string): If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
@@ -370,6 +376,7 @@ automation.update(
370
376
  schedule_times_of_day: ["7:30","11:30"],
371
377
  schedule_time_zone: "Eastern Time (US & Canada)",
372
378
  always_overwrite_size_matching_files: true,
379
+ always_serialize_jobs: true,
373
380
  description: "example",
374
381
  disabled: true,
375
382
  exclude_pattern: "path/to/exclude/*",
@@ -406,6 +413,7 @@ automation.update(
406
413
  * `schedule_times_of_day` (array(string)): If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
407
414
  * `schedule_time_zone` (string): If trigger is `custom_schedule`. Time zone for the schedule.
408
415
  * `always_overwrite_size_matching_files` (boolean): Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
416
+ * `always_serialize_jobs` (boolean): Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
409
417
  * `description` (string): Description for the this Automation.
410
418
  * `disabled` (boolean): If true, this automation will not run.
411
419
  * `exclude_pattern` (string): If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
data/docs/site.md CHANGED
@@ -229,7 +229,7 @@
229
229
  "billable": true,
230
230
  "billing_permission": false,
231
231
  "bypass_site_allowed_ips": false,
232
- "bypass_inactive_disable": false,
232
+ "bypass_user_lifecycle_rules": false,
233
233
  "created_at": "2000-01-01T01:00:00Z",
234
234
  "dav_permission": true,
235
235
  "disabled": true,
@@ -299,7 +299,6 @@
299
299
  "welcome_email_enabled": true,
300
300
  "welcome_screen": "user_controlled",
301
301
  "windows_mode_ftp": true,
302
- "disable_users_from_inactivity_period_days": 1,
303
302
  "group_admins_can_set_user_password": true
304
303
  }
305
304
  ```
@@ -473,7 +472,6 @@
473
472
  * `welcome_email_enabled` (boolean): Will the welcome email be sent to new users?
474
473
  * `welcome_screen` (string): Does the welcome screen appear?
475
474
  * `windows_mode_ftp` (boolean): Does FTP user Windows emulation mode?
476
- * `disable_users_from_inactivity_period_days` (int64): If greater than zero, users will unable to login if they do not show activity within this number of days.
477
475
  * `group_admins_can_set_user_password` (boolean): Allow group admins set password authentication method
478
476
 
479
477
 
@@ -584,7 +582,6 @@ Files::Site.update(
584
582
  opt_out_global: false,
585
583
  use_provided_modified_at: false,
586
584
  custom_namespace: false,
587
- disable_users_from_inactivity_period_days: 1,
588
585
  non_sso_groups_allowed: false,
589
586
  non_sso_users_allowed: false,
590
587
  sharing_enabled: false,
@@ -744,7 +741,6 @@ Files::Site.update(
744
741
  * `opt_out_global` (boolean): Use servers in the USA only?
745
742
  * `use_provided_modified_at` (boolean): Allow uploaders to set `provided_modified_at` for uploaded files?
746
743
  * `custom_namespace` (boolean): Is this site using a custom namespace for users?
747
- * `disable_users_from_inactivity_period_days` (int64): If greater than zero, users will unable to login if they do not show activity within this number of days.
748
744
  * `non_sso_groups_allowed` (boolean): If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.
749
745
  * `non_sso_users_allowed` (boolean): If true, users can be manually created / modified / deleted by Site Admins. Otherwise, users can only be managed via your SSO provider.
750
746
  * `sharing_enabled` (boolean): Allow bundle creation
data/docs/user.md CHANGED
@@ -18,7 +18,7 @@
18
18
  "billable": true,
19
19
  "billing_permission": true,
20
20
  "bypass_site_allowed_ips": true,
21
- "bypass_inactive_disable": true,
21
+ "bypass_user_lifecycle_rules": true,
22
22
  "created_at": "2000-01-01T01:00:00Z",
23
23
  "dav_permission": true,
24
24
  "disabled": true,
@@ -87,7 +87,7 @@
87
87
  * `billable` (boolean): Is this a billable user record?
88
88
  * `billing_permission` (boolean): Allow this user to perform operations on the account, payments, and invoices?
89
89
  * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists?
90
- * `bypass_inactive_disable` (boolean): Exempt this user from being disabled based on inactivity?
90
+ * `bypass_user_lifecycle_rules` (boolean): Exempt this user from user lifecycle rules?
91
91
  * `created_at` (date-time): When this user was created
92
92
  * `dav_permission` (boolean): Can the user connect with WebDAV?
93
93
  * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -208,7 +208,7 @@ Files::User.create(
208
208
  authenticate_until: "2000-01-01T01:00:00Z",
209
209
  authentication_method: "password",
210
210
  billing_permission: false,
211
- bypass_inactive_disable: false,
211
+ bypass_user_lifecycle_rules: false,
212
212
  bypass_site_allowed_ips: false,
213
213
  dav_permission: true,
214
214
  disabled: true,
@@ -260,7 +260,7 @@ Files::User.create(
260
260
  * `authenticate_until` (string): Scheduled Date/Time at which user will be deactivated
261
261
  * `authentication_method` (string): How is this user authenticated?
262
262
  * `billing_permission` (boolean): Allow this user to perform operations on the account, payments, and invoices?
263
- * `bypass_inactive_disable` (boolean): Exempt this user from being disabled based on inactivity?
263
+ * `bypass_user_lifecycle_rules` (boolean): Exempt this user from user lifecycle rules?
264
264
  * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists?
265
265
  * `dav_permission` (boolean): Can the user connect with WebDAV?
266
266
  * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -347,7 +347,7 @@ Files::User.update(id,
347
347
  authenticate_until: "2000-01-01T01:00:00Z",
348
348
  authentication_method: "password",
349
349
  billing_permission: false,
350
- bypass_inactive_disable: false,
350
+ bypass_user_lifecycle_rules: false,
351
351
  bypass_site_allowed_ips: false,
352
352
  dav_permission: true,
353
353
  disabled: true,
@@ -400,7 +400,7 @@ Files::User.update(id,
400
400
  * `authenticate_until` (string): Scheduled Date/Time at which user will be deactivated
401
401
  * `authentication_method` (string): How is this user authenticated?
402
402
  * `billing_permission` (boolean): Allow this user to perform operations on the account, payments, and invoices?
403
- * `bypass_inactive_disable` (boolean): Exempt this user from being disabled based on inactivity?
403
+ * `bypass_user_lifecycle_rules` (boolean): Exempt this user from user lifecycle rules?
404
404
  * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists?
405
405
  * `dav_permission` (boolean): Can the user connect with WebDAV?
406
406
  * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -511,7 +511,7 @@ user.update(
511
511
  authenticate_until: "2000-01-01T01:00:00Z",
512
512
  authentication_method: "password",
513
513
  billing_permission: false,
514
- bypass_inactive_disable: false,
514
+ bypass_user_lifecycle_rules: false,
515
515
  bypass_site_allowed_ips: false,
516
516
  dav_permission: true,
517
517
  disabled: true,
@@ -564,7 +564,7 @@ user.update(
564
564
  * `authenticate_until` (string): Scheduled Date/Time at which user will be deactivated
565
565
  * `authentication_method` (string): How is this user authenticated?
566
566
  * `billing_permission` (boolean): Allow this user to perform operations on the account, payments, and invoices?
567
- * `bypass_inactive_disable` (boolean): Exempt this user from being disabled based on inactivity?
567
+ * `bypass_user_lifecycle_rules` (boolean): Exempt this user from user lifecycle rules?
568
568
  * `bypass_site_allowed_ips` (boolean): Allow this user to skip site-wide IP blacklists?
569
569
  * `dav_permission` (boolean): Can the user connect with WebDAV?
570
570
  * `disabled` (boolean): Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -18,6 +18,15 @@ module Files
18
18
  @attributes[:id] = value
19
19
  end
20
20
 
21
+ # boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
22
+ def always_serialize_jobs
23
+ @attributes[:always_serialize_jobs]
24
+ end
25
+
26
+ def always_serialize_jobs=(value)
27
+ @attributes[:always_serialize_jobs] = value
28
+ end
29
+
21
30
  # boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
22
31
  def always_overwrite_size_matching_files
23
32
  @attributes[:always_overwrite_size_matching_files]
@@ -367,6 +376,7 @@ module Files
367
376
  # schedule_times_of_day - array(string) - If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
368
377
  # schedule_time_zone - string - If trigger is `custom_schedule`. Time zone for the schedule.
369
378
  # always_overwrite_size_matching_files - boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
379
+ # always_serialize_jobs - boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
370
380
  # description - string - Description for the this Automation.
371
381
  # disabled - boolean - If true, this automation will not run.
372
382
  # exclude_pattern - string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
@@ -501,6 +511,7 @@ module Files
501
511
  # schedule_times_of_day - array(string) - If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
502
512
  # schedule_time_zone - string - If trigger is `custom_schedule`. Time zone for the schedule.
503
513
  # always_overwrite_size_matching_files - boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
514
+ # always_serialize_jobs - boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
504
515
  # description - string - Description for the this Automation.
505
516
  # disabled - boolean - If true, this automation will not run.
506
517
  # exclude_pattern - string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
@@ -574,6 +585,7 @@ module Files
574
585
  # schedule_times_of_day - array(string) - If trigger is `custom_schedule`. A list of times of day to run this automation. 24-hour time format.
575
586
  # schedule_time_zone - string - If trigger is `custom_schedule`. Time zone for the schedule.
576
587
  # always_overwrite_size_matching_files - boolean - Ordinarily, files with identical size in the source and destination will be skipped from copy operations to prevent wasted transfer. If this flag is `true` we will overwrite the destination file always. Note that this may cause large amounts of wasted transfer usage. This setting has no effect unless `overwrite_files` is also set to `true`.
588
+ # always_serialize_jobs - boolean - Ordinarily, we will allow automation runs to run in parallel for non-scheduled automations. If this flag is `true` we will force automation runs to be serialized (run one at a time, one after another). This can resolve some issues with race conditions on remote systems at the cost of some performance.
577
589
  # description - string - Description for the this Automation.
578
590
  # disabled - boolean - If true, this automation will not run.
579
591
  # exclude_pattern - string - If set, this glob pattern will exclude files from the automation. Supports globs, except on remote mounts.
@@ -854,11 +854,6 @@ module Files
854
854
  @attributes[:windows_mode_ftp]
855
855
  end
856
856
 
857
- # int64 - If greater than zero, users will unable to login if they do not show activity within this number of days.
858
- def disable_users_from_inactivity_period_days
859
- @attributes[:disable_users_from_inactivity_period_days]
860
- end
861
-
862
857
  # boolean - Allow group admins set password authentication method
863
858
  def group_admins_can_set_user_password
864
859
  @attributes[:group_admins_can_set_user_password]
@@ -959,7 +954,6 @@ module Files
959
954
  # opt_out_global - boolean - Use servers in the USA only?
960
955
  # use_provided_modified_at - boolean - Allow uploaders to set `provided_modified_at` for uploaded files?
961
956
  # custom_namespace - boolean - Is this site using a custom namespace for users?
962
- # disable_users_from_inactivity_period_days - int64 - If greater than zero, users will unable to login if they do not show activity within this number of days.
963
957
  # non_sso_groups_allowed - boolean - If true, groups can be manually created / modified / deleted by Site Admins. Otherwise, groups can only be managed via your SSO provider.
964
958
  # non_sso_users_allowed - boolean - If true, users can be manually created / modified / deleted by Site Admins. Otherwise, users can only be managed via your SSO provider.
965
959
  # sharing_enabled - boolean - Allow bundle creation
@@ -1076,7 +1070,6 @@ module Files
1076
1070
  raise InvalidParameterError.new("Bad parameter: bundle_registration_notifications must be an String") if params[:bundle_registration_notifications] and !params[:bundle_registration_notifications].is_a?(String)
1077
1071
  raise InvalidParameterError.new("Bad parameter: bundle_activity_notifications must be an String") if params[:bundle_activity_notifications] and !params[:bundle_activity_notifications].is_a?(String)
1078
1072
  raise InvalidParameterError.new("Bad parameter: bundle_upload_receipt_notifications must be an String") if params[:bundle_upload_receipt_notifications] and !params[:bundle_upload_receipt_notifications].is_a?(String)
1079
- raise InvalidParameterError.new("Bad parameter: disable_users_from_inactivity_period_days must be an Integer") if params[:disable_users_from_inactivity_period_days] and !params[:disable_users_from_inactivity_period_days].is_a?(Integer)
1080
1073
  raise InvalidParameterError.new("Bad parameter: sftp_host_key_type must be an String") if params[:sftp_host_key_type] and !params[:sftp_host_key_type].is_a?(String)
1081
1074
  raise InvalidParameterError.new("Bad parameter: active_sftp_host_key_id must be an Integer") if params[:active_sftp_host_key_id] and !params[:active_sftp_host_key_id].is_a?(Integer)
1082
1075
  raise InvalidParameterError.new("Bad parameter: bundle_watermark_value must be an Hash") if params[:bundle_watermark_value] and !params[:bundle_watermark_value].is_a?(Hash)
@@ -117,13 +117,13 @@ module Files
117
117
  @attributes[:bypass_site_allowed_ips] = value
118
118
  end
119
119
 
120
- # boolean - Exempt this user from being disabled based on inactivity?
121
- def bypass_inactive_disable
122
- @attributes[:bypass_inactive_disable]
120
+ # boolean - Exempt this user from user lifecycle rules?
121
+ def bypass_user_lifecycle_rules
122
+ @attributes[:bypass_user_lifecycle_rules]
123
123
  end
124
124
 
125
- def bypass_inactive_disable=(value)
126
- @attributes[:bypass_inactive_disable] = value
125
+ def bypass_user_lifecycle_rules=(value)
126
+ @attributes[:bypass_user_lifecycle_rules] = value
127
127
  end
128
128
 
129
129
  # date-time - When this user was created
@@ -740,7 +740,7 @@ module Files
740
740
  # authenticate_until - string - Scheduled Date/Time at which user will be deactivated
741
741
  # authentication_method - string - How is this user authenticated?
742
742
  # billing_permission - boolean - Allow this user to perform operations on the account, payments, and invoices?
743
- # bypass_inactive_disable - boolean - Exempt this user from being disabled based on inactivity?
743
+ # bypass_user_lifecycle_rules - boolean - Exempt this user from user lifecycle rules?
744
744
  # bypass_site_allowed_ips - boolean - Allow this user to skip site-wide IP blacklists?
745
745
  # dav_permission - boolean - Can the user connect with WebDAV?
746
746
  # disabled - boolean - Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -905,7 +905,7 @@ module Files
905
905
  # authenticate_until - string - Scheduled Date/Time at which user will be deactivated
906
906
  # authentication_method - string - How is this user authenticated?
907
907
  # billing_permission - boolean - Allow this user to perform operations on the account, payments, and invoices?
908
- # bypass_inactive_disable - boolean - Exempt this user from being disabled based on inactivity?
908
+ # bypass_user_lifecycle_rules - boolean - Exempt this user from user lifecycle rules?
909
909
  # bypass_site_allowed_ips - boolean - Allow this user to skip site-wide IP blacklists?
910
910
  # dav_permission - boolean - Can the user connect with WebDAV?
911
911
  # disabled - boolean - Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -1020,7 +1020,7 @@ module Files
1020
1020
  # authenticate_until - string - Scheduled Date/Time at which user will be deactivated
1021
1021
  # authentication_method - string - How is this user authenticated?
1022
1022
  # billing_permission - boolean - Allow this user to perform operations on the account, payments, and invoices?
1023
- # bypass_inactive_disable - boolean - Exempt this user from being disabled based on inactivity?
1023
+ # bypass_user_lifecycle_rules - boolean - Exempt this user from user lifecycle rules?
1024
1024
  # bypass_site_allowed_ips - boolean - Allow this user to skip site-wide IP blacklists?
1025
1025
  # dav_permission - boolean - Can the user connect with WebDAV?
1026
1026
  # disabled - boolean - Is user disabled? Disabled users cannot log in, and do not count for billing purposes. Users can be automatically disabled after an inactivity period via a Site setting or schedule to be deactivated after specific date.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.262"
4
+ VERSION = "1.1.264"
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.262
4
+ version: 1.1.264
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-05 00:00:00.000000000 Z
11
+ date: 2025-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable