files.com 1.1.117 → 1.1.119

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: d2df8436470fbc39588b6ee6962f075fb16a4d3baabca1022ad05df423f05817
4
- data.tar.gz: fcc282b8b5b60162a16c7094a6687251ca94b5f60dbf457e64728279fdaf2ba0
3
+ metadata.gz: ac7f390f7960a92bd1228a5c7ccc994530f0dc454d6d36e5703e717ef9253070
4
+ data.tar.gz: ac94a5ac3bac51ac7e5b2951b2cae55b61c2828cfa0d2c295283dc510fd1633b
5
5
  SHA512:
6
- metadata.gz: 5efcd48bbc5e7fd1970173d712faa2809563824efdcfe5721e8d133d7f20cfdef61ce958dd1bc4f8c683e26ca64e4085d0ccad02bbe481147075325b075b5aa2
7
- data.tar.gz: 7e5b42f97d1c14a400d3b962c2605d079f362cd3b899ab6da6e447865477221e4b2ccf5c2008c891f8202936c13ecf25649464198d36d4ec7060d7aa3147537b
6
+ metadata.gz: c46a5914301e7fd89b640f2a46bcd70541bbb38db17e468c0295653c9bb6c5e43ccf75718305e8fb317d3c8b8a13ae4f37bb3a7d138c65480a478ac46c2e966b
7
+ data.tar.gz: 07472d9a8460bf66d03d5826a2a00bc5267e3bfb1711fef22f94a32cf50169a01478aacaae04110d4e2b7f8f5a24a3e57267ce35feea212a60f3be88c3ca0ed5
data/README.md CHANGED
@@ -182,42 +182,6 @@ Maximum number of retries. The default value is 3.
182
182
  Files.max_network_retries = 5
183
183
  ```
184
184
 
185
- ### Logging
186
-
187
- The Files.com SDK is compatible with the standard log4j logging scheme.
188
-
189
- Add `com.files` logger to your `Loggers` root in the `log4j2.xml` file.
190
-
191
- ```xml title="log4j2.xml"
192
- <Loggers>
193
- <!-- set preferred level -->
194
- <Logger name="com.files" level="TRACE" />
195
- <!-- to enable network request -->
196
- <Logger name="okhttp3.logging.wire" level="INFO"/>
197
- </Loggers>
198
- ```
199
-
200
- Create a `resources/log4j2.xml` file.
201
-
202
- ```xml title="resources/log4j2.xml"
203
- <?xml version="1.0" encoding="UTF-8"?>
204
- <Configuration>
205
- <Appenders>
206
- <Console name="Console" target="SYSTEM_OUT">
207
- <PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
208
- </Console>
209
- </Appenders>
210
- <Loggers>
211
- <!-- set preferred level -->
212
- <Logger name="com.files" level="TRACE"/>
213
- <!-- to enable network request -->
214
- <Logger name="okhttp3.logging.wire" level="INFO"/>
215
- </Loggers>
216
- </Configuration>
217
- ```
218
-
219
- You can read more about [log4j2 configuration](https://logging.apache.org/log4j/2.x/manual/configuration.html).
220
-
221
185
  ## Errors
222
186
 
223
187
  The Files.com Ruby SDK will return errors by raising exceptions. There are many exception classes defined in the Files SDK that correspond
data/_VERSION CHANGED
@@ -1 +1 @@
1
- 1.1.117
1
+ 1.1.119
data/docs/app.md CHANGED
@@ -27,6 +27,7 @@
27
27
  "sdk_installation_instructions_link": "example",
28
28
  "short_description": "example",
29
29
  "sso_strategy_type": "example",
30
+ "siem_type": "example",
30
31
  "tutorial_youtube_url": "example"
31
32
  }
32
33
  ```
@@ -50,6 +51,7 @@
50
51
  * `sdk_installation_instructions_link` (string): Link to SDK installation instructions
51
52
  * `short_description` (string): Short description of the App
52
53
  * `sso_strategy_type` (string): Associated SSO Strategy type, if any
54
+ * `siem_type` (string): Associated SIEM type, if any
53
55
  * `tutorial_youtube_url` (string): Tutorial video page
54
56
 
55
57
 
@@ -104,6 +104,11 @@ module Files
104
104
  @attributes[:sso_strategy_type]
105
105
  end
106
106
 
107
+ # string - Associated SIEM type, if any
108
+ def siem_type
109
+ @attributes[:siem_type]
110
+ end
111
+
107
112
  # string - Tutorial video page
108
113
  def tutorial_youtube_url
109
114
  @attributes[:tutorial_youtube_url]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Files
4
- VERSION = "1.1.117"
4
+ VERSION = "1.1.119"
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.117
4
+ version: 1.1.119
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-08-19 00:00:00.000000000 Z
11
+ date: 2024-08-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable