files.com 1.1.602 → 1.1.603

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: 407c1e78f55e57b83687bda6d5d67db52270cbcb27ccbbe98fc3938d5bf02253
4
- data.tar.gz: da5b4b864a77ef159883c2d18bed8c8b43a82d5e10e7e9db8d91f853329824f0
3
+ metadata.gz: bbb4000a4fef4d9a08ec6584c260036f85fc135cf04b627a4701bebfa217cab3
4
+ data.tar.gz: 3a04d5538c5751491746a7bab834b80b155a2127c47f970c115621f82617ee3c
5
5
  SHA512:
6
- metadata.gz: c3e5980fcfed3128002c39455caf2c576cb3f25967a26f291289d8992e4f7ad45b12274de8ba74b8a4f5ebc33be8913fe6ec8724ef117fea625c0a3dcdcfcd3d
7
- data.tar.gz: 34ccb83648bd4e5191b575b4c5409c3bce10bab35364aee39c91e3382f03406d9800e040cd2a2e0003553ca53e2f917cf24eb9c49c0c5d0b8afd9f6910b7a6ee
6
+ metadata.gz: 567d6d5dcdd1fe9c164b034443352999fcacf0b91fe1e0265d396445f53408d9f10ed0f668f481eb9f097936c58dc3c8f2c57ed49e11ded7f7b1006efb50e798
7
+ data.tar.gz: 30f630aef6ca3b6e20943ac4a9f83077482637385440e48e8dab0bb22be891f0efbf91ade65af97b58450cf18175a5ab20ab6bb8efbb595bdfb6515fc81427dc
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.602
1
+ 1.1.603
@@ -5,7 +5,7 @@
5
5
  ```
6
6
  {
7
7
  "id": 1,
8
- "authentication_method": "password",
8
+ "authentication_method": "all_non_sso",
9
9
  "group_ids": [
10
10
  1,
11
11
  2,
@@ -26,7 +26,7 @@
26
26
  ```
27
27
 
28
28
  * `id` (int64): User Lifecycle Rule ID
29
- * `authentication_method` (string): User authentication method for which the rule will apply.
29
+ * `authentication_method` (string): User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
30
30
  * `group_ids` (array(int64)): Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
31
31
  * `action` (string): Action to take on inactive users (disable or delete)
32
32
  * `inactivity_days` (int64): Number of days of inactivity before the rule applies
@@ -77,7 +77,7 @@ Files::UserLifecycleRule.find(id)
77
77
  ```
78
78
  Files::UserLifecycleRule.create(
79
79
  apply_to_all_workspaces: true,
80
- authentication_method: "password",
80
+ authentication_method: "all_non_sso",
81
81
  group_ids: [1,2,3],
82
82
  inactivity_days: 12,
83
83
  include_site_admins: true,
@@ -94,7 +94,7 @@ Files::UserLifecycleRule.create(
94
94
 
95
95
  * `action` (string): Action to take on inactive users (disable or delete)
96
96
  * `apply_to_all_workspaces` (boolean): If true, a default-workspace rule also applies to users in all workspaces.
97
- * `authentication_method` (string): User authentication method for which the rule will apply.
97
+ * `authentication_method` (string): User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
98
98
  * `group_ids` (array(int64)): Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
99
99
  * `inactivity_days` (int64): Number of days of inactivity before the rule applies
100
100
  * `include_site_admins` (boolean): If true, the rule will apply to site admins.
@@ -113,7 +113,7 @@ Files::UserLifecycleRule.create(
113
113
  ```
