files.com 1.1.116 → 1.1.118
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/README.md +0 -4
- data/_VERSION +1 -1
- data/docs/app.md +2 -0
- data/lib/files.com/models/app.rb +5 -0
- data/lib/files.com/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1e5d80b1fcc9838b60ff6994ce6975fae169e9ed63960688ef8d13044aaf19d6
|
|
4
|
+
data.tar.gz: 5d20da6fa8a17e7fdcd985ee086dde8f41f1f330b42324619d2d4181297bfdce
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2d16e462279409246e944f37458a87aca2ad10d2f869db2ba02a0a3bb058b322ba56d44229f0baf7b67a7a06e4ed90b6aeea2f9353be407bfb7559af96119c63
|
|
7
|
+
data.tar.gz: 514883c25abaa39e2d63ea79000e70c43268d5b8e5ca8b12884016fe5faa4685e60587362eeeb2be991c1dc7206339fc4e5bb6004476a3e2542ad1a844d93945
|
data/README.md
CHANGED
|
@@ -26,9 +26,7 @@ gem 'files.com', '~> 1.0'
|
|
|
26
26
|
|
|
27
27
|
Ruby 2.x is now considered end-of-life by the Ruby project. As a policy, Files.com does not support integrations which are considered end-of-life by their vendor.
|
|
28
28
|
|
|
29
|
-
<Note title="Repository">
|
|
30
29
|
Explore the [files-sdk-ruby](https://github.com/Files-com/files-sdk-ruby) code on GitHub.
|
|
31
|
-
</Note>
|
|
32
30
|
|
|
33
31
|
### Getting Support
|
|
34
32
|
|
|
@@ -59,9 +57,7 @@ Files.api_key = 'YOUR_API_KEY'
|
|
|
59
57
|
Files::User.new(params, api_key: 'YOUR_API_KEY')
|
|
60
58
|
```
|
|
61
59
|
|
|
62
|
-
<Note>
|
|
63
60
|
Don't forget to replace the placeholder, `YOUR_API_KEY`, with your actual API key.
|
|
64
|
-
</Note>
|
|
65
61
|
|
|
66
62
|
### Authenticate with a Session
|
|
67
63
|
|
data/_VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.1.
|
|
1
|
+
1.1.118
|
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
|
|
data/lib/files.com/models/app.rb
CHANGED
|
@@ -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]
|
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.118
|
|
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-
|
|
11
|
+
date: 2024-08-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: addressable
|