akeyless 2.15.32 → 2.16.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 +13 -1
- data/docs/Auth.md +5 -1
- data/docs/AuthMethodAccessInfo.md +2 -0
- data/docs/CertAccessRules.md +34 -0
- data/docs/CreateAuthMethodCert.md +48 -0
- data/docs/CreateAuthMethodCertOutput.md +18 -0
- data/docs/CreateAuthMethodLDAP.md +3 -1
- data/docs/CreateAuthMethodOIDC.md +4 -0
- data/docs/CreateClassicKey.md +5 -1
- data/docs/GatewayCreateProducerCustom.md +4 -0
- data/docs/GatewayCreateProducerOracleDb.md +8 -0
- data/docs/GatewayMessageQueueInfo.md +1 -3
- data/docs/GatewayUpdateProducerCustom.md +4 -0
- data/docs/GatewayUpdateProducerOracleDb.md +8 -0
- data/docs/KMIPClient.md +2 -0
- data/docs/KMIPServer.md +4 -0
- data/docs/KmipDeleteServer.md +20 -0
- data/docs/KmipDescribeServerOutput.md +4 -0
- data/docs/KmipMoveServer.md +22 -0
- data/docs/KmipMoveServerOutput.md +20 -0
- data/docs/ListAuthMethods.md +3 -1
- data/docs/ListRoles.md +2 -0
- data/docs/ListTargets.md +2 -0
- data/docs/OIDCAccessRules.md +4 -0
- data/docs/UpdateAuthMethodCert.md +50 -0
- data/docs/UpdateAuthMethodCertOutput.md +18 -0
- data/docs/UpdateAuthMethodLDAP.md +3 -1
- data/docs/UpdateAuthMethodOIDC.md +4 -0
- data/docs/UpdateOutput.md +2 -0
- data/docs/V2Api.md +256 -0
- data/lib/akeyless/api/v2_api.rb +248 -0
- data/lib/akeyless/api_client.rb +3 -1
- data/lib/akeyless/models/auth.rb +22 -2
- data/lib/akeyless/models/auth_method_access_info.rb +10 -1
- data/lib/akeyless/models/cert_access_rules.rb +316 -0
- data/lib/akeyless/models/create_auth_method_cert.rb +401 -0
- data/lib/akeyless/models/create_auth_method_cert_output.rb +219 -0
- data/lib/akeyless/models/create_auth_method_ldap.rb +14 -4
- data/lib/akeyless/models/create_auth_method_oidc.rb +23 -1
- data/lib/akeyless/models/create_classic_key.rb +26 -4
- data/lib/akeyless/models/gateway_create_producer_custom.rb +23 -1
- data/lib/akeyless/models/gateway_create_producer_oracle_db.rb +39 -1
- data/lib/akeyless/models/gateway_message_queue_info.rb +4 -13
- data/lib/akeyless/models/gateway_update_producer_custom.rb +23 -1
- data/lib/akeyless/models/gateway_update_producer_oracle_db.rb +39 -1
- data/lib/akeyless/models/kmip_client.rb +10 -1
- data/lib/akeyless/models/kmip_delete_server.rb +231 -0
- data/lib/akeyless/models/kmip_describe_server_output.rb +19 -1
- data/lib/akeyless/models/kmip_move_server.rb +240 -0
- data/lib/akeyless/models/kmip_move_server_output.rb +228 -0
- data/lib/akeyless/models/kmip_server.rb +19 -1
- data/lib/akeyless/models/list_auth_methods.rb +12 -2
- data/lib/akeyless/models/list_roles.rb +11 -1
- data/lib/akeyless/models/list_targets.rb +11 -1
- data/lib/akeyless/models/oidc_access_rules.rb +23 -1
- data/lib/akeyless/models/update_auth_method_cert.rb +411 -0
- data/lib/akeyless/models/update_auth_method_cert_output.rb +219 -0
- data/lib/akeyless/models/update_auth_method_ldap.rb +14 -4
- data/lib/akeyless/models/update_auth_method_oidc.rb +23 -1
- data/lib/akeyless/models/update_output.rb +10 -1
- data/lib/akeyless/version.rb +1 -1
- data/lib/akeyless.rb +8 -0
- data/spec/models/cert_access_rules_spec.rb +82 -0
- data/spec/models/create_auth_method_cert_output_spec.rb +34 -0
- data/spec/models/create_auth_method_cert_spec.rb +124 -0
- data/spec/models/kmip_delete_server_spec.rb +40 -0
- data/spec/models/kmip_move_server_output_spec.rb +40 -0
- data/spec/models/kmip_move_server_spec.rb +46 -0
- data/spec/models/update_auth_method_cert_output_spec.rb +34 -0
- data/spec/models/update_auth_method_cert_spec.rb +130 -0
- metadata +34 -2
|
@@ -0,0 +1,130 @@
|
|
|
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: 2.0
|
|
7
|
+
Contact: support@akeyless.io
|
|
8
|
+
Generated by: https://openapi-generator.tech
|
|
9
|
+
OpenAPI Generator version: 6.0.0-SNAPSHOT
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'spec_helper'
|
|
14
|
+
require 'json'
|
|
15
|
+
require 'date'
|
|
16
|
+
|
|
17
|
+
# Unit tests for Akeyless::UpdateAuthMethodCert
|
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
|
19
|
+
# Please update as you see appropriate
|
|
20
|
+
describe Akeyless::UpdateAuthMethodCert do
|
|
21
|
+
let(:instance) { Akeyless::UpdateAuthMethodCert.new }
|
|
22
|
+
|
|
23
|
+
describe 'test an instance of UpdateAuthMethodCert' do
|
|
24
|
+
it 'should create an instance of UpdateAuthMethodCert' do
|
|
25
|
+
expect(instance).to be_instance_of(Akeyless::UpdateAuthMethodCert)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
describe 'test attribute "access_expires"' do
|
|
29
|
+
it 'should work' do
|
|
30
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
describe 'test attribute "bound_common_names"' do
|
|
35
|
+
it 'should work' do
|
|
36
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
37
|
+
end
|
|
38
|
+
end
|
|
39
|
+
|
|
40
|
+
describe 'test attribute "bound_dns_sans"' do
|
|
41
|
+
it 'should work' do
|
|
42
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
describe 'test attribute "bound_email_sans"' do
|
|
47
|
+
it 'should work' do
|
|
48
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
49
|
+
end
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
describe 'test attribute "bound_extensions"' do
|
|
53
|
+
it 'should work' do
|
|
54
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
55
|
+
end
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
describe 'test attribute "bound_ips"' do
|
|
59
|
+
it 'should work' do
|
|
60
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
describe 'test attribute "bound_organizational_units"' do
|
|
65
|
+
it 'should work' do
|
|
66
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe 'test attribute "bound_uri_sans"' do
|
|
71
|
+
it 'should work' do
|
|
72
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
describe 'test attribute "certificate_data"' do
|
|
77
|
+
it 'should work' do
|
|
78
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
describe 'test attribute "force_sub_claims"' do
|
|
83
|
+
it 'should work' do
|
|
84
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe 'test attribute "jwt_ttl"' do
|
|
89
|
+
it 'should work' do
|
|
90
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
91
|
+
end
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
describe 'test attribute "name"' do
|
|
95
|
+
it 'should work' do
|
|
96
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
describe 'test attribute "new_name"' do
|
|
101
|
+
it 'should work' do
|
|
102
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
describe 'test attribute "revoked_cert_ids"' do
|
|
107
|
+
it 'should work' do
|
|
108
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
109
|
+
end
|
|
110
|
+
end
|
|
111
|
+
|
|
112
|
+
describe 'test attribute "token"' do
|
|
113
|
+
it 'should work' do
|
|
114
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
describe 'test attribute "uid_token"' do
|
|
119
|
+
it 'should work' do
|
|
120
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
121
|
+
end
|
|
122
|
+
end
|
|
123
|
+
|
|
124
|
+
describe 'test attribute "unique_identifier"' do
|
|
125
|
+
it 'should work' do
|
|
126
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: akeyless
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-04-
|
|
11
|
+
date: 2022-04-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -85,6 +85,7 @@ files:
|
|
|
85
85
|
- docs/AzurePayload.md
|
|
86
86
|
- docs/CFConfigPart.md
|
|
87
87
|
- docs/CacheConfigPart.md
|
|
88
|
+
- docs/CertAccessRules.md
|
|
88
89
|
- docs/CertificateIssueInfo.md
|
|
89
90
|
- docs/ClassicKeyDetailsInfo.md
|
|
90
91
|
- docs/ClassicKeyStatusInfo.md
|
|
@@ -104,6 +105,8 @@ files:
|
|
|
104
105
|
- docs/CreateAuthMethodAWSIAMOutput.md
|
|
105
106
|
- docs/CreateAuthMethodAzureAD.md
|
|
106
107
|
- docs/CreateAuthMethodAzureADOutput.md
|
|
108
|
+
- docs/CreateAuthMethodCert.md
|
|
109
|
+
- docs/CreateAuthMethodCertOutput.md
|
|
107
110
|
- docs/CreateAuthMethodGCP.md
|
|
108
111
|
- docs/CreateAuthMethodGCPOutput.md
|
|
109
112
|
- docs/CreateAuthMethodHuawei.md
|
|
@@ -385,10 +388,13 @@ files:
|
|
|
385
388
|
- docs/KmipCreateClient.md
|
|
386
389
|
- docs/KmipCreateClientOutput.md
|
|
387
390
|
- docs/KmipDeleteClient.md
|
|
391
|
+
- docs/KmipDeleteServer.md
|
|
388
392
|
- docs/KmipDescribeClient.md
|
|
389
393
|
- docs/KmipDescribeServer.md
|
|
390
394
|
- docs/KmipDescribeServerOutput.md
|
|
391
395
|
- docs/KmipListClients.md
|
|
396
|
+
- docs/KmipMoveServer.md
|
|
397
|
+
- docs/KmipMoveServerOutput.md
|
|
392
398
|
- docs/KmipRenewClientCertificate.md
|
|
393
399
|
- docs/KmipRenewClientCertificateOutput.md
|
|
394
400
|
- docs/KmipRenewServerCertificate.md
|
|
@@ -495,6 +501,8 @@ files:
|
|
|
495
501
|
- docs/UpdateAuthMethod.md
|
|
496
502
|
- docs/UpdateAuthMethodAWSIAM.md
|
|
497
503
|
- docs/UpdateAuthMethodAzureAD.md
|
|
504
|
+
- docs/UpdateAuthMethodCert.md
|
|
505
|
+
- docs/UpdateAuthMethodCertOutput.md
|
|
498
506
|
- docs/UpdateAuthMethodGCP.md
|
|
499
507
|
- docs/UpdateAuthMethodK8S.md
|
|
500
508
|
- docs/UpdateAuthMethodK8SOutput.md
|
|
@@ -585,6 +593,7 @@ files:
|
|
|
585
593
|
- lib/akeyless/models/azure_log_analytics_forwarding_config.rb
|
|
586
594
|
- lib/akeyless/models/azure_payload.rb
|
|
587
595
|
- lib/akeyless/models/cache_config_part.rb
|
|
596
|
+
- lib/akeyless/models/cert_access_rules.rb
|
|
588
597
|
- lib/akeyless/models/certificate_issue_info.rb
|
|
589
598
|
- lib/akeyless/models/cf_config_part.rb
|
|
590
599
|
- lib/akeyless/models/classic_key_details_info.rb
|
|
@@ -603,6 +612,8 @@ files:
|
|
|
603
612
|
- lib/akeyless/models/create_auth_method_awsiam_output.rb
|
|
604
613
|
- lib/akeyless/models/create_auth_method_azure_ad.rb
|
|
605
614
|
- lib/akeyless/models/create_auth_method_azure_ad_output.rb
|
|
615
|
+
- lib/akeyless/models/create_auth_method_cert.rb
|
|
616
|
+
- lib/akeyless/models/create_auth_method_cert_output.rb
|
|
606
617
|
- lib/akeyless/models/create_auth_method_gcp.rb
|
|
607
618
|
- lib/akeyless/models/create_auth_method_gcp_output.rb
|
|
608
619
|
- lib/akeyless/models/create_auth_method_huawei.rb
|
|
@@ -884,11 +895,14 @@ files:
|
|
|
884
895
|
- lib/akeyless/models/kmip_create_client.rb
|
|
885
896
|
- lib/akeyless/models/kmip_create_client_output.rb
|
|
886
897
|
- lib/akeyless/models/kmip_delete_client.rb
|
|
898
|
+
- lib/akeyless/models/kmip_delete_server.rb
|
|
887
899
|
- lib/akeyless/models/kmip_describe_client.rb
|
|
888
900
|
- lib/akeyless/models/kmip_describe_server.rb
|
|
889
901
|
- lib/akeyless/models/kmip_describe_server_output.rb
|
|
890
902
|
- lib/akeyless/models/kmip_environment_create_response.rb
|
|
891
903
|
- lib/akeyless/models/kmip_list_clients.rb
|
|
904
|
+
- lib/akeyless/models/kmip_move_server.rb
|
|
905
|
+
- lib/akeyless/models/kmip_move_server_output.rb
|
|
892
906
|
- lib/akeyless/models/kmip_renew_client_certificate.rb
|
|
893
907
|
- lib/akeyless/models/kmip_renew_client_certificate_output.rb
|
|
894
908
|
- lib/akeyless/models/kmip_renew_server_certificate.rb
|
|
@@ -994,6 +1008,8 @@ files:
|
|
|
994
1008
|
- lib/akeyless/models/update_auth_method.rb
|
|
995
1009
|
- lib/akeyless/models/update_auth_method_awsiam.rb
|
|
996
1010
|
- lib/akeyless/models/update_auth_method_azure_ad.rb
|
|
1011
|
+
- lib/akeyless/models/update_auth_method_cert.rb
|
|
1012
|
+
- lib/akeyless/models/update_auth_method_cert_output.rb
|
|
997
1013
|
- lib/akeyless/models/update_auth_method_gcp.rb
|
|
998
1014
|
- lib/akeyless/models/update_auth_method_k8_s.rb
|
|
999
1015
|
- lib/akeyless/models/update_auth_method_k8_s_output.rb
|
|
@@ -1572,6 +1588,7 @@ files:
|
|
|
1572
1588
|
- spec/models/azure_log_analytics_forwarding_config_spec.rb
|
|
1573
1589
|
- spec/models/azure_payload_spec.rb
|
|
1574
1590
|
- spec/models/cache_config_part_spec.rb
|
|
1591
|
+
- spec/models/cert_access_rules_spec.rb
|
|
1575
1592
|
- spec/models/certificate_issue_info_spec.rb
|
|
1576
1593
|
- spec/models/cf_config_part_spec.rb
|
|
1577
1594
|
- spec/models/classic_key_details_info_spec.rb
|
|
@@ -1589,6 +1606,8 @@ files:
|
|
|
1589
1606
|
- spec/models/create_auth_method_awsiam_spec.rb
|
|
1590
1607
|
- spec/models/create_auth_method_azure_ad_output_spec.rb
|
|
1591
1608
|
- spec/models/create_auth_method_azure_ad_spec.rb
|
|
1609
|
+
- spec/models/create_auth_method_cert_output_spec.rb
|
|
1610
|
+
- spec/models/create_auth_method_cert_spec.rb
|
|
1592
1611
|
- spec/models/create_auth_method_gcp_output_spec.rb
|
|
1593
1612
|
- spec/models/create_auth_method_gcp_spec.rb
|
|
1594
1613
|
- spec/models/create_auth_method_huawei_output_spec.rb
|
|
@@ -1871,11 +1890,14 @@ files:
|
|
|
1871
1890
|
- spec/models/kmip_create_client_output_spec.rb
|
|
1872
1891
|
- spec/models/kmip_create_client_spec.rb
|
|
1873
1892
|
- spec/models/kmip_delete_client_spec.rb
|
|
1893
|
+
- spec/models/kmip_delete_server_spec.rb
|
|
1874
1894
|
- spec/models/kmip_describe_client_spec.rb
|
|
1875
1895
|
- spec/models/kmip_describe_server_output_spec.rb
|
|
1876
1896
|
- spec/models/kmip_describe_server_spec.rb
|
|
1877
1897
|
- spec/models/kmip_environment_create_response_spec.rb
|
|
1878
1898
|
- spec/models/kmip_list_clients_spec.rb
|
|
1899
|
+
- spec/models/kmip_move_server_output_spec.rb
|
|
1900
|
+
- spec/models/kmip_move_server_spec.rb
|
|
1879
1901
|
- spec/models/kmip_renew_client_certificate_output_spec.rb
|
|
1880
1902
|
- spec/models/kmip_renew_client_certificate_spec.rb
|
|
1881
1903
|
- spec/models/kmip_renew_server_certificate_output_spec.rb
|
|
@@ -1979,6 +2001,8 @@ files:
|
|
|
1979
2001
|
- spec/models/update_assoc_spec.rb
|
|
1980
2002
|
- spec/models/update_auth_method_awsiam_spec.rb
|
|
1981
2003
|
- spec/models/update_auth_method_azure_ad_spec.rb
|
|
2004
|
+
- spec/models/update_auth_method_cert_output_spec.rb
|
|
2005
|
+
- spec/models/update_auth_method_cert_spec.rb
|
|
1982
2006
|
- spec/models/update_auth_method_gcp_spec.rb
|
|
1983
2007
|
- spec/models/update_auth_method_k8_s_output_spec.rb
|
|
1984
2008
|
- spec/models/update_auth_method_k8_s_spec.rb
|
|
@@ -2132,6 +2156,7 @@ test_files:
|
|
|
2132
2156
|
- spec/models/auth_method_access_info_spec.rb
|
|
2133
2157
|
- spec/models/delete_role_rule_spec.rb
|
|
2134
2158
|
- spec/models/gateway_update_producer_native_k8_s_spec.rb
|
|
2159
|
+
- spec/models/update_auth_method_cert_spec.rb
|
|
2135
2160
|
- spec/models/list_targets_output_spec.rb
|
|
2136
2161
|
- spec/models/k8_s_migration_spec.rb
|
|
2137
2162
|
- spec/models/encrypt_spec.rb
|
|
@@ -2310,6 +2335,7 @@ test_files:
|
|
|
2310
2335
|
- spec/models/classic_key_status_info_spec.rb
|
|
2311
2336
|
- spec/models/uid_generate_token_output_spec.rb
|
|
2312
2337
|
- spec/models/gateway_update_producer_my_sql_output_spec.rb
|
|
2338
|
+
- spec/models/update_auth_method_cert_output_spec.rb
|
|
2313
2339
|
- spec/models/update_aws_target_spec.rb
|
|
2314
2340
|
- spec/models/path_rule_spec.rb
|
|
2315
2341
|
- spec/models/get_rsa_public_output_spec.rb
|
|
@@ -2342,6 +2368,7 @@ test_files:
|
|
|
2342
2368
|
- spec/models/gateway_create_producer_github_spec.rb
|
|
2343
2369
|
- spec/models/list_roles_output_spec.rb
|
|
2344
2370
|
- spec/models/update_web_target_details_spec.rb
|
|
2371
|
+
- spec/models/kmip_move_server_spec.rb
|
|
2345
2372
|
- spec/models/o_auth2_access_rules_spec.rb
|
|
2346
2373
|
- spec/models/gateway_create_producer_mongo_spec.rb
|
|
2347
2374
|
- spec/models/k8_s_auths_config_last_change_spec.rb
|
|
@@ -2380,9 +2407,11 @@ test_files:
|
|
|
2380
2407
|
- spec/models/kmip_client_spec.rb
|
|
2381
2408
|
- spec/models/gateway_update_producer_native_k8_s_output_spec.rb
|
|
2382
2409
|
- spec/models/get_auth_method_spec.rb
|
|
2410
|
+
- spec/models/create_auth_method_cert_output_spec.rb
|
|
2383
2411
|
- spec/models/rotators_config_part_spec.rb
|
|
2384
2412
|
- spec/models/update_db_target_spec.rb
|
|
2385
2413
|
- spec/models/gateway_update_producer_certificate_automation_output_spec.rb
|
|
2414
|
+
- spec/models/kmip_delete_server_spec.rb
|
|
2386
2415
|
- spec/models/static_creds_auth_spec.rb
|
|
2387
2416
|
- spec/models/rotated_secret_details_info_spec.rb
|
|
2388
2417
|
- spec/models/configure_output_spec.rb
|
|
@@ -2400,6 +2429,7 @@ test_files:
|
|
|
2400
2429
|
- spec/models/create_web_target_spec.rb
|
|
2401
2430
|
- spec/models/update_aws_target_details_spec.rb
|
|
2402
2431
|
- spec/models/create_auth_method_saml_output_spec.rb
|
|
2432
|
+
- spec/models/create_auth_method_cert_spec.rb
|
|
2403
2433
|
- spec/models/reverse_rbac_client_spec.rb
|
|
2404
2434
|
- spec/models/create_azure_target_output_spec.rb
|
|
2405
2435
|
- spec/models/gateway_create_producer_eks_output_spec.rb
|
|
@@ -2412,6 +2442,7 @@ test_files:
|
|
|
2412
2442
|
- spec/models/gateway_update_producer_artifactory_spec.rb
|
|
2413
2443
|
- spec/models/gateway_update_producer_gke_output_spec.rb
|
|
2414
2444
|
- spec/models/create_azure_target_spec.rb
|
|
2445
|
+
- spec/models/kmip_move_server_output_spec.rb
|
|
2415
2446
|
- spec/models/kmip_create_client_spec.rb
|
|
2416
2447
|
- spec/models/gateway_update_producer_dockerhub_output_spec.rb
|
|
2417
2448
|
- spec/models/gateway_migration_sync_output_spec.rb
|
|
@@ -2456,6 +2487,7 @@ test_files:
|
|
|
2456
2487
|
- spec/models/uid_create_child_token_spec.rb
|
|
2457
2488
|
- spec/models/k8_s_auths_config_part_spec.rb
|
|
2458
2489
|
- spec/models/gateway_create_producer_aws_output_spec.rb
|
|
2490
|
+
- spec/models/cert_access_rules_spec.rb
|
|
2459
2491
|
- spec/models/gateway_update_producer_oracle_db_spec.rb
|
|
2460
2492
|
- spec/models/update_target_output_spec.rb
|
|
2461
2493
|
- spec/models/delete_role_rule_output_spec.rb
|