akeyless 5.0.21 → 5.0.22

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.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +13 -1
  3. data/docs/AccountGeneralSettings.md +2 -0
  4. data/docs/ActiveDirectoryPayload.md +6 -0
  5. data/docs/Auth.md +2 -0
  6. data/docs/AuthMethodCreateCert.md +2 -0
  7. data/docs/AuthMethodUpdateCert.md +2 -0
  8. data/docs/AzureADAccessRules.md +2 -0
  9. data/docs/AzureTargetDetails.md +2 -0
  10. data/docs/CertAccessRules.md +2 -0
  11. data/docs/CertificateChainInfo.md +2 -0
  12. data/docs/Configure.md +2 -0
  13. data/docs/ConjurMigration.md +20 -0
  14. data/docs/ConjurPayload.md +24 -0
  15. data/docs/CreateAuthMethodCert.md +2 -0
  16. data/docs/CreateAzureTarget.md +2 -0
  17. data/docs/CreateUSC.md +10 -0
  18. data/docs/DSProducerDetails.md +2 -0
  19. data/docs/DefaultAuthMethodSettings.md +20 -0
  20. data/docs/GatewayCreateMigration.md +15 -1
  21. data/docs/GatewayUpdateMigration.md +14 -0
  22. data/docs/GetPKICertificateOutput.md +2 -0
  23. data/docs/GithubMetadata.md +28 -0
  24. data/docs/HTTPChallengeInfo.md +26 -0
  25. data/docs/IssuerOverviewInfo.md +22 -0
  26. data/docs/ItemGeneralInfo.md +2 -0
  27. data/docs/MigrationStatusReplyObj.md +2 -0
  28. data/docs/MigrationsConfigPart.md +2 -0
  29. data/docs/SecretInfo.md +2 -0
  30. data/docs/TargetCreateAzure.md +2 -0
  31. data/docs/TargetUpdateAzure.md +2 -0
  32. data/docs/UpdateAuthMethodCert.md +2 -0
  33. data/docs/UpdateAzureTarget.md +2 -0
  34. data/docs/V2Api.md +126 -0
  35. data/docs/ValidateCertificateChallenge.md +30 -0
  36. data/docs/ValidateCertificateChallengeOutput.md +24 -0
  37. data/docs/VaultAddress.md +20 -0
  38. data/docs/VaultAddressOutput.md +20 -0
  39. data/lib/akeyless/api/v2_api.rb +128 -0
  40. data/lib/akeyless/models/account_general_settings.rb +10 -1
  41. data/lib/akeyless/models/active_directory_payload.rb +30 -1
  42. data/lib/akeyless/models/auth.rb +13 -1
  43. data/lib/akeyless/models/auth_method_create_cert.rb +11 -1
  44. data/lib/akeyless/models/auth_method_update_cert.rb +11 -1
  45. data/lib/akeyless/models/azure_ad_access_rules.rb +11 -1
  46. data/lib/akeyless/models/azure_target_details.rb +10 -1
  47. data/lib/akeyless/models/cert_access_rules.rb +11 -1
  48. data/lib/akeyless/models/certificate_chain_info.rb +11 -1
  49. data/lib/akeyless/models/configure.rb +13 -1
  50. data/lib/akeyless/models/conjur_migration.rb +223 -0
  51. data/lib/akeyless/models/conjur_payload.rb +241 -0
  52. data/lib/akeyless/models/create_auth_method_cert.rb +11 -1
  53. data/lib/akeyless/models/create_azure_target.rb +13 -1
  54. data/lib/akeyless/models/create_usc.rb +54 -1
  55. data/lib/akeyless/models/default_auth_method_settings.rb +223 -0
  56. data/lib/akeyless/models/ds_producer_details.rb +10 -1
  57. data/lib/akeyless/models/gateway_create_migration.rb +74 -2
  58. data/lib/akeyless/models/gateway_update_migration.rb +73 -1
  59. data/lib/akeyless/models/get_pki_certificate_output.rb +10 -1
  60. data/lib/akeyless/models/github_metadata.rb +259 -0
  61. data/lib/akeyless/models/http_challenge_info.rb +251 -0
  62. data/lib/akeyless/models/issuer_overview_info.rb +232 -0
  63. data/lib/akeyless/models/item_general_info.rb +10 -1
  64. data/lib/akeyless/models/migration_status_reply_obj.rb +10 -1
  65. data/lib/akeyless/models/migrations_config_part.rb +12 -1
  66. data/lib/akeyless/models/secret_info.rb +10 -1
  67. data/lib/akeyless/models/target_create_azure.rb +13 -1
  68. data/lib/akeyless/models/target_update_azure.rb +13 -1
  69. data/lib/akeyless/models/update_auth_method_cert.rb +11 -1
  70. data/lib/akeyless/models/update_azure_target.rb +13 -1
  71. data/lib/akeyless/models/validate_certificate_challenge.rb +279 -0
  72. data/lib/akeyless/models/validate_certificate_challenge_output.rb +242 -0
  73. data/lib/akeyless/models/vault_address.rb +227 -0
  74. data/lib/akeyless/models/vault_address_output.rb +223 -0
  75. data/lib/akeyless/version.rb +1 -1
  76. data/lib/akeyless.rb +10 -0
  77. data/spec/models/conjur_migration_spec.rb +42 -0
  78. data/spec/models/conjur_payload_spec.rb +54 -0
  79. data/spec/models/default_auth_method_settings_spec.rb +42 -0
  80. data/spec/models/github_metadata_spec.rb +66 -0
  81. data/spec/models/http_challenge_info_spec.rb +60 -0
  82. data/spec/models/issuer_overview_info_spec.rb +48 -0
  83. data/spec/models/validate_certificate_challenge_output_spec.rb +54 -0
  84. data/spec/models/validate_certificate_challenge_spec.rb +72 -0
  85. data/spec/models/vault_address_output_spec.rb +42 -0
  86. data/spec/models/vault_address_spec.rb +42 -0
  87. metadata +41 -1
@@ -0,0 +1,66 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::GithubMetadata
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GithubMetadata do
21
+ let(:instance) { Akeyless::GithubMetadata.new }
22
+
23
+ describe 'test an instance of GithubMetadata' do
24
+ it 'should create an instance of GithubMetadata' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::GithubMetadata)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "environment_name"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "organization_name"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "repository"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "repository_access"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "scope"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "selected_repositories"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ end
@@ -0,0 +1,60 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::HTTPChallengeInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::HTTPChallengeInfo do
21
+ let(:instance) { Akeyless::HTTPChallengeInfo.new }
22
+
23
+ describe 'test an instance of HTTPChallengeInfo' do
24
+ it 'should create an instance of HTTPChallengeInfo' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::HTTPChallengeInfo)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "file_content"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "file_path"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "instructions"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "key_auth"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "token"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ end
@@ -0,0 +1,48 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::IssuerOverviewInfo
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::IssuerOverviewInfo do
21
+ let(:instance) { Akeyless::IssuerOverviewInfo.new }
22
+
23
+ describe 'test an instance of IssuerOverviewInfo' do
24
+ it 'should create an instance of IssuerOverviewInfo' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::IssuerOverviewInfo)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "certificate_authority_mode"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "expiration_date"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "key_type"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ end
@@ -0,0 +1,54 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::ValidateCertificateChallengeOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::ValidateCertificateChallengeOutput do
21
+ let(:instance) { Akeyless::ValidateCertificateChallengeOutput.new }
22
+
23
+ describe 'test an instance of ValidateCertificateChallengeOutput' do
24
+ it 'should create an instance of ValidateCertificateChallengeOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::ValidateCertificateChallengeOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "cert"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "cert_display_id"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "cert_item_id"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "status"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ end
@@ -0,0 +1,72 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::ValidateCertificateChallenge
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::ValidateCertificateChallenge do
21
+ let(:instance) { Akeyless::ValidateCertificateChallenge.new }
22
+
23
+ describe 'test an instance of ValidateCertificateChallenge' do
24
+ it 'should create an instance of ValidateCertificateChallenge' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::ValidateCertificateChallenge)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "result"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "cert_display_id"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ describe 'test attribute "json"' do
43
+ it 'should work' do
44
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
45
+ end
46
+ end
47
+
48
+ describe 'test attribute "name"' do
49
+ it 'should work' do
50
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
51
+ end
52
+ end
53
+
54
+ describe 'test attribute "timeout"' do
55
+ it 'should work' do
56
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
57
+ end
58
+ end
59
+
60
+ describe 'test attribute "token"' do
61
+ it 'should work' do
62
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
63
+ end
64
+ end
65
+
66
+ describe 'test attribute "uid_token"' do
67
+ it 'should work' do
68
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
69
+ end
70
+ end
71
+
72
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::VaultAddressOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::VaultAddressOutput do
21
+ let(:instance) { Akeyless::VaultAddressOutput.new }
22
+
23
+ describe 'test an instance of VaultAddressOutput' do
24
+ it 'should create an instance of VaultAddressOutput' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::VaultAddressOutput)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "api_gw_url"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "vault_url"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
@@ -0,0 +1,42 @@
1
+ =begin
2
+ #Akeyless API
3
+
4
+ #The purpose of this application is to provide access to Akeyless API.
5
+
6
+ The version of the OpenAPI document: 3.0
7
+ Contact: support@akeyless.io
8
+ Generated by: https://openapi-generator.tech
9
+ Generator version: 7.10.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for Akeyless::VaultAddress
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::VaultAddress do
21
+ let(:instance) { Akeyless::VaultAddress.new }
22
+
23
+ describe 'test an instance of VaultAddress' do
24
+ it 'should create an instance of VaultAddress' do
25
+ # uncomment below to test the instance creation
26
+ #expect(instance).to be_instance_of(Akeyless::VaultAddress)
27
+ end
28
+ end
29
+
30
+ describe 'test attribute "access_id"' do
31
+ it 'should work' do
32
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
33
+ end
34
+ end
35
+
36
+ describe 'test attribute "json"' do
37
+ it 'should work' do
38
+ # assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
39
+ end
40
+ end
41
+
42
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: akeyless
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.0.21
4
+ version: 5.0.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenAPI-Generator
@@ -190,6 +190,8 @@ files:
190
190
  - docs/ConfigHash.md
