files.com 1.1.142 → 1.1.144

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c9c439963bc3f757605322acd4e3a3c87bdc161fc9cb1304b3b0434327adcb09
4
- data.tar.gz: e24ad0310e20f6b8464efd63403a81bcb3c6795698c3ae6c1be700cd6174b054
3
+ metadata.gz: 6ddbe4f78b571fccaf7817bc5ce2dd9c549978afcc386af9c9f4f7c10f84354c
4
+ data.tar.gz: 195136ba31dc5657c82aeb59820efa66965475ac05dcfbbd4d1701504ca6e3e4
5
5
  SHA512:
6
- metadata.gz: 9d6ea89af7f64985907a0fa58290d1a1a1c226a3937593a99a671281962d3fd9be35740be51952335ee30ccafa4a012d76f9fc04f9788d5ff04d010d309652b7
7
- data.tar.gz: 5f5fdbd0bfa4bf7bec1ea23e7185273d2dbf03062ee932b76c6539f9f481383b69fe728930204bdcae58ce4da8ab021dca2b418030ec7d2e2218f52e8ecc6c5f
6
+ metadata.gz: d89e38932b20f2ecd7c90e794a8edb91f24f0dda3ecf96812071c775bf655a08526fee8585d6a31d6ed5fe8d66e10ec33abf0906b3ff379b5ea6455943879cb1
7
+ data.tar.gz: 854511564aed4a7553a862233c06ef1a7719fd8d382b8a2b55d5a3780813113f54818bb6763a130f267aada94d02b95e0879a6e3b5a351aa592942dd68b22634
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.142
1
+ 1.1.144
@@ -8,6 +8,7 @@
8
8
  "remote_ip": "example",
9
9
  "server_ip": "example",
10
10
  "username": "example",
11
+ "ssh_client_identification": "example",
11
12
  "session_uuid": "example",
12
13
  "seq_id": 1,
13
14
  "auth_method": "example",
@@ -31,6 +32,7 @@
31
32
  * `remote_ip` (string): IP Address of SFTP Client
32
33
  * `server_ip` (string): IP Address of SFTP Server
33
34
  * `username` (string): Username
35
+ * `ssh_client_identification` (string): Name of the SFTP Client provided at initial connection
34
36
  * `session_uuid` (string): Unique ID of the Session
35
37
  * `seq_id` (int64): SFTP Sequence ID
36
38
  * `auth_method` (string): Authentication Method
@@ -113,7 +113,7 @@
113
113
 
114
114
  ---
115
115
 
116
- ## List Siem Http Destinations
116
+ ## List SIEM HTTP Destinations
117
117
 
118
118
  ```
119
119
  Files::SiemHttpDestination.list
@@ -127,7 +127,7 @@ Files::SiemHttpDestination.list
127
127
 
128
128
  ---
129
129
 
130
- ## Show Siem Http Destination
130
+ ## Show SIEM HTTP Destination
131
131
 
132
132
  ```
133
133
  Files::SiemHttpDestination.find(id)
@@ -140,7 +140,7 @@ Files::SiemHttpDestination.find(id)
140
140
 
141
141
  ---
142
142
 
143
- ## Create Siem Http Destination
143
+ ## Create SIEM HTTP Destination
144
144
 
145
145
  ```
146
146
  Files::SiemHttpDestination.create(
@@ -201,7 +201,7 @@ Files::SiemHttpDestination.create(
201
201
 
202
202
  ---
203
203
 
204
- ## send_test_entry Siem Http Destination
204
+ ## send_test_entry SIEM HTTP Destination
205
205
 
206
206
  ```
207
207
  Files::SiemHttpDestination.send_test_entry(
@@ -264,7 +264,7 @@ Files::SiemHttpDestination.send_test_entry(
264
264
 
265
265
  ---
266
266
 
267
- ## Update Siem Http Destination
267
+ ## Update SIEM HTTP Destination
268
268
 
269
269
  ```
270
270
  Files::SiemHttpDestination.update(id,
@@ -326,7 +326,7 @@ Files::SiemHttpDestination.update(id,
326
326
 
327
327
  ---
328
328
 
329
- ## Delete Siem Http Destination
329
+ ## Delete SIEM HTTP Destination
330
330
 
331
331
  ```
332
332
  Files::SiemHttpDestination.delete(id)
@@ -339,7 +339,7 @@ Files::SiemHttpDestination.delete(id)
339
339
 
340
340
  ---
341
341
 
342
- ## Update Siem Http Destination
342
+ ## Update SIEM HTTP Destination
343
343
 
344
344
  ```
345
345
  siem_http_destination = Files::SiemHttpDestination.find(id)
@@ -403,7 +403,7 @@ siem_http_destination.update(
403
403
 
404
404
  ---
405
405
 
406
- ## Delete Siem Http Destination
406
+ ## Delete SIEM HTTP Destination
407
407
 
408
408
  ```
409
409
  siem_http_destination = Files::SiemHttpDestination.find(id)
@@ -29,6 +29,11 @@ module Files
29
29
  @attributes[:username]
30
30
  end
31
31
 
32
+ # string - Name of the SFTP Client provided at initial connection
33
+ def ssh_client_identification
34
+ @attributes[:ssh_client_identification]
35
+ end
36
+
32
37
  # string - Unique ID of the Session
33
38
  def session_uuid
34
39
  @attributes[:session_uuid]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.142"
4
+ VERSION = "1.1.144"
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.142
4
+ version: 1.1.144
5
5
  platform: ruby
6
6
  authors:
7
7
  - files.com
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-09-30 00:00:00.000000000 Z
11
+ date: 2024-10-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable