files.com 1.1.246 → 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/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/version.rb +1 -1
- metadata +2 -2
data/docs/settings_change.md
CHANGED
@@ -4,25 +4,25 @@
|
|
4
4
|
|
5
5
|
```
|
6
6
|
{
|
7
|
+
"api_key_id": 1,
|
7
8
|
"changes": [
|
8
9
|
"example"
|
9
10
|
],
|
10
11
|
"created_at": "2000-01-01T01:00:00Z",
|
11
12
|
"user_id": 1,
|
12
|
-
"api_key_id": 1,
|
13
13
|
"user_is_files_support": true,
|
14
14
|
"user_is_from_parent_site": true,
|
15
15
|
"username": "some_user"
|
16
16
|
}
|
17
17
|
```
|
18
18
|
|
19
|
+
* `api_key_id` (int64): The API key id responsible for this change.
|
19
20
|
* `changes` (array(string)): Markdown-formatted change messages.
|
20
|
-
* `created_at` (date-time): The time this change was made
|
21
|
-
* `user_id` (int64): The user id responsible for this change
|
22
|
-
* `api_key_id` (int64): The API key id responsible for this change
|
21
|
+
* `created_at` (date-time): The time this change was made.
|
22
|
+
* `user_id` (int64): The user id responsible for this change.
|
23
23
|
* `user_is_files_support` (boolean): true if this change was performed by Files.com support.
|
24
24
|
* `user_is_from_parent_site` (boolean): true if this change was performed by a user on a parent site.
|
25
|
-
* `username` (string): The username of the user responsible for this change
|
25
|
+
* `username` (string): The username of the user responsible for this change.
|
26
26
|
|
27
27
|
|
28
28
|
---
|
@@ -44,6 +44,8 @@
|
|
44
44
|
"email_entries_sent": 1,
|
45
45
|
"exavault_api_request_send_enabled": true,
|
46
46
|
"exavault_api_request_entries_sent": 1,
|
47
|
+
"settings_change_send_enabled": true,
|
48
|
+
"settings_change_entries_sent": 1,
|
47
49
|
"last_http_call_target_type": "destination_url",
|
48
50
|
"last_http_call_success": true,
|
49
51
|
"last_http_call_response_code": 1,
|
@@ -94,6 +96,8 @@
|
|
94
96
|
* `email_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
|
95
97
|
* `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
|
96
98
|
* `exavault_api_request_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
|
99
|
+
* `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
|
100
|
+
* `settings_change_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
|
97
101
|
* `last_http_call_target_type` (string): Type of URL that was last called. Can be `destination_url` or `azure_oauth_client_credentials_url`
|
98
102
|
* `last_http_call_success` (boolean): Was the last HTTP call made successful?
|
99
103
|
* `last_http_call_response_code` (int64): Last HTTP Call Response Code
|
@@ -163,6 +167,7 @@ Files::SiemHttpDestination.create(
|
|
163
167
|
public_hosting_request_send_enabled: true,
|
164
168
|
email_send_enabled: true,
|
165
169
|
exavault_api_request_send_enabled: true,
|
170
|
+
settings_change_send_enabled: true,
|
166
171
|
destination_type: "example",
|
167
172
|
destination_url: "example"
|
168
173
|
)
|
@@ -195,6 +200,7 @@ Files::SiemHttpDestination.create(
|
|
195
200
|
* `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
|
196
201
|
* `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
|
197
202
|
* `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
|
203
|
+
* `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
|
198
204
|
* `destination_type` (string): Required - Destination Type
|
199
205
|
* `destination_url` (string): Required - Destination Url
|
200
206
|
|
@@ -226,7 +232,8 @@ Files::SiemHttpDestination.send_test_entry(
|
|
226
232
|
api_request_send_enabled: true,
|
227
233
|
public_hosting_request_send_enabled: true,
|
228
234
|
email_send_enabled: true,
|
229
|
-
exavault_api_request_send_enabled: true
|
235
|
+
exavault_api_request_send_enabled: true,
|
236
|
+
settings_change_send_enabled: true
|
230
237
|
)
|
231
238
|
```
|
232
239
|
|
@@ -260,6 +267,7 @@ Files::SiemHttpDestination.send_test_entry(
|
|
260
267
|
* `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
|
261
268
|
* `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
|
262
269
|
* `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
|
270
|
+
* `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
|
263
271
|
|
264
272
|
|
265
273
|
---
|
@@ -287,6 +295,7 @@ Files::SiemHttpDestination.update(id,
|
|
287
295
|
public_hosting_request_send_enabled: true,
|
288
296
|
email_send_enabled: true,
|
289
297
|
exavault_api_request_send_enabled: true,
|
298
|
+
settings_change_send_enabled: true,
|
290
299
|
destination_type: "example",
|
291
300
|
destination_url: "example"
|
292
301
|
)
|
@@ -320,6 +329,7 @@ Files::SiemHttpDestination.update(id,
|
|
320
329
|
* `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
|
321
330
|
* `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
|
322
331
|
* `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
|
332
|
+
* `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
|
323
333
|
* `destination_type` (string): Destination Type
|
324
334
|
* `destination_url` (string): Destination Url
|
325
335
|
|
@@ -364,6 +374,7 @@ siem_http_destination.update(
|
|
364
374
|
public_hosting_request_send_enabled: true,
|
365
375
|
email_send_enabled: true,
|
366
376
|
exavault_api_request_send_enabled: true,
|
377
|
+
settings_change_send_enabled: true,
|
367
378
|
destination_type: "example",
|
368
379
|
destination_url: "example"
|
369
380
|
)
|
@@ -397,6 +408,7 @@ siem_http_destination.update(
|
|
397
408
|
* `public_hosting_request_send_enabled` (boolean): Whether or not sending is enabled for public_hosting_request logs.
|
398
409
|
* `email_send_enabled` (boolean): Whether or not sending is enabled for email logs.
|
399
410
|
* `exavault_api_request_send_enabled` (boolean): Whether or not sending is enabled for exavault_api_request logs.
|
411
|
+
* `settings_change_send_enabled` (boolean): Whether or not sending is enabled for settings_change logs.
|
400
412
|
* `destination_type` (string): Destination Type
|
401
413
|
* `destination_url` (string): Destination Url
|
402
414
|
|