191
191
  - docs/Configure.md
192
192
  - docs/ConfigureOutput.md
193
+ - docs/ConjurMigration.md
194
+ - docs/ConjurPayload.md
193
195
  - docs/Connect.md
194
196
  - docs/CreateAWSTarget.md
195
197
  - docs/CreateAWSTargetOutput.md
@@ -324,6 +326,7 @@ files:
324
326
  - docs/DecryptPKCS1Output.md
325
327
  - docs/DecryptWithClassicKey.md
326
328
  - docs/DecryptWithClassicKeyOutput.md
329
+ - docs/DefaultAuthMethodSettings.md
327
330
  - docs/DefaultConfigPart.md
328
331
  - docs/DefaultHomePage.md
329
332
  - docs/DeleteAuthMethod.md
@@ -724,6 +727,7 @@ files:
724
727
  - docs/GetTargetDetails.md
725
728
  - docs/GetTargetDetailsOutput.md
726
729
  - docs/GetUserEventStatusOutput.md
730
+ - docs/GithubMetadata.md
727
731
  - docs/GithubTargetDetails.md
728
732
  - docs/GitlabTargetDetails.md
729
733
  - docs/GlobalSignAtlasTargetDetails.md
@@ -743,6 +747,7 @@ files:
743
747
  - docs/GwUpdateRemoteAccessSessionLogsStdout.md