114
114
  Files::UserLifecycleRule.update(id,
115
115
  apply_to_all_workspaces: true,
116
- authentication_method: "password",
116
+ authentication_method: "all_non_sso",
117
117
  group_ids: [1,2,3],
118
118
  inactivity_days: 12,
119
119
  include_site_admins: true,
@@ -131,7 +131,7 @@ Files::UserLifecycleRule.update(id,
131
131
  * `id` (int64): Required - User Lifecycle Rule ID.
132
132
  * `action` (string): Action to take on inactive users (disable or delete)
133
133
  * `apply_to_all_workspaces` (boolean): If true, a default-workspace rule also applies to users in all workspaces.
134
- * `authentication_method` (string): User authentication method for which the rule will apply.
134
+ * `authentication_method` (string): User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
135
135
  * `group_ids` (array(int64)): Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
136
136
  * `inactivity_days` (int64): Number of days of inactivity before the rule applies
137
137
  * `include_site_admins` (boolean): If true, the rule will apply to site admins.
@@ -165,7 +165,7 @@ user_lifecycle_rule = Files::UserLifecycleRule.find(id)
165
165
 
166
166
  user_lifecycle_rule.update(
167
167
  apply_to_all_workspaces: true,
168
- authentication_method: "password",
168
+ authentication_method: "all_non_sso",
169
169
  group_ids: [1,2,3],
170
170
  inactivity_days: 12,
171
171
  include_site_admins: true,
@@ -183,7 +183,7 @@ user_lifecycle_rule.update(
183
183
  * `id` (int64): Required - User Lifecycle Rule ID.
184
184
  * `action` (string): Action to take on inactive users (disable or delete)
185
185
  * `apply_to_all_workspaces` (boolean): If true, a default-workspace rule also applies to users in all workspaces.
186
- * `authentication_method` (string): User authentication method for which the rule will apply.
186
+ * `authentication_method` (string): User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
187
187
  * `group_ids` (array(int64)): Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
188
188
  * `inactivity_days` (int64): Number of days of inactivity before the rule applies
189
189
  * `include_site_admins` (boolean): If true, the rule will apply to site admins.
@@ -18,7 +18,7 @@ module Files
18
18
  @attributes[:id] = value
19
19
  end
20
20
 
21
- # string - User authentication method for which the rule will apply.
21
+ # string - User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
22
22
  def authentication_method
23
23
  @attributes[:authentication_method]
24
24
  end
@@ -138,7 +138,7 @@ module Files
138
138
  # Parameters:
139
139
  # action - string - Action to take on inactive users (disable or delete)
140
140
  # apply_to_all_workspaces - boolean - If true, a default-workspace rule also applies to users in all workspaces.
141
- # authentication_method - string - User authentication method for which the rule will apply.
141
+ # authentication_method - string - User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
142
142
  # group_ids - array(int64) - Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
143
143
  # inactivity_days - int64 - Number of days of inactivity before the rule applies
144
144
  # include_site_admins - boolean - If true, the rule will apply to site admins.
@@ -232,7 +232,7 @@ module Files
232
232
  # Parameters:
233
233
  # action - string - Action to take on inactive users (disable or delete)
234
234
  # apply_to_all_workspaces - boolean - If true, a default-workspace rule also applies to users in all workspaces.
235
- # authentication_method - string - User authentication method for which the rule will apply.
235
+ # authentication_method - string - User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
236
236
  # group_ids - array(int64) - Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
237
237
  # inactivity_days - int64 - Number of days of inactivity before the rule applies
238
238
  # include_site_admins - boolean - If true, the rule will apply to site admins.
@@ -260,7 +260,7 @@ module Files
260
260
  # Parameters:
261
261
  # action - string - Action to take on inactive users (disable or delete)
262
262
  # apply_to_all_workspaces - boolean - If true, a default-workspace rule also applies to users in all workspaces.
263
- # authentication_method - string - User authentication method for which the rule will apply.
263
+ # authentication_method - string - User authentication method for which the rule will apply. Use `all_non_sso` to target every non-SSO authentication method with one rule.
264
264
  # group_ids - array(int64) - Array of Group IDs to which the rule applies. If empty or not set, the rule applies to all users.
265
265
  # inactivity_days - int64 - Number of days of inactivity before the rule applies
266
266
  # include_site_admins - boolean - If true, the rule will apply to site admins.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.602"
4
+ VERSION = "1.1.603"
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.602
4
+ version: 1.1.603
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-04-15 00:00:00.000000000 Z
11
+ date: 2026-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable