akeyless 3.5.2 → 3.5.3
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 +1 -1
- data/docs/GeneralConfigPart.md +2 -0
- data/lib/akeyless/models/general_config_part.rb +10 -1
- data/lib/akeyless/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a15bc76f447fd408b01c39a117e7e1984e060f96b6009d93cc46d05f11c34062
|
|
4
|
+
data.tar.gz: 8511acf1a8ef639dbbebea1348b3db71ae46cf10d57fed1f65596565733eb1b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 164c9b33377f44600b8f2fe7293613cb20d1110096a202017bacd3099b0e726088a3d4e43adf08283b881556f549fc4e6412e47de313a6be8b0843d145fe711b
|
|
7
|
+
data.tar.gz: dec72e60fb10e08bde36adbb10a84e80862d65f8d3f3e6193c05025af1c92bf2c0fbc9510c2ce4eb5cefc2985543a705e29484c448f8022567115a76e5109763
|
data/README.md
CHANGED
|
@@ -7,7 +7,7 @@ The purpose of this application is to provide access to Akeyless API.
|
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
8
8
|
|
|
9
9
|
- API version: 2.0
|
|
10
|
-
- Package version: 3.5.
|
|
10
|
+
- Package version: 3.5.3
|
|
11
11
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
12
12
|
For more information, please visit [http://akeyless.io](http://akeyless.io)
|
|
13
13
|
|
data/docs/GeneralConfigPart.md
CHANGED
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
| **enable_tls_curl** | **Boolean** | | [optional] |
|
|
14
14
|
| **enable_tls_hvp** | **Boolean** | | [optional] |
|
|
15
15
|
| **gw_cluster_url** | **String** | | [optional] |
|
|
16
|
+
| **notify_on_status_change** | **Boolean** | | [optional] |
|
|
16
17
|
| **tcp_port** | **String** | | [optional] |
|
|
17
18
|
| **tls_cert** | **String** | | [optional] |
|
|
18
19
|
| **tls_key** | **String** | | [optional] |
|
|
@@ -32,6 +33,7 @@ instance = Akeyless::GeneralConfigPart.new(
|
|
|
32
33
|
enable_tls_curl: null,
|
|
33
34
|
enable_tls_hvp: null,
|
|
34
35
|
gw_cluster_url: null,
|
|
36
|
+
notify_on_status_change: null,
|
|
35
37
|
tcp_port: null,
|
|
36
38
|
tls_cert: null,
|
|
37
39
|
tls_key: null
|
|
@@ -34,6 +34,8 @@ module Akeyless
|
|
|
34
34
|
|
|
35
35
|
attr_accessor :gw_cluster_url
|
|
36
36
|
|
|
37
|
+
attr_accessor :notify_on_status_change
|
|
38
|
+
|
|
37
39
|
attr_accessor :tcp_port
|
|
38
40
|
|
|
39
41
|
attr_accessor :tls_cert
|
|
@@ -52,6 +54,7 @@ module Akeyless
|
|
|
52
54
|
:'enable_tls_curl' => :'enable_tls_curl',
|
|
53
55
|
:'enable_tls_hvp' => :'enable_tls_hvp',
|
|
54
56
|
:'gw_cluster_url' => :'gw_cluster_url',
|
|
57
|
+
:'notify_on_status_change' => :'notify_on_status_change',
|
|
55
58
|
:'tcp_port' => :'tcp_port',
|
|
56
59
|
:'tls_cert' => :'tls_cert',
|
|
57
60
|
:'tls_key' => :'tls_key'
|
|
@@ -75,6 +78,7 @@ module Akeyless
|
|
|
75
78
|
:'enable_tls_curl' => :'Boolean',
|
|
76
79
|
:'enable_tls_hvp' => :'Boolean',
|
|
77
80
|
:'gw_cluster_url' => :'String',
|
|
81
|
+
:'notify_on_status_change' => :'Boolean',
|
|
78
82
|
:'tcp_port' => :'String',
|
|
79
83
|
:'tls_cert' => :'String',
|
|
80
84
|
:'tls_key' => :'String'
|
|
@@ -138,6 +142,10 @@ module Akeyless
|
|
|
138
142
|
self.gw_cluster_url = attributes[:'gw_cluster_url']
|
|
139
143
|
end
|
|
140
144
|
|
|
145
|
+
if attributes.key?(:'notify_on_status_change')
|
|
146
|
+
self.notify_on_status_change = attributes[:'notify_on_status_change']
|
|
147
|
+
end
|
|
148
|
+
|
|
141
149
|
if attributes.key?(:'tcp_port')
|
|
142
150
|
self.tcp_port = attributes[:'tcp_port']
|
|
143
151
|
end
|
|
@@ -180,6 +188,7 @@ module Akeyless
|
|
|
180
188
|
enable_tls_curl == o.enable_tls_curl &&
|
|
181
189
|
enable_tls_hvp == o.enable_tls_hvp &&
|
|
182
190
|
gw_cluster_url == o.gw_cluster_url &&
|
|
191
|
+
notify_on_status_change == o.notify_on_status_change &&
|
|
183
192
|
tcp_port == o.tcp_port &&
|
|
184
193
|
tls_cert == o.tls_cert &&
|
|
185
194
|
tls_key == o.tls_key
|
|
@@ -194,7 +203,7 @@ module Akeyless
|
|
|
194
203
|
# Calculates hash code according to all attributes.
|
|
195
204
|
# @return [Integer] Hash code
|
|
196
205
|
def hash
|
|
197
|
-
[akeyless_url, api_token_ttl, display_name, enable_sni_proxy, enable_tls, enable_tls_configure, enable_tls_curl, enable_tls_hvp, gw_cluster_url, tcp_port, tls_cert, tls_key].hash
|
|
206
|
+
[akeyless_url, api_token_ttl, display_name, enable_sni_proxy, enable_tls, enable_tls_configure, enable_tls_curl, enable_tls_hvp, gw_cluster_url, notify_on_status_change, tcp_port, tls_cert, tls_key].hash
|
|
198
207
|
end
|
|
199
208
|
|
|
200
209
|
# Builds the object from hash
|
data/lib/akeyless/version.rb
CHANGED