744
748
  - docs/GwUpdateRemoteAccessSessionLogsSumologic.md
745
749
  - docs/GwUpdateRemoteAccessSessionLogsSyslog.md
750
+ - docs/HTTPChallengeInfo.md
746
751
  - docs/HashiMigration.md
747
752
  - docs/HashiPayload.md
748
753
  - docs/HashiVaultTargetDetails.md
@@ -752,6 +757,7 @@ files:
752
757
  - docs/ImportPasswords.md
753
758
  - docs/ImportPasswordsOutput.md
754
759
  - docs/ImporterInfo.md
760
+ - docs/IssuerOverviewInfo.md
755
761
  - docs/Item.md
756
762
  - docs/ItemCustomFieldsDetails.md
757
763
  - docs/ItemGeneralInfo.md
@@ -1223,8 +1229,12 @@ files:
1223
1229
  - docs/UscUpdate.md
1224
1230
  - docs/UscUpdateSecretOutput.md
1225
1231
  - docs/V2Api.md
1232
+ - docs/ValidateCertificateChallenge.md
1233
+ - docs/ValidateCertificateChallengeOutput.md
1226
1234
  - docs/ValidateToken.md
1227
1235
  - docs/ValidateTokenOutput.md
1236
+ - docs/VaultAddress.md
1237
+ - docs/VaultAddressOutput.md
1228
1238
  - docs/VaultlessTokenizerInfo.md
1229
1239
  - docs/VenafiTargetDetails.md
1230
1240
  - docs/VerifyDataWithClassicKey.md
@@ -1381,6 +1391,8 @@ files:
1381
1391
  - lib/akeyless/models/config_hash.rb
1382
1392
  - lib/akeyless/models/configure.rb
1383
1393
  - lib/akeyless/models/configure_output.rb
1394
+ - lib/akeyless/models/conjur_migration.rb
1395
+ - lib/akeyless/models/conjur_payload.rb
1384
1396
  - lib/akeyless/models/connect.rb
1385
1397
  - lib/akeyless/models/create_artifactory_target.rb
1386
1398
  - lib/akeyless/models/create_artifactory_target_output.rb
@@ -1514,6 +1526,7 @@ files:
1514
1526
  - lib/akeyless/models/decrypt_pkcs1_output.rb
1515
1527
  - lib/akeyless/models/decrypt_with_classic_key.rb
1516
1528
  - lib/akeyless/models/decrypt_with_classic_key_output.rb
1529
+ - lib/akeyless/models/default_auth_method_settings.rb
1517
1530
  - lib/akeyless/models/default_config_part.rb
1518
1531
  - lib/akeyless/models/default_home_page.rb
1519
1532
  - lib/akeyless/models/delete_auth_method.rb
@@ -1914,6 +1927,7 @@ files:
1914
1927
  - lib/akeyless/models/get_target_details.rb
1915
1928
  - lib/akeyless/models/get_target_details_output.rb
1916
1929
  - lib/akeyless/models/get_user_event_status_output.rb
1930
+ - lib/akeyless/models/github_metadata.rb
1917
1931
  - lib/akeyless/models/github_target_details.rb
1918
1932
  - lib/akeyless/models/gitlab_target_details.rb
1919
1933
  - lib/akeyless/models/gke_target_details.rb
@@ -1939,10 +1953,12 @@ files:
1939
1953
  - lib/akeyless/models/hashi_vault_target_details.rb
1940
1954
  - lib/akeyless/models/hmac.rb
1941
1955
  - lib/akeyless/models/hmac_output.rb
1956
+ - lib/akeyless/models/http_challenge_info.rb
1942
1957
  - lib/akeyless/models/huawei_access_rules.rb
1943
1958
  - lib/akeyless/models/import_passwords.rb
1944
1959
  - lib/akeyless/models/import_passwords_output.rb
1945
1960
  - lib/akeyless/models/importer_info.rb
1961
+ - lib/akeyless/models/issuer_overview_info.rb
1946
1962
  - lib/akeyless/models/item.rb
1947
1963
  - lib/akeyless/models/item_custom_fields_details.rb
1948
1964
  - lib/akeyless/models/item_general_info.rb
@@ -2413,8 +2429,12 @@ files:
2413
2429
  - lib/akeyless/models/usc_sync_info.rb
2414
2430
  - lib/akeyless/models/usc_update.rb
2415
2431
  - lib/akeyless/models/usc_update_secret_output.rb
2432
+ - lib/akeyless/models/validate_certificate_challenge.rb
2433
+ - lib/akeyless/models/validate_certificate_challenge_output.rb
2416
2434
  - lib/akeyless/models/validate_token.rb
2417
2435
  - lib/akeyless/models/validate_token_output.rb
2436
+ - lib/akeyless/models/vault_address.rb
2437
+ - lib/akeyless/models/vault_address_output.rb
2418
2438
  - lib/akeyless/models/vaultless_tokenizer_info.rb
2419
2439
  - lib/akeyless/models/venafi_target_details.rb
2420
2440
  - lib/akeyless/models/verify_data_with_classic_key.rb
@@ -3058,6 +3078,8 @@ files:
3058
3078
  - spec/models/config_hash_spec.rb
3059
3079
  - spec/models/configure_output_spec.rb
3060
3080
  - spec/models/configure_spec.rb
3081
+ - spec/models/conjur_migration_spec.rb
3082
+ - spec/models/conjur_payload_spec.rb
3061
3083
  - spec/models/connect_spec.rb
3062
3084
  - spec/models/create_artifactory_target_output_spec.rb
3063
3085
  - spec/models/create_artifactory_target_spec.rb
@@ -3191,6 +3213,7 @@ files:
3191
3213
  - spec/models/decrypt_spec.rb
3192
3214
  - spec/models/decrypt_with_classic_key_output_spec.rb
3193
3215
  - spec/models/decrypt_with_classic_key_spec.rb
3216
+ - spec/models/default_auth_method_settings_spec.rb
3194
3217
  - spec/models/default_config_part_spec.rb
3195
3218
  - spec/models/default_home_page_spec.rb
3196
3219
  - spec/models/delete_auth_method_output_spec.rb
@@ -3591,6 +3614,7 @@ files:
3591
3614
  - spec/models/get_target_details_spec.rb
3592
3615
  - spec/models/get_target_spec.rb
3593
3616
  - spec/models/get_user_event_status_output_spec.rb
3617
+ - spec/models/github_metadata_spec.rb
3594
3618
  - spec/models/github_target_details_spec.rb
3595
3619
  - spec/models/gitlab_target_details_spec.rb
3596
3620
  - spec/models/gke_target_details_spec.rb
@@ -3616,10 +3640,12 @@ files:
3616
3640
  - spec/models/hashi_vault_target_details_spec.rb
3617
3641
  - spec/models/hmac_output_spec.rb
3618
3642
  - spec/models/hmac_spec.rb
3643
+ - spec/models/http_challenge_info_spec.rb
3619
3644
  - spec/models/huawei_access_rules_spec.rb
3620
3645
  - spec/models/import_passwords_output_spec.rb
3621
3646
  - spec/models/import_passwords_spec.rb
3622
3647
  - spec/models/importer_info_spec.rb
3648
+ - spec/models/issuer_overview_info_spec.rb
3623
3649
  - spec/models/item_custom_fields_details_spec.rb
3624
3650
  - spec/models/item_general_info_spec.rb
3625
3651
  - spec/models/item_spec.rb
@@ -4090,8 +4116,12 @@ files:
4090
4116
  - spec/models/usc_sync_info_spec.rb
4091
4117
  - spec/models/usc_update_secret_output_spec.rb
4092
4118
  - spec/models/usc_update_spec.rb
4119
+ - spec/models/validate_certificate_challenge_output_spec.rb
4120
+ - spec/models/validate_certificate_challenge_spec.rb
4093
4121
  - spec/models/validate_token_output_spec.rb
4094
4122
  - spec/models/validate_token_spec.rb
4123
+ - spec/models/vault_address_output_spec.rb
4124
+ - spec/models/vault_address_spec.rb
4095
4125
  - spec/models/vaultless_tokenizer_info_spec.rb
4096
4126
  - spec/models/venafi_target_details_spec.rb
4097
4127
  - spec/models/verify_data_with_classic_key_spec.rb
@@ -4268,6 +4298,8 @@ test_files:
4268
4298
  - spec/models/config_hash_spec.rb
4269
4299
  - spec/models/configure_output_spec.rb
4270
4300
  - spec/models/configure_spec.rb
4301
+ - spec/models/conjur_migration_spec.rb
4302
+ - spec/models/conjur_payload_spec.rb
4271
4303
  - spec/models/connect_spec.rb
4272
4304
  - spec/models/create_artifactory_target_output_spec.rb
4273
4305
  - spec/models/create_artifactory_target_spec.rb
@@ -4401,6 +4433,7 @@ test_files:
4401
4433
  - spec/models/decrypt_spec.rb
4402
4434
  - spec/models/decrypt_with_classic_key_output_spec.rb
4403
4435
  - spec/models/decrypt_with_classic_key_spec.rb
4436
+ - spec/models/default_auth_method_settings_spec.rb
4404
4437
  - spec/models/default_config_part_spec.rb
4405
4438
  - spec/models/default_home_page_spec.rb
4406
4439
  - spec/models/delete_auth_method_output_spec.rb
@@ -4801,6 +4834,7 @@ test_files:
4801
4834
  - spec/models/get_target_details_spec.rb
4802
4835
  - spec/models/get_target_spec.rb
4803
4836
  - spec/models/get_user_event_status_output_spec.rb
4837
+ - spec/models/github_metadata_spec.rb
4804
4838
  - spec/models/github_target_details_spec.rb
4805
4839
  - spec/models/gitlab_target_details_spec.rb
4806
4840
  - spec/models/gke_target_details_spec.rb
@@ -4826,10 +4860,12 @@ test_files:
4826
4860
  - spec/models/hashi_vault_target_details_spec.rb
4827
4861
  - spec/models/hmac_output_spec.rb
4828
4862
  - spec/models/hmac_spec.rb
4863
+ - spec/models/http_challenge_info_spec.rb
4829
4864
  - spec/models/huawei_access_rules_spec.rb
4830
4865
  - spec/models/import_passwords_output_spec.rb
4831
4866
  - spec/models/import_passwords_spec.rb
4832
4867
  - spec/models/importer_info_spec.rb
4868
+ - spec/models/issuer_overview_info_spec.rb
4833
4869
  - spec/models/item_custom_fields_details_spec.rb
4834
4870
  - spec/models/item_general_info_spec.rb
4835
4871
  - spec/models/item_spec.rb
@@ -5300,8 +5336,12 @@ test_files:
5300
5336
  - spec/models/usc_sync_info_spec.rb
5301
5337
  - spec/models/usc_update_secret_output_spec.rb
5302
5338
  - spec/models/usc_update_spec.rb
5339
+ - spec/models/validate_certificate_challenge_output_spec.rb
5340
+ - spec/models/validate_certificate_challenge_spec.rb
5303
5341
  - spec/models/validate_token_output_spec.rb
5304
5342
  - spec/models/validate_token_spec.rb
5343
+ - spec/models/vault_address_output_spec.rb
5344
+ - spec/models/vault_address_spec.rb
5305
5345
  - spec/models/vaultless_tokenizer_info_spec.rb
5306
5346
  - spec/models/venafi_target_details_spec.rb
5307
5347
  - spec/models/verify_data_with_classic_key_spec.rb