files.com 1.0.224 → 1.0.228
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/api_key.md +6 -6
- data/docs/app.md +7 -7
- data/docs/automation.md +6 -6
- data/docs/automation_run.md +6 -6
- data/docs/bandwidth_snapshot.md +6 -6
- data/docs/behavior.md +19 -14
- data/docs/bundle.md +24 -8
- data/docs/bundle_download.md +6 -6
- data/docs/bundle_recipient.md +6 -6
- data/docs/bundle_registration.md +1 -1
- data/docs/external_event.md +6 -6
- data/docs/file.md +1 -2
- data/docs/folder.md +1 -2
- data/docs/group.md +6 -6
- data/docs/history.md +6 -6
- data/docs/inbox_recipient.md +6 -6
- data/docs/inbox_registration.md +1 -1
- data/docs/inbox_upload.md +6 -6
- data/docs/notification.md +6 -6
- data/docs/permission.md +6 -6
- data/docs/preview.md +1 -3
- data/docs/settings_change.md +10 -6
- data/docs/usage_daily_snapshot.md +6 -6
- data/docs/user.md +6 -6
- data/lib/files.com/models/api_key.rb +6 -6
- data/lib/files.com/models/app.rb +7 -7
- data/lib/files.com/models/automation.rb +6 -6
- data/lib/files.com/models/automation_run.rb +6 -6
- data/lib/files.com/models/bandwidth_snapshot.rb +6 -6
- data/lib/files.com/models/behavior.rb +25 -13
- data/lib/files.com/models/bundle.rb +47 -6
- data/lib/files.com/models/bundle_download.rb +6 -6
- data/lib/files.com/models/bundle_recipient.rb +6 -6
- data/lib/files.com/models/bundle_registration.rb +1 -1
- data/lib/files.com/models/external_event.rb +6 -6
- data/lib/files.com/models/group.rb +6 -6
- data/lib/files.com/models/history.rb +6 -6
- data/lib/files.com/models/inbox_recipient.rb +6 -6
- data/lib/files.com/models/inbox_registration.rb +1 -1
- data/lib/files.com/models/inbox_upload.rb +6 -6
- data/lib/files.com/models/notification.rb +6 -6
- data/lib/files.com/models/permission.rb +6 -6
- data/lib/files.com/models/preview.rb +0 -5
- data/lib/files.com/models/settings_change.rb +11 -6
- data/lib/files.com/models/usage_daily_snapshot.rb +6 -6
- data/lib/files.com/models/user.rb +6 -6
- metadata +2 -2
@@ -14,6 +14,11 @@ module Files
|
|
14
14
|
@attributes[:change_details]
|
15
15
|
end
|
16
16
|
|
17
|
+
# string - Markdown-formatted change messages.
|
18
|
+
def changes
|
19
|
+
@attributes[:changes]
|
20
|
+
end
|
21
|
+
|
17
22
|
# date-time - The time this change was made
|
18
23
|
def created_at
|
19
24
|
@attributes[:created_at]
|
@@ -28,12 +33,12 @@ module Files
|
|
28
33
|
# 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 the X-Files-Cursor-Next header.
|
29
34
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
30
35
|
# sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `api_key_id`, `created_at` or `user_id`.
|
31
|
-
# filter - object - If set, return records where the
|
32
|
-
# filter_gt - object - If set, return records where the
|
33
|
-
# filter_gteq - object - If set, return records where the
|
34
|
-
# filter_like - object - If set, return records where the
|
35
|
-
# filter_lt - object - If set, return records where the
|
36
|
-
# filter_lteq - object - If set, return records where the
|
36
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `api_key_id` and `user_id`.
|
37
|
+
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `api_key_id` and `user_id`.
|
38
|
+
# filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `api_key_id` and `user_id`.
|
39
|
+
# filter_like - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `api_key_id` and `user_id`.
|
40
|
+
# filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `api_key_id` and `user_id`.
|
41
|
+
# filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `api_key_id` and `user_id`.
|
37
42
|
def self.list(params = {}, options = {})
|
38
43
|
raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
|
39
44
|
raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
|
@@ -33,12 +33,12 @@ module Files
|
|
33
33
|
# 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 the X-Files-Cursor-Next header.
|
34
34
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
35
35
|
# sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `date` and `usage_snapshot_id`.
|
36
|
-
# filter - object - If set, return records where the
|
37
|
-
# filter_gt - object - If set, return records where the
|
38
|
-
# filter_gteq - object - If set, return records where the
|
39
|
-
# filter_like - object - If set, return records where the
|
40
|
-
# filter_lt - object - If set, return records where the
|
41
|
-
# filter_lteq - object - If set, return records where the
|
36
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `date` and `usage_snapshot_id`.
|
37
|
+
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `date` and `usage_snapshot_id`.
|
38
|
+
# filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `date` and `usage_snapshot_id`.
|
39
|
+
# filter_like - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `date` and `usage_snapshot_id`.
|
40
|
+
# filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `date` and `usage_snapshot_id`.
|
41
|
+
# filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `date` and `usage_snapshot_id`.
|
42
42
|
def self.list(params = {}, options = {})
|
43
43
|
raise InvalidParameterError.new("Bad parameter: cursor must be an String") if params.dig(:cursor) and !params.dig(:cursor).is_a?(String)
|
44
44
|
raise InvalidParameterError.new("Bad parameter: per_page must be an Integer") if params.dig(:per_page) and !params.dig(:per_page).is_a?(Integer)
|
@@ -667,12 +667,12 @@ module Files
|
|
667
667
|
# 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 the X-Files-Cursor-Next header.
|
668
668
|
# per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
|
669
669
|
# sort_by - object - If set, sort records by the specified field in either 'asc' or 'desc' direction (e.g. sort_by[last_login_at]=desc). Valid fields are `authenticate_until`, `email`, `last_desktop_login_at`, `last_login_at`, `username`, `company`, `name`, `site_admin`, `receive_admin_alerts`, `password_validity_days`, `ssl_required` or `not_site_admin`.
|
670
|
-
# filter - object - If set, return records where the
|
671
|
-
# filter_gt - object - If set, return records where the
|
672
|
-
# filter_gteq - object - If set, return records where the
|
673
|
-
# filter_like - object - If set, return records where the
|
674
|
-
# filter_lt - object - If set, return records where the
|
675
|
-
# filter_lteq - object - If set, return records where the
|
670
|
+
# filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`.
|
671
|
+
# filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`.
|
672
|
+
# filter_gteq - object - If set, return records where the specified field is greater than or equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`.
|
673
|
+
# filter_like - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`.
|
674
|
+
# filter_lt - object - If set, return records where the specified field is less than the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`.
|
675
|
+
# filter_lteq - object - If set, return records where the specified field is less than or equal to the supplied value. Valid fields are `username`, `email`, `company`, `site_admin`, `password_validity_days`, `ssl_required`, `last_login_at`, `authenticate_until` or `not_site_admin`.
|
676
676
|
# ids - string - comma-separated list of User IDs
|
677
677
|
# q[username] - string - List users matching username.
|
678
678
|
# q[email] - string - List users matching email.
|
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.
|
4
|
+
version: 1.0.228
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- files.com
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-11-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|