files.com 1.1.512 → 1.1.514

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: 67be8c7c6efe4faddb0a96023e6b97a718ec41b97b855ba2b38808e6bc276935
4
- data.tar.gz: 0a612a7546e38cb81c3fbe5e55399381babb7003ae250f67f82c064c0e4da624
3
+ metadata.gz: 6461ae4f4b0555af233579277fdeb0913dd785a4e0d01c564eea280717fd53b9
4
+ data.tar.gz: 37af1c72793600f15cb423f8d1748b9fb238e96795b3c0f70c6d1f75c789be2f
5
5
  SHA512:
6
- metadata.gz: d43c7d56235c18a8a913f501fbd310efb2f7ad9f6439aa7a9aaacfa3cfba40937b2db9ce2ca508a2dec1deac01395a08a62eaf1a9d7f7655c358213ae42200e7
7
- data.tar.gz: 9172362f72bd205848ca26cfe80e8d7469f3fa020e0d2ee22fe34f9ec829315778f03f2470c5b0b7d6cf5f6df7af65f84577e7747fe51db1b5f19fea25deb0fc
6
+ metadata.gz: 25fca11abf654ff89c34b98289f3fe718ca3d3832867083ad4403b192603eb1c40923f08b95a8a7d0082960db36360b54dfabcd87bbe0759c461e12810c79790
7
+ data.tar.gz: a086b4ea1b6945e8d19a6afcdec3597892ddbada5a23a25306348b11ca008a69e0251b293feca348bc5dd9780f24e9141dfc5d29f94f45d33f857b3f978e942f
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.512
1
+ 1.1.514
@@ -54,7 +54,7 @@ Files::AutomationRun.list(
54
54
  * `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
55
55
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
56
56
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
57
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
57
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
58
58
  * `automation_id` (int64): Required - ID of the associated Automation.
59
59
 
60
60
 
data/docs/bundle.md CHANGED
@@ -154,7 +154,7 @@ Files::Bundle.list(
154
154
  * `cursor` (string): Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
155
155
  * `per_page` (int64): Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
156
156
  * `sort_by` (object): If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
157
- * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
157
+ * `filter` (object): If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
158
158
  * `filter_gt` (object): If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
159
159
  * `filter_gteq` (object): If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
160
160
  * `filter_prefix` (object): If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
@@ -27,6 +27,8 @@
27
27
  "solar_winds_token_masked": "example",
28
28
  "new_relic_api_key_masked": "example",
29
29
  "datadog_api_key_masked": "example",
30
+ "action_send_enabled": true,
31
+ "action_entries_sent": 1,
30
32
  "sftp_action_send_enabled": true,
31
33
  "sftp_action_entries_sent": 1,
32
34
  "ftp_action_send_enabled": true,
@@ -82,6 +84,8 @@
82
84
  * `solar_winds_token_masked` (string): Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
83
85
  * `new_relic_api_key_masked` (string): Applicable only for destination type: new_relic. API key provided by New Relic.
84
86
  * `datadog_api_key_masked` (string): Applicable only for destination type: datadog. API key provided by Datadog.
87
+ * `action_send_enabled` (boolean): Whether or not sending is enabled for action logs.
88
+ * `action_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
85
89
  * `sftp_action_send_enabled` (boolean): Whether or not sending is enabled for sftp_action logs.
86
90
  * `sftp_action_entries_sent` (int64): Number of log entries sent for the lifetime of this destination.
87
91
  * `ftp_action_send_enabled` (boolean): Whether or not sending is enabled for ftp_action logs.
@@ -166,6 +170,7 @@ Files::SiemHttpDestination.create(
166
170
  azure_oauth_client_credentials_tenant_id: "example",
167
171
  azure_oauth_client_credentials_client_id: "example",
168
172
  qradar_username: "example",
173
+ action_send_enabled: true,
169
174
  sftp_action_send_enabled: true,
170
175
  ftp_action_send_enabled: true,
171
176
  web_dav_action_send_enabled: true,
@@ -202,6 +207,7 @@ Files::SiemHttpDestination.create(
202
207
  * `solar_winds_token` (string): Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
203
208
  * `new_relic_api_key` (string): Applicable only for destination type: new_relic. API key provided by New Relic.
204
209
  * `datadog_api_key` (string): Applicable only for destination type: datadog. API key provided by Datadog.
210
+ * `action_send_enabled` (boolean): Whether or not sending is enabled for action logs.
205
211
  * `sftp_action_send_enabled` (boolean): Whether or not sending is enabled for sftp_action logs.
206
212
  * `ftp_action_send_enabled` (boolean): Whether or not sending is enabled for ftp_action logs.
207
213
  * `web_dav_action_send_enabled` (boolean): Whether or not sending is enabled for web_dav_action logs.
@@ -236,6 +242,7 @@ Files::SiemHttpDestination.send_test_entry(
236
242
  azure_oauth_client_credentials_tenant_id: "example",
237
243
  azure_oauth_client_credentials_client_id: "example",
238
244
  qradar_username: "example",
245
+ action_send_enabled: true,
239
246
  sftp_action_send_enabled: true,
240
247
  ftp_action_send_enabled: true,
241
248
  web_dav_action_send_enabled: true,
@@ -273,6 +280,7 @@ Files::SiemHttpDestination.send_test_entry(
273
280
  * `solar_winds_token` (string): Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
274
281
  * `new_relic_api_key` (string): Applicable only for destination type: new_relic. API key provided by New Relic.
275
282
  * `datadog_api_key` (string): Applicable only for destination type: datadog. API key provided by Datadog.
283
+ * `action_send_enabled` (boolean): Whether or not sending is enabled for action logs.
276
284
  * `sftp_action_send_enabled` (boolean): Whether or not sending is enabled for sftp_action logs.
277
285
  * `ftp_action_send_enabled` (boolean): Whether or not sending is enabled for ftp_action logs.
278
286
  * `web_dav_action_send_enabled` (boolean): Whether or not sending is enabled for web_dav_action logs.
@@ -304,6 +312,7 @@ Files::SiemHttpDestination.update(id,
304
312
  azure_oauth_client_credentials_tenant_id: "example",
305
313
  azure_oauth_client_credentials_client_id: "example",
306
314
  qradar_username: "example",
315
+ action_send_enabled: true,
307
316
  sftp_action_send_enabled: true,
308
317
  ftp_action_send_enabled: true,
309
318
  web_dav_action_send_enabled: true,
@@ -341,6 +350,7 @@ Files::SiemHttpDestination.update(id,
341
350
  * `solar_winds_token` (string): Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
342
351
  * `new_relic_api_key` (string): Applicable only for destination type: new_relic. API key provided by New Relic.
343
352
  * `datadog_api_key` (string): Applicable only for destination type: datadog. API key provided by Datadog.
353
+ * `action_send_enabled` (boolean): Whether or not sending is enabled for action logs.
344
354
  * `sftp_action_send_enabled` (boolean): Whether or not sending is enabled for sftp_action logs.
345
355
  * `ftp_action_send_enabled` (boolean): Whether or not sending is enabled for ftp_action logs.
346
356
  * `web_dav_action_send_enabled` (boolean): Whether or not sending is enabled for web_dav_action logs.
@@ -389,6 +399,7 @@ siem_http_destination.update(
389
399
  azure_oauth_client_credentials_tenant_id: "example",
390
400
  azure_oauth_client_credentials_client_id: "example",
391
401
  qradar_username: "example",
402
+ action_send_enabled: true,
392
403
  sftp_action_send_enabled: true,
393
404
  ftp_action_send_enabled: true,
394
405
  web_dav_action_send_enabled: true,
@@ -426,6 +437,7 @@ siem_http_destination.update(
426
437
  * `solar_winds_token` (string): Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
427
438
  * `new_relic_api_key` (string): Applicable only for destination type: new_relic. API key provided by New Relic.
428
439
  * `datadog_api_key` (string): Applicable only for destination type: datadog. API key provided by Datadog.
440
+ * `action_send_enabled` (boolean): Whether or not sending is enabled for action logs.
429
441
  * `sftp_action_send_enabled` (boolean): Whether or not sending is enabled for sftp_action logs.
430
442
  * `ftp_action_send_enabled` (boolean): Whether or not sending is enabled for ftp_action logs.
431
443
  * `web_dav_action_send_enabled` (boolean): Whether or not sending is enabled for web_dav_action logs.
@@ -84,7 +84,7 @@ module Files
84
84
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
85
85
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
86
86
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `automation_id`, `created_at` or `status`.
87
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ workspace_id, status ]`, `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
87
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `status`, `workspace_id` or `automation_id`. Valid field combinations are `[ automation_id, status ]`, `[ workspace_id, automation_id ]` or `[ workspace_id, automation_id, status ]`.
88
88
  # automation_id (required) - int64 - ID of the associated Automation.
89
89
  def self.list(params = {}, options = {})
90
90
  raise InvalidParameterError.new("Bad parameter: user_id must be an Integer") if params[:user_id] and !params[:user_id].is_a?(Integer)
@@ -531,7 +531,7 @@ module Files
531
531
  # cursor - string - Used for pagination. When a list request has more records available, cursors are provided in the response headers `X-Files-Cursor-Next` and `X-Files-Cursor-Prev`. Send one of those cursor value here to resume an existing list from the next available record. Note: many of our SDKs have iterator methods that will automatically handle cursor-based pagination.
532
532
  # per_page - int64 - Number of records to show per page. (Max: 10,000, 1,000 or less is recommended).
533
533
  # sort_by - object - If set, sort records by the specified field in either `asc` or `desc` direction. Valid fields are `expires_at`.
534
- # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, expires_at ]`.
534
+ # filter - object - If set, return records where the specified field is equal to the supplied value. Valid fields are `created_at`, `expires_at`, `code` or `user_id`. Valid field combinations are `[ user_id, created_at ]` and `[ user_id, expires_at ]`.
535
535
  # filter_gt - object - If set, return records where the specified field is greater than the supplied value. Valid fields are `created_at` and `expires_at`.
536
536
  # filter_gteq - object - If set, return records where the specified field is greater than or equal the supplied value. Valid fields are `created_at` and `expires_at`.
537
537
  # filter_prefix - object - If set, return records where the specified field is prefixed by the supplied value. Valid fields are `code`.
@@ -198,6 +198,24 @@ module Files
198
198
  @attributes[:datadog_api_key_masked] = value
199
199
  end
200
200
 
201
+ # boolean - Whether or not sending is enabled for action logs.
202
+ def action_send_enabled
203
+ @attributes[:action_send_enabled]
204
+ end
205
+
206
+ def action_send_enabled=(value)
207
+ @attributes[:action_send_enabled] = value
208
+ end
209
+
210
+ # int64 - Number of log entries sent for the lifetime of this destination.
211
+ def action_entries_sent
212
+ @attributes[:action_entries_sent]
213
+ end
214
+
215
+ def action_entries_sent=(value)
216
+ @attributes[:action_entries_sent] = value
217
+ end
218
+
201
219
  # boolean - Whether or not sending is enabled for sftp_action logs.
202
220
  def sftp_action_send_enabled
203
221
  @attributes[:sftp_action_send_enabled]
@@ -550,6 +568,7 @@ module Files
550
568
  # solar_winds_token - string - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
551
569
  # new_relic_api_key - string - Applicable only for destination type: new_relic. API key provided by New Relic.
552
570
  # datadog_api_key - string - Applicable only for destination type: datadog. API key provided by Datadog.
571
+ # action_send_enabled - boolean - Whether or not sending is enabled for action logs.
553
572
  # sftp_action_send_enabled - boolean - Whether or not sending is enabled for sftp_action logs.
554
573
  # ftp_action_send_enabled - boolean - Whether or not sending is enabled for ftp_action logs.
555
574
  # web_dav_action_send_enabled - boolean - Whether or not sending is enabled for web_dav_action logs.
@@ -668,6 +687,7 @@ module Files
668
687
  # solar_winds_token - string - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
669
688
  # new_relic_api_key - string - Applicable only for destination type: new_relic. API key provided by New Relic.
670
689
  # datadog_api_key - string - Applicable only for destination type: datadog. API key provided by Datadog.
690
+ # action_send_enabled - boolean - Whether or not sending is enabled for action logs.
671
691
  # sftp_action_send_enabled - boolean - Whether or not sending is enabled for sftp_action logs.
672
692
  # ftp_action_send_enabled - boolean - Whether or not sending is enabled for ftp_action logs.
673
693
  # web_dav_action_send_enabled - boolean - Whether or not sending is enabled for web_dav_action logs.
@@ -729,6 +749,7 @@ module Files
729
749
  # solar_winds_token - string - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
730
750
  # new_relic_api_key - string - Applicable only for destination type: new_relic. API key provided by New Relic.
731
751
  # datadog_api_key - string - Applicable only for destination type: datadog. API key provided by Datadog.
752
+ # action_send_enabled - boolean - Whether or not sending is enabled for action logs.
732
753
  # sftp_action_send_enabled - boolean - Whether or not sending is enabled for sftp_action logs.
733
754
  # ftp_action_send_enabled - boolean - Whether or not sending is enabled for ftp_action logs.
734
755
  # web_dav_action_send_enabled - boolean - Whether or not sending is enabled for web_dav_action logs.
@@ -785,6 +806,7 @@ module Files
785
806
  # solar_winds_token - string - Applicable only for destination type: solar_winds. Authentication token provided by Solar Winds.
786
807
  # new_relic_api_key - string - Applicable only for destination type: new_relic. API key provided by New Relic.
787
808
  # datadog_api_key - string - Applicable only for destination type: datadog. API key provided by Datadog.
809
+ # action_send_enabled - boolean - Whether or not sending is enabled for action logs.
788
810
  # sftp_action_send_enabled - boolean - Whether or not sending is enabled for sftp_action logs.
789
811
  # ftp_action_send_enabled - boolean - Whether or not sending is enabled for ftp_action logs.
790
812
  # web_dav_action_send_enabled - boolean - Whether or not sending is enabled for web_dav_action logs.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.512"
4
+ VERSION = "1.1.514"
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.512
4
+ version: 1.1.514
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-01-21 00:00:00.000000000 Z
11
+ date: 2026-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable