akeyless 3.1.2 → 3.2.0
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 +12 -1
- data/docs/CreatePingTarget.md +38 -0
- data/docs/CreatePingTargetOutput.md +18 -0
- data/docs/CreateRotatedSecret.md +2 -0
- data/docs/DSProducerDetails.md +40 -0
- data/docs/GatewayCreateProducerPing.md +66 -0
- data/docs/GatewayCreateProducerPingOutput.md +18 -0
- data/docs/GatewayUpdateProducerPing.md +68 -0
- data/docs/GatewayUpdateProducerPingOutput.md +18 -0
- data/docs/GetKubeExecCreds.md +5 -3
- data/docs/GetPKICertificate.md +5 -3
- data/docs/SecureRemoteAccess.md +2 -0
- data/docs/TargetTypeDetailsInput.md +10 -0
- data/docs/UpdatePingTarget.md +44 -0
- data/docs/UpdateRotatedSecret.md +2 -0
- data/docs/V2Api.md +252 -0
- data/lib/akeyless/api/v2_api.rb +256 -0
- data/lib/akeyless/models/create_ping_target.rb +329 -0
- data/lib/akeyless/models/create_ping_target_output.rb +219 -0
- data/lib/akeyless/models/create_rotated_secret.rb +13 -1
- data/lib/akeyless/models/ds_producer_details.rb +196 -1
- data/lib/akeyless/models/gateway_create_producer_ping.rb +482 -0
- data/lib/akeyless/models/gateway_create_producer_ping_output.rb +219 -0
- data/lib/akeyless/models/gateway_update_producer_ping.rb +492 -0
- data/lib/akeyless/models/gateway_update_producer_ping_output.rb +219 -0
- data/lib/akeyless/models/get_kube_exec_creds.rb +14 -4
- data/lib/akeyless/models/get_pki_certificate.rb +14 -4
- data/lib/akeyless/models/secure_remote_access.rb +10 -1
- data/lib/akeyless/models/target_type_details_input.rb +46 -1
- data/lib/akeyless/models/update_ping_target.rb +358 -0
- data/lib/akeyless/models/update_rotated_secret.rb +13 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +7 -0
- data/spec/models/create_ping_target_output_spec.rb +34 -0
- data/spec/models/create_ping_target_spec.rb +94 -0
- data/spec/models/gateway_create_producer_ping_output_spec.rb +34 -0
- data/spec/models/gateway_create_producer_ping_spec.rb +178 -0
- data/spec/models/gateway_update_producer_ping_output_spec.rb +34 -0
- data/spec/models/gateway_update_producer_ping_spec.rb +184 -0
- data/spec/models/update_ping_target_spec.rb +112 -0
- metadata +590 -562
@@ -16,15 +16,18 @@ require 'time'
|
|
16
16
|
module Akeyless
|
17
17
|
# getKubeExecCreds is a command that gets credentials for authentication with Kubernetes cluster based on a PKI cert issuer.
|
18
18
|
class GetKubeExecCreds
|
19
|
-
# The Subject Alternative Names to be included in the PKI certificate (in a comma-
|
19
|
+
# The Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any DNS.* names are taken from it)
|
20
20
|
attr_accessor :alt_names
|
21
21
|
|
22
22
|
# The name of the PKI certificate issuer
|
23
23
|
attr_accessor :cert_issuer_name
|
24
24
|
|
25
|
-
# The common name to be included in the PKI certificate
|
25
|
+
# The common name to be included in the PKI certificate (if CSR is supplied this flag is ignored and the CSR subject CN is taken)
|
26
26
|
attr_accessor :common_name
|
27
27
|
|
28
|
+
# Certificate Signing Request contents encoded in base64 to generate the certificate with
|
29
|
+
attr_accessor :csr_data_base64
|
30
|
+
|
28
31
|
# A comma-separated list of extended key usage requests which will be used for certificate issuance. Supported values: 'clientauth', 'serverauth'.
|
29
32
|
attr_accessor :extended_key_usage
|
30
33
|
|
@@ -43,7 +46,7 @@ module Akeyless
|
|
43
46
|
# The universal identity token, Required only for universal_identity authentication
|
44
47
|
attr_accessor :uid_token
|
45
48
|
|
46
|
-
# The URI Subject Alternative Names to be included in the PKI certificate (in a comma-
|
49
|
+
# The URI Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any URI.* names are taken from it)
|
47
50
|
attr_accessor :uri_sans
|
48
51
|
|
49
52
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -52,6 +55,7 @@ module Akeyless
|
|
52
55
|
:'alt_names' => :'alt-names',
|
53
56
|
:'cert_issuer_name' => :'cert-issuer-name',
|
54
57
|
:'common_name' => :'common-name',
|
58
|
+
:'csr_data_base64' => :'csr-data-base64',
|
55
59
|
:'extended_key_usage' => :'extended-key-usage',
|
56
60
|
:'json' => :'json',
|
57
61
|
:'key_data_base64' => :'key-data-base64',
|
@@ -73,6 +77,7 @@ module Akeyless
|
|
73
77
|
:'alt_names' => :'String',
|
74
78
|
:'cert_issuer_name' => :'String',
|
75
79
|
:'common_name' => :'String',
|
80
|
+
:'csr_data_base64' => :'String',
|
76
81
|
:'extended_key_usage' => :'String',
|
77
82
|
:'json' => :'Boolean',
|
78
83
|
:'key_data_base64' => :'String',
|
@@ -116,6 +121,10 @@ module Akeyless
|
|
116
121
|
self.common_name = attributes[:'common_name']
|
117
122
|
end
|
118
123
|
|
124
|
+
if attributes.key?(:'csr_data_base64')
|
125
|
+
self.csr_data_base64 = attributes[:'csr_data_base64']
|
126
|
+
end
|
127
|
+
|
119
128
|
if attributes.key?(:'extended_key_usage')
|
120
129
|
self.extended_key_usage = attributes[:'extended_key_usage']
|
121
130
|
end
|
@@ -171,6 +180,7 @@ module Akeyless
|
|
171
180
|
alt_names == o.alt_names &&
|
172
181
|
cert_issuer_name == o.cert_issuer_name &&
|
173
182
|
common_name == o.common_name &&
|
183
|
+
csr_data_base64 == o.csr_data_base64 &&
|
174
184
|
extended_key_usage == o.extended_key_usage &&
|
175
185
|
json == o.json &&
|
176
186
|
key_data_base64 == o.key_data_base64 &&
|
@@ -189,7 +199,7 @@ module Akeyless
|
|
189
199
|
# Calculates hash code according to all attributes.
|
190
200
|
# @return [Integer] Hash code
|
191
201
|
def hash
|
192
|
-
[alt_names, cert_issuer_name, common_name, extended_key_usage, json, key_data_base64, token, ttl, uid_token, uri_sans].hash
|
202
|
+
[alt_names, cert_issuer_name, common_name, csr_data_base64, extended_key_usage, json, key_data_base64, token, ttl, uid_token, uri_sans].hash
|
193
203
|
end
|
194
204
|
|
195
205
|
# Builds the object from hash
|
@@ -15,15 +15,18 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Akeyless
|
17
17
|
class GetPKICertificate
|
18
|
-
# The Subject Alternative Names to be included in the PKI certificate (in a comma-
|
18
|
+
# The Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any DNS.* names are taken from it)
|
19
19
|
attr_accessor :alt_names
|
20
20
|
|
21
21
|
# The name of the PKI certificate issuer
|
22
22
|
attr_accessor :cert_issuer_name
|
23
23
|
|
24
|
-
# The common name to be included in the PKI certificate
|
24
|
+
# The common name to be included in the PKI certificate (if CSR is supplied this flag is ignored and the CSR subject CN is taken)
|
25
25
|
attr_accessor :common_name
|
26
26
|
|
27
|
+
# Certificate Signing Request contents encoded in base64 to generate the certificate with
|
28
|
+
attr_accessor :csr_data_base64
|
29
|
+
|
27
30
|
# A comma-separated list of extended key usage requests which will be used for certificate issuance. Supported values: 'clientauth', 'serverauth'.
|
28
31
|
attr_accessor :extended_key_usage
|
29
32
|
|
@@ -42,7 +45,7 @@ module Akeyless
|
|
42
45
|
# The universal identity token, Required only for universal_identity authentication
|
43
46
|
attr_accessor :uid_token
|
44
47
|
|
45
|
-
# The URI Subject Alternative Names to be included in the PKI certificate (in a comma-
|
48
|
+
# The URI Subject Alternative Names to be included in the PKI certificate (in a comma-separated list) (if CSR is supplied this flag is ignored and any URI.* names are taken from it)
|
46
49
|
attr_accessor :uri_sans
|
47
50
|
|
48
51
|
# Attribute mapping from ruby-style variable name to JSON key.
|
@@ -51,6 +54,7 @@ module Akeyless
|
|
51
54
|
:'alt_names' => :'alt-names',
|
52
55
|
:'cert_issuer_name' => :'cert-issuer-name',
|
53
56
|
:'common_name' => :'common-name',
|
57
|
+
:'csr_data_base64' => :'csr-data-base64',
|
54
58
|
:'extended_key_usage' => :'extended-key-usage',
|
55
59
|
:'json' => :'json',
|
56
60
|
:'key_data_base64' => :'key-data-base64',
|
@@ -72,6 +76,7 @@ module Akeyless
|
|
72
76
|
:'alt_names' => :'String',
|
73
77
|
:'cert_issuer_name' => :'String',
|
74
78
|
:'common_name' => :'String',
|
79
|
+
:'csr_data_base64' => :'String',
|
75
80
|
:'extended_key_usage' => :'String',
|
76
81
|
:'json' => :'Boolean',
|
77
82
|
:'key_data_base64' => :'String',
|
@@ -115,6 +120,10 @@ module Akeyless
|
|
115
120
|
self.common_name = attributes[:'common_name']
|
116
121
|
end
|
117
122
|
|
123
|
+
if attributes.key?(:'csr_data_base64')
|
124
|
+
self.csr_data_base64 = attributes[:'csr_data_base64']
|
125
|
+
end
|
126
|
+
|
118
127
|
if attributes.key?(:'extended_key_usage')
|
119
128
|
self.extended_key_usage = attributes[:'extended_key_usage']
|
120
129
|
end
|
@@ -170,6 +179,7 @@ module Akeyless
|
|
170
179
|
alt_names == o.alt_names &&
|
171
180
|
cert_issuer_name == o.cert_issuer_name &&
|
172
181
|
common_name == o.common_name &&
|
182
|
+
csr_data_base64 == o.csr_data_base64 &&
|
173
183
|
extended_key_usage == o.extended_key_usage &&
|
174
184
|
json == o.json &&
|
175
185
|
key_data_base64 == o.key_data_base64 &&
|
@@ -188,7 +198,7 @@ module Akeyless
|
|
188
198
|
# Calculates hash code according to all attributes.
|
189
199
|
# @return [Integer] Hash code
|
190
200
|
def hash
|
191
|
-
[alt_names, cert_issuer_name, common_name, extended_key_usage, json, key_data_base64, token, ttl, uid_token, uri_sans].hash
|
201
|
+
[alt_names, cert_issuer_name, common_name, csr_data_base64, extended_key_usage, json, key_data_base64, token, ttl, uid_token, uri_sans].hash
|
192
202
|
end
|
193
203
|
|
194
204
|
# Builds the object from hash
|
@@ -55,6 +55,8 @@ module Akeyless
|
|
55
55
|
|
56
56
|
attr_accessor :region
|
57
57
|
|
58
|
+
attr_accessor :rotate_after_disconnect
|
59
|
+
|
58
60
|
attr_accessor :schema
|
59
61
|
|
60
62
|
attr_accessor :ssh_password
|
@@ -92,6 +94,7 @@ module Akeyless
|
|
92
94
|
:'native' => :'native',
|
93
95
|
:'rdp_user' => :'rdp_user',
|
94
96
|
:'region' => :'region',
|
97
|
+
:'rotate_after_disconnect' => :'rotate_after_disconnect',
|
95
98
|
:'schema' => :'schema',
|
96
99
|
:'ssh_password' => :'ssh_password',
|
97
100
|
:'ssh_private_key' => :'ssh_private_key',
|
@@ -130,6 +133,7 @@ module Akeyless
|
|
130
133
|
:'native' => :'Boolean',
|
131
134
|
:'rdp_user' => :'String',
|
132
135
|
:'region' => :'String',
|
136
|
+
:'rotate_after_disconnect' => :'Boolean',
|
133
137
|
:'schema' => :'String',
|
134
138
|
:'ssh_password' => :'Boolean',
|
135
139
|
:'ssh_private_key' => :'Boolean',
|
@@ -243,6 +247,10 @@ module Akeyless
|
|
243
247
|
self.region = attributes[:'region']
|
244
248
|
end
|
245
249
|
|
250
|
+
if attributes.key?(:'rotate_after_disconnect')
|
251
|
+
self.rotate_after_disconnect = attributes[:'rotate_after_disconnect']
|
252
|
+
end
|
253
|
+
|
246
254
|
if attributes.key?(:'schema')
|
247
255
|
self.schema = attributes[:'schema']
|
248
256
|
end
|
@@ -310,6 +318,7 @@ module Akeyless
|
|
310
318
|
native == o.native &&
|
311
319
|
rdp_user == o.rdp_user &&
|
312
320
|
region == o.region &&
|
321
|
+
rotate_after_disconnect == o.rotate_after_disconnect &&
|
313
322
|
schema == o.schema &&
|
314
323
|
ssh_password == o.ssh_password &&
|
315
324
|
ssh_private_key == o.ssh_private_key &&
|
@@ -328,7 +337,7 @@ module Akeyless
|
|
328
337
|
# Calculates hash code according to all attributes.
|
329
338
|
# @return [Integer] Hash code
|
330
339
|
def hash
|
331
|
-
[account_id, allow_port_forwarding, allow_providing_external_username, bastion_api, bastion_issuer, bastion_issuer_id, bastion_ssh, category, dashboard_url, db_name, domain, enable, endpoint, host, is_cli, is_web, isolated, native, rdp_user, region, schema, ssh_password, ssh_private_key, ssh_user, url, use_internal_bastion, web_proxy].hash
|
340
|
+
[account_id, allow_port_forwarding, allow_providing_external_username, bastion_api, bastion_issuer, bastion_issuer_id, bastion_ssh, category, dashboard_url, db_name, domain, enable, endpoint, host, is_cli, is_web, isolated, native, rdp_user, region, rotate_after_disconnect, schema, ssh_password, ssh_private_key, ssh_user, url, use_internal_bastion, web_proxy].hash
|
332
341
|
end
|
333
342
|
|
334
343
|
# Builds the object from hash
|
@@ -15,6 +15,8 @@ require 'time'
|
|
15
15
|
|
16
16
|
module Akeyless
|
17
17
|
class TargetTypeDetailsInput
|
18
|
+
attr_accessor :administrative_port
|
19
|
+
|
18
20
|
# params needed for jwt auth AppPrivateKey is the rsa private key in PEM format
|
19
21
|
attr_accessor :app_private_key
|
20
22
|
|
@@ -26,6 +28,8 @@ module Akeyless
|
|
26
28
|
|
27
29
|
attr_accessor :auth_flow
|
28
30
|
|
31
|
+
attr_accessor :authorization_port
|
32
|
+
|
29
33
|
attr_accessor :aws_access_key_id
|
30
34
|
|
31
35
|
attr_accessor :aws_region
|
@@ -174,12 +178,16 @@ module Akeyless
|
|
174
178
|
|
175
179
|
attr_accessor :payload
|
176
180
|
|
181
|
+
attr_accessor :ping_url
|
182
|
+
|
177
183
|
attr_accessor :port
|
178
184
|
|
179
185
|
attr_accessor :private_key
|
180
186
|
|
181
187
|
attr_accessor :private_key_password
|
182
188
|
|
189
|
+
attr_accessor :privileged_user
|
190
|
+
|
183
191
|
attr_accessor :rabbitmq_server_password
|
184
192
|
|
185
193
|
attr_accessor :rabbitmq_server_uri
|
@@ -204,6 +212,8 @@ module Akeyless
|
|
204
212
|
|
205
213
|
attr_accessor :user_name
|
206
214
|
|
215
|
+
attr_accessor :user_password
|
216
|
+
|
207
217
|
attr_accessor :username
|
208
218
|
|
209
219
|
attr_accessor :venafi_api_key
|
@@ -221,11 +231,13 @@ module Akeyless
|
|
221
231
|
# Attribute mapping from ruby-style variable name to JSON key.
|
222
232
|
def self.attribute_map
|
223
233
|
{
|
234
|
+
:'administrative_port' => :'administrative_port',
|
224
235
|
:'app_private_key' => :'app_private_key',
|
225
236
|
:'artifactory_admin_apikey' => :'artifactory_admin_apikey',
|
226
237
|
:'artifactory_admin_username' => :'artifactory_admin_username',
|
227
238
|
:'artifactory_base_url' => :'artifactory_base_url',
|
228
239
|
:'auth_flow' => :'auth_flow',
|
240
|
+
:'authorization_port' => :'authorization_port',
|
229
241
|
:'aws_access_key_id' => :'aws_access_key_id',
|
230
242
|
:'aws_region' => :'aws_region',
|
231
243
|
:'aws_secret_access_key' => :'aws_secret_access_key',
|
@@ -295,9 +307,11 @@ module Akeyless
|
|
295
307
|
:'mongodb_username' => :'mongodb_username',
|
296
308
|
:'password' => :'password',
|
297
309
|
:'payload' => :'payload',
|
310
|
+
:'ping_url' => :'ping_url',
|
298
311
|
:'port' => :'port',
|
299
312
|
:'private_key' => :'private_key',
|
300
313
|
:'private_key_password' => :'private_key_password',
|
314
|
+
:'privileged_user' => :'privileged_user',
|
301
315
|
:'rabbitmq_server_password' => :'rabbitmq_server_password',
|
302
316
|
:'rabbitmq_server_uri' => :'rabbitmq_server_uri',
|
303
317
|
:'rabbitmq_server_user' => :'rabbitmq_server_user',
|
@@ -309,6 +323,7 @@ module Akeyless
|
|
309
323
|
:'url' => :'url',
|
310
324
|
:'use_gw_cloud_identity' => :'use_gw_cloud_identity',
|
311
325
|
:'user_name' => :'user_name',
|
326
|
+
:'user_password' => :'user_password',
|
312
327
|
:'username' => :'username',
|
313
328
|
:'venafi_api_key' => :'venafi_api_key',
|
314
329
|
:'venafi_base_url' => :'venafi_base_url',
|
@@ -327,11 +342,13 @@ module Akeyless
|
|
327
342
|
# Attribute type mapping.
|
328
343
|
def self.openapi_types
|
329
344
|
{
|
345
|
+
:'administrative_port' => :'String',
|
330
346
|
:'app_private_key' => :'Array<Integer>',
|
331
347
|
:'artifactory_admin_apikey' => :'String',
|
332
348
|
:'artifactory_admin_username' => :'String',
|
333
349
|
:'artifactory_base_url' => :'String',
|
334
350
|
:'auth_flow' => :'String',
|
351
|
+
:'authorization_port' => :'String',
|
335
352
|
:'aws_access_key_id' => :'String',
|
336
353
|
:'aws_region' => :'String',
|
337
354
|
:'aws_secret_access_key' => :'String',
|
@@ -401,9 +418,11 @@ module Akeyless
|
|
401
418
|
:'mongodb_username' => :'String',
|
402
419
|
:'password' => :'String',
|
403
420
|
:'payload' => :'String',
|
421
|
+
:'ping_url' => :'String',
|
404
422
|
:'port' => :'String',
|
405
423
|
:'private_key' => :'String',
|
406
424
|
:'private_key_password' => :'String',
|
425
|
+
:'privileged_user' => :'String',
|
407
426
|
:'rabbitmq_server_password' => :'String',
|
408
427
|
:'rabbitmq_server_uri' => :'String',
|
409
428
|
:'rabbitmq_server_user' => :'String',
|
@@ -415,6 +434,7 @@ module Akeyless
|
|
415
434
|
:'url' => :'String',
|
416
435
|
:'use_gw_cloud_identity' => :'Boolean',
|
417
436
|
:'user_name' => :'String',
|
437
|
+
:'user_password' => :'String',
|
418
438
|
:'username' => :'String',
|
419
439
|
:'venafi_api_key' => :'String',
|
420
440
|
:'venafi_base_url' => :'String',
|
@@ -446,6 +466,10 @@ module Akeyless
|
|
446
466
|
h[k.to_sym] = v
|
447
467
|
}
|
448
468
|
|
469
|
+
if attributes.key?(:'administrative_port')
|
470
|
+
self.administrative_port = attributes[:'administrative_port']
|
471
|
+
end
|
472
|
+
|
449
473
|
if attributes.key?(:'app_private_key')
|
450
474
|
if (value = attributes[:'app_private_key']).is_a?(Array)
|
451
475
|
self.app_private_key = value
|
@@ -468,6 +492,10 @@ module Akeyless
|
|
468
492
|
self.auth_flow = attributes[:'auth_flow']
|
469
493
|
end
|
470
494
|
|
495
|
+
if attributes.key?(:'authorization_port')
|
496
|
+
self.authorization_port = attributes[:'authorization_port']
|
497
|
+
end
|
498
|
+
|
471
499
|
if attributes.key?(:'aws_access_key_id')
|
472
500
|
self.aws_access_key_id = attributes[:'aws_access_key_id']
|
473
501
|
end
|
@@ -746,6 +774,10 @@ module Akeyless
|
|
746
774
|
self.payload = attributes[:'payload']
|
747
775
|
end
|
748
776
|
|
777
|
+
if attributes.key?(:'ping_url')
|
778
|
+
self.ping_url = attributes[:'ping_url']
|
779
|
+
end
|
780
|
+
|
749
781
|
if attributes.key?(:'port')
|
750
782
|
self.port = attributes[:'port']
|
751
783
|
end
|
@@ -758,6 +790,10 @@ module Akeyless
|
|
758
790
|
self.private_key_password = attributes[:'private_key_password']
|
759
791
|
end
|
760
792
|
|
793
|
+
if attributes.key?(:'privileged_user')
|
794
|
+
self.privileged_user = attributes[:'privileged_user']
|
795
|
+
end
|
796
|
+
|
761
797
|
if attributes.key?(:'rabbitmq_server_password')
|
762
798
|
self.rabbitmq_server_password = attributes[:'rabbitmq_server_password']
|
763
799
|
end
|
@@ -802,6 +838,10 @@ module Akeyless
|
|
802
838
|
self.user_name = attributes[:'user_name']
|
803
839
|
end
|
804
840
|
|
841
|
+
if attributes.key?(:'user_password')
|
842
|
+
self.user_password = attributes[:'user_password']
|
843
|
+
end
|
844
|
+
|
805
845
|
if attributes.key?(:'username')
|
806
846
|
self.username = attributes[:'username']
|
807
847
|
end
|
@@ -849,11 +889,13 @@ module Akeyless
|
|
849
889
|
def ==(o)
|
850
890
|
return true if self.equal?(o)
|
851
891
|
self.class == o.class &&
|
892
|
+
administrative_port == o.administrative_port &&
|
852
893
|
app_private_key == o.app_private_key &&
|
853
894
|
artifactory_admin_apikey == o.artifactory_admin_apikey &&
|
854
895
|
artifactory_admin_username == o.artifactory_admin_username &&
|
855
896
|
artifactory_base_url == o.artifactory_base_url &&
|
856
897
|
auth_flow == o.auth_flow &&
|
898
|
+
authorization_port == o.authorization_port &&
|
857
899
|
aws_access_key_id == o.aws_access_key_id &&
|
858
900
|
aws_region == o.aws_region &&
|
859
901
|
aws_secret_access_key == o.aws_secret_access_key &&
|
@@ -923,9 +965,11 @@ module Akeyless
|
|
923
965
|
mongodb_username == o.mongodb_username &&
|
924
966
|
password == o.password &&
|
925
967
|
payload == o.payload &&
|
968
|
+
ping_url == o.ping_url &&
|
926
969
|
port == o.port &&
|
927
970
|
private_key == o.private_key &&
|
928
971
|
private_key_password == o.private_key_password &&
|
972
|
+
privileged_user == o.privileged_user &&
|
929
973
|
rabbitmq_server_password == o.rabbitmq_server_password &&
|
930
974
|
rabbitmq_server_uri == o.rabbitmq_server_uri &&
|
931
975
|
rabbitmq_server_user == o.rabbitmq_server_user &&
|
@@ -937,6 +981,7 @@ module Akeyless
|
|
937
981
|
url == o.url &&
|
938
982
|
use_gw_cloud_identity == o.use_gw_cloud_identity &&
|
939
983
|
user_name == o.user_name &&
|
984
|
+
user_password == o.user_password &&
|
940
985
|
username == o.username &&
|
941
986
|
venafi_api_key == o.venafi_api_key &&
|
942
987
|
venafi_base_url == o.venafi_base_url &&
|
@@ -955,7 +1000,7 @@ module Akeyless
|
|
955
1000
|
# Calculates hash code according to all attributes.
|
956
1001
|
# @return [Integer] Hash code
|
957
1002
|
def hash
|
958
|
-
[app_private_key, artifactory_admin_apikey, artifactory_admin_username, artifactory_base_url, auth_flow, aws_access_key_id, aws_region, aws_secret_access_key, aws_session_token, azure_client_id, azure_client_secret, azure_resource_group_name, azure_resource_name, azure_subscription_id, azure_tenant_id, ca_cert_data, ca_cert_name, chef_server_host_name, chef_server_key, chef_server_port, chef_server_url, chef_server_username, chef_skip_ssl, client_id, client_secret, db_host_name, db_name, db_port, db_private_key, db_private_key_passphrase, db_pwd, db_server_certificates, db_server_name, db_user_name, eks_access_key_id, eks_cluster_ca_certificate, eks_cluster_endpoint, eks_cluster_name, eks_region, eks_secret_access_key, gcp_service_account_email, gcp_service_account_key, github_app_id, github_app_private_key, github_base_url, gke_cluster_ca_certificate, gke_cluster_endpoint, gke_cluster_name, gke_service_account_key, gke_service_account_name, host, implementation_type, k8s_bearer_token, k8s_cluster_ca_certificate, k8s_cluster_endpoint, ldap_audience, ldap_bind_dn, ldap_bind_password, ldap_certificate, ldap_token_expiration, ldap_url, mongodb_atlas_api_private_key, mongodb_atlas_api_public_key, mongodb_atlas_project_id, mongodb_db_name, mongodb_default_auth_db, mongodb_host_port, mongodb_is_atlas, mongodb_password, mongodb_uri_connection, mongodb_uri_options, mongodb_username, password, payload, port, private_key, private_key_password, rabbitmq_server_password, rabbitmq_server_uri, rabbitmq_server_user, security_token, sf_account, ssl_connection_certificate, ssl_connection_mode, tenant_url, url, use_gw_cloud_identity, user_name, username, venafi_api_key, venafi_base_url, venafi_tpp_password, venafi_tpp_username, venafi_use_tpp, venafi_zone].hash
|
1003
|
+
[administrative_port, app_private_key, artifactory_admin_apikey, artifactory_admin_username, artifactory_base_url, auth_flow, authorization_port, aws_access_key_id, aws_region, aws_secret_access_key, aws_session_token, azure_client_id, azure_client_secret, azure_resource_group_name, azure_resource_name, azure_subscription_id, azure_tenant_id, ca_cert_data, ca_cert_name, chef_server_host_name, chef_server_key, chef_server_port, chef_server_url, chef_server_username, chef_skip_ssl, client_id, client_secret, db_host_name, db_name, db_port, db_private_key, db_private_key_passphrase, db_pwd, db_server_certificates, db_server_name, db_user_name, eks_access_key_id, eks_cluster_ca_certificate, eks_cluster_endpoint, eks_cluster_name, eks_region, eks_secret_access_key, gcp_service_account_email, gcp_service_account_key, github_app_id, github_app_private_key, github_base_url, gke_cluster_ca_certificate, gke_cluster_endpoint, gke_cluster_name, gke_service_account_key, gke_service_account_name, host, implementation_type, k8s_bearer_token, k8s_cluster_ca_certificate, k8s_cluster_endpoint, ldap_audience, ldap_bind_dn, ldap_bind_password, ldap_certificate, ldap_token_expiration, ldap_url, mongodb_atlas_api_private_key, mongodb_atlas_api_public_key, mongodb_atlas_project_id, mongodb_db_name, mongodb_default_auth_db, mongodb_host_port, mongodb_is_atlas, mongodb_password, mongodb_uri_connection, mongodb_uri_options, mongodb_username, password, payload, ping_url, port, private_key, private_key_password, privileged_user, rabbitmq_server_password, rabbitmq_server_uri, rabbitmq_server_user, security_token, sf_account, ssl_connection_certificate, ssl_connection_mode, tenant_url, url, use_gw_cloud_identity, user_name, user_password, username, venafi_api_key, venafi_base_url, venafi_tpp_password, venafi_tpp_username, venafi_use_tpp, venafi_zone].hash
|
959
1004
|
end
|
960
1005
|
|
961
1006
|
# Builds the object from hash
|