files.com 1.1.245 → 1.1.247
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/remote_server.md +338 -318
- data/docs/settings_change.md +5 -5
- data/docs/siem_http_destination.md +13 -1
- data/docs/site.md +4 -0
- data/lib/files.com/models/remote_server.rb +451 -406
- data/lib/files.com/models/settings_change.rb +8 -8
- data/lib/files.com/models/siem_http_destination.rb +22 -0
- data/lib/files.com/models/site.rb +6 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
@@ -9,26 +9,26 @@ module Files
|
|
9
9
|
@options = options || {}
|
10
10
|
end
|
11
11
|
|
12
|
+
# int64 - The API key id responsible for this change.
|
13
|
+
def api_key_id
|
14
|
+
@attributes[:api_key_id]
|
15
|
+
end
|
16
|
+
|
12
17
|
# array(string) - Markdown-formatted change messages.
|
13
18
|
def changes
|
14
19
|
@attributes[:changes]
|
15
20
|
end
|
16
21
|
|
17
|
-
# date-time - The time this change was made
|
22
|
+
# date-time - The time this change was made.
|
18
23
|
def created_at
|
19
24
|
@attributes[:created_at]
|
20
25
|
end
|
21
26
|
|
22
|
-
# int64 - The user id responsible for this change
|
27
|
+
# int64 - The user id responsible for this change.
|
23
28
|
def user_id
|
24
29
|
@attributes[:user_id]
|
25
30
|
end
|
26
31
|
|
27
|
-
# int64 - The API key id responsible for this change
|
28
|
-
def api_key_id
|
29
|
-
@attributes[:api_key_id]
|
30
|
-
end
|
31
|
-
|
32
32
|
# boolean - true if this change was performed by Files.com support.
|
33
33
|
def user_is_files_support
|
34
34
|
@attributes[:user_is_files_support]
|
@@ -39,7 +39,7 @@ module Files
|
|
39
39
|
@attributes[:user_is_from_parent_site]
|
40
40
|
end
|
41
41
|
|
42
|
-
# string - The username of the user responsible for this change
|
42
|
+
# string - The username of the user responsible for this change.
|
43
43
|
def username
|
44
44
|
@attributes[:username]
|
45
45
|
end
|
@@ -351,6 +351,24 @@ module Files
|
|
351
351
|
@attributes[:exavault_api_request_entries_sent] = value
|
352
352
|
end
|
353
353
|
|
354
|
+
# boolean - Whether or not sending is enabled for settings_change logs.
|
355
|
+
def settings_change_send_enabled
|
356
|
+
@attributes[:settings_change_send_enabled]
|
357
|
+
end
|
358
|
+
|
359
|
+
def settings_change_send_enabled=(value)
|
360
|
+
@attributes[:settings_change_send_enabled] = value
|
361
|
+
end
|
362
|
+
|
363
|
+
# int64 - Number of log entries sent for the lifetime of this destination.
|
364
|
+
def settings_change_entries_sent
|
365
|
+
@attributes[:settings_change_entries_sent]
|
366
|
+
end
|
367
|
+
|
368
|
+
def settings_change_entries_sent=(value)
|
369
|
+
@attributes[:settings_change_entries_sent] = value
|
370
|
+
end
|
371
|
+
|
354
372
|
# string - Type of URL that was last called. Can be `destination_url` or `azure_oauth_client_credentials_url`
|
355
373
|
def last_http_call_target_type
|
356
374
|
@attributes[:last_http_call_target_type]
|
@@ -512,6 +530,7 @@ module Files
|
|
512
530
|
# public_hosting_request_send_enabled - boolean - Whether or not sending is enabled for public_hosting_request logs.
|
513
531
|
# email_send_enabled - boolean - Whether or not sending is enabled for email logs.
|
514
532
|
# exavault_api_request_send_enabled - boolean - Whether or not sending is enabled for exavault_api_request logs.
|
533
|
+
# settings_change_send_enabled - boolean - Whether or not sending is enabled for settings_change logs.
|
515
534
|
# destination_type - string - Destination Type
|
516
535
|
# destination_url - string - Destination Url
|
517
536
|
def update(params = {})
|
@@ -623,6 +642,7 @@ module Files
|
|
623
642
|
# public_hosting_request_send_enabled - boolean - Whether or not sending is enabled for public_hosting_request logs.
|
624
643
|
# email_send_enabled - boolean - Whether or not sending is enabled for email logs.
|
625
644
|
# exavault_api_request_send_enabled - boolean - Whether or not sending is enabled for exavault_api_request logs.
|
645
|
+
# settings_change_send_enabled - boolean - Whether or not sending is enabled for settings_change logs.
|
626
646
|
# destination_type (required) - string - Destination Type
|
627
647
|
# destination_url (required) - string - Destination Url
|
628
648
|
def self.create(params = {}, options = {})
|
@@ -678,6 +698,7 @@ module Files
|
|
678
698
|
# public_hosting_request_send_enabled - boolean - Whether or not sending is enabled for public_hosting_request logs.
|
679
699
|
# email_send_enabled - boolean - Whether or not sending is enabled for email logs.
|
680
700
|
# exavault_api_request_send_enabled - boolean - Whether or not sending is enabled for exavault_api_request logs.
|
701
|
+
# settings_change_send_enabled - boolean - Whether or not sending is enabled for settings_change logs.
|
681
702
|
def self.send_test_entry(params = {}, options = {})
|
682
703
|
raise InvalidParameterError.new("Bad parameter: siem_http_destination_id must be an Integer") if params[:siem_http_destination_id] and !params[:siem_http_destination_id].is_a?(Integer)
|
683
704
|
raise InvalidParameterError.new("Bad parameter: destination_type must be an String") if params[:destination_type] and !params[:destination_type].is_a?(String)
|
@@ -727,6 +748,7 @@ module Files
|
|
727
748
|
# public_hosting_request_send_enabled - boolean - Whether or not sending is enabled for public_hosting_request logs.
|
728
749
|
# email_send_enabled - boolean - Whether or not sending is enabled for email logs.
|
729
750
|
# exavault_api_request_send_enabled - boolean - Whether or not sending is enabled for exavault_api_request logs.
|
751
|
+
# settings_change_send_enabled - boolean - Whether or not sending is enabled for settings_change logs.
|
730
752
|
# destination_type - string - Destination Type
|
731
753
|
# destination_url - string - Destination Url
|
732
754
|
def self.update(id, params = {}, options = {})
|
@@ -624,6 +624,11 @@ module Files
|
|
624
624
|
@attributes[:require_2fa_stop_time]
|
625
625
|
end
|
626
626
|
|
627
|
+
# boolean - Auto-removes bundles for disabled/deleted users and enforces bundle expiry within user access period.
|
628
|
+
def revoke_bundle_access_on_disable_or_delete
|
629
|
+
@attributes[:revoke_bundle_access_on_disable_or_delete]
|
630
|
+
end
|
631
|
+
|
627
632
|
# string - What type of user is required to use two-factor authentication (when require_2fa is set to `true` for this site)?
|
628
633
|
def require_2fa_user_type
|
629
634
|
@attributes[:require_2fa_user_type]
|
@@ -970,6 +975,7 @@ module Files
|
|
970
975
|
# sftp_host_key_type - string - Sftp Host Key Type
|
971
976
|
# active_sftp_host_key_id - int64 - Id of the currently selected custom SFTP Host Key
|
972
977
|
# protocol_access_groups_only - boolean - If true, protocol access permissions on users will be ignored, and only protocol access permissions set on Groups will be honored. Make sure that your current user is a member of a group with API permission when changing this value to avoid locking yourself out of your site.
|
978
|
+
# revoke_bundle_access_on_disable_or_delete - boolean - Auto-removes bundles for disabled/deleted users and enforces bundle expiry within user access period.
|
973
979
|
# bundle_watermark_value - object - Preview watermark settings applied to all bundle items. Uses the same keys as Behavior.value
|
974
980
|
# group_admins_can_set_user_password - boolean - Allow group admins set password authentication method
|
975
981
|
# bundle_recipient_blacklist_free_email_domains - boolean - Disallow free email domains for Bundle/Inbox recipients?
|
data/lib/files.com/version.rb
CHANGED
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.
|
4
|
+
version: 1.1.247
|
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-
|
11
|
+
date: 2025-05-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|