akeyless 0.0.2.pre.rc2 → 2.16.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (102) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -9
  3. data/akeyless.gemspec +1 -1
  4. data/docs/Auth.md +5 -1
  5. data/docs/AuthMethodAccessInfo.md +2 -0
  6. data/docs/CertAccessRules.md +34 -0
  7. data/docs/ConfigHash.md +2 -0
  8. data/docs/CreateAuthMethodCert.md +48 -0
  9. data/docs/CreateAuthMethodCertOutput.md +18 -0
  10. data/docs/CreateAuthMethodLDAP.md +3 -1
  11. data/docs/CreateAuthMethodOIDC.md +4 -0
  12. data/docs/CreateClassicKey.md +5 -1
  13. data/docs/DSProducerDetails.md +4 -0
  14. data/docs/GatewayCreateProducerCustom.md +4 -0
  15. data/docs/GatewayCreateProducerHanaDb.md +54 -0
  16. data/docs/GatewayCreateProducerHanaDbOutput.md +18 -0
  17. data/docs/GatewayCreateProducerMongo.md +1 -1
  18. data/docs/GatewayCreateProducerOracleDb.md +8 -0
  19. data/docs/GatewayMessageQueueInfo.md +1 -3
  20. data/docs/GatewayUpdateProducerCustom.md +4 -0
  21. data/docs/GatewayUpdateProducerHanaDb.md +56 -0
  22. data/docs/GatewayUpdateProducerHanaDbOutput.md +18 -0
  23. data/docs/GatewayUpdateProducerMongo.md +1 -1
  24. data/docs/GatewayUpdateProducerOracleDb.md +8 -0
  25. data/docs/KMIPClient.md +2 -0
  26. data/docs/KMIPConfigPart.md +5 -1
  27. data/docs/KMIPServer.md +30 -0
  28. data/docs/KmipDeleteServer.md +20 -0
  29. data/docs/KmipDescribeServerOutput.md +4 -0
  30. data/docs/KmipMoveServer.md +22 -0
  31. data/docs/KmipMoveServerOutput.md +20 -0
  32. data/docs/ListAuthMethods.md +4 -0
  33. data/docs/ListRoles.md +2 -0
  34. data/docs/ListTargets.md +2 -0
  35. data/docs/OIDCAccessRules.md +4 -0
  36. data/docs/TargetItemAssociation.md +2 -0
  37. data/docs/UpdateAuthMethodCert.md +50 -0
  38. data/docs/UpdateAuthMethodCertOutput.md +18 -0
  39. data/docs/UpdateAuthMethodLDAP.md +3 -1
  40. data/docs/UpdateAuthMethodOIDC.md +4 -0
  41. data/docs/UpdateDBTarget.md +4 -0
  42. data/docs/UpdateOutput.md +2 -0
  43. data/docs/V2Api.md +319 -0
  44. data/git_push.sh +0 -0
  45. data/lib/akeyless/api/v2_api.rb +312 -0
  46. data/lib/akeyless/api_client.rb +3 -7
  47. data/lib/akeyless/configuration.rb +2 -1
  48. data/lib/akeyless/models/auth.rb +22 -2
  49. data/lib/akeyless/models/auth_method_access_info.rb +10 -1
  50. data/lib/akeyless/models/cert_access_rules.rb +316 -0
  51. data/lib/akeyless/models/config_hash.rb +10 -1
  52. data/lib/akeyless/models/create_auth_method_cert.rb +401 -0
  53. data/lib/akeyless/models/create_auth_method_cert_output.rb +219 -0
  54. data/lib/akeyless/models/create_auth_method_ldap.rb +14 -4
  55. data/lib/akeyless/models/create_auth_method_oidc.rb +23 -1
  56. data/lib/akeyless/models/create_classic_key.rb +26 -4
  57. data/lib/akeyless/models/ds_producer_details.rb +19 -1
  58. data/lib/akeyless/models/gateway_create_producer_custom.rb +23 -1
  59. data/lib/akeyless/models/gateway_create_producer_hana_db.rb +411 -0
  60. data/lib/akeyless/models/gateway_create_producer_hana_db_output.rb +219 -0
  61. data/lib/akeyless/models/gateway_create_producer_mongo.rb +0 -2
  62. data/lib/akeyless/models/gateway_create_producer_oracle_db.rb +39 -1
  63. data/lib/akeyless/models/gateway_message_queue_info.rb +4 -13
  64. data/lib/akeyless/models/gateway_update_producer_custom.rb +23 -1
  65. data/lib/akeyless/models/gateway_update_producer_hana_db.rb +421 -0
  66. data/lib/akeyless/models/gateway_update_producer_hana_db_output.rb +219 -0
  67. data/lib/akeyless/models/gateway_update_producer_mongo.rb +0 -2
  68. data/lib/akeyless/models/gateway_update_producer_oracle_db.rb +39 -1
  69. data/lib/akeyless/models/kmip_client.rb +10 -1
  70. data/lib/akeyless/models/kmip_config_part.rb +23 -1
  71. data/lib/akeyless/models/kmip_delete_server.rb +231 -0
  72. data/lib/akeyless/models/kmip_describe_server_output.rb +19 -1
  73. data/lib/akeyless/models/kmip_move_server.rb +240 -0
  74. data/lib/akeyless/models/kmip_move_server_output.rb +228 -0
  75. data/lib/akeyless/models/kmip_server.rb +277 -0
  76. data/lib/akeyless/models/list_auth_methods.rb +23 -1
  77. data/lib/akeyless/models/list_roles.rb +11 -1
  78. data/lib/akeyless/models/list_targets.rb +11 -1
  79. data/lib/akeyless/models/oidc_access_rules.rb +23 -1
  80. data/lib/akeyless/models/target_item_association.rb +10 -1
  81. data/lib/akeyless/models/update_auth_method_cert.rb +411 -0
  82. data/lib/akeyless/models/update_auth_method_cert_output.rb +219 -0
  83. data/lib/akeyless/models/update_auth_method_ldap.rb +14 -4
  84. data/lib/akeyless/models/update_auth_method_oidc.rb +23 -1
  85. data/lib/akeyless/models/update_db_target.rb +21 -1
  86. data/lib/akeyless/models/update_output.rb +10 -1
  87. data/lib/akeyless/version.rb +1 -1
  88. data/lib/akeyless.rb +13 -0
  89. data/spec/models/cert_access_rules_spec.rb +82 -0
  90. data/spec/models/create_auth_method_cert_output_spec.rb +34 -0
  91. data/spec/models/create_auth_method_cert_spec.rb +124 -0
  92. data/spec/models/gateway_create_producer_hana_db_output_spec.rb +34 -0
  93. data/spec/models/gateway_create_producer_hana_db_spec.rb +142 -0
  94. data/spec/models/gateway_update_producer_hana_db_output_spec.rb +34 -0
  95. data/spec/models/gateway_update_producer_hana_db_spec.rb +148 -0
  96. data/spec/models/kmip_delete_server_spec.rb +40 -0
  97. data/spec/models/kmip_move_server_output_spec.rb +40 -0
  98. data/spec/models/kmip_move_server_spec.rb +46 -0
  99. data/spec/models/kmip_server_spec.rb +58 -0
  100. data/spec/models/update_auth_method_cert_output_spec.rb +34 -0
  101. data/spec/models/update_auth_method_cert_spec.rb +130 -0
  102. metadata +508 -456
@@ -0,0 +1,34 @@
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::GatewayUpdateProducerHanaDbOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayUpdateProducerHanaDbOutput do
21
+ let(:instance) { Akeyless::GatewayUpdateProducerHanaDbOutput.new }
22
+
23
+ describe 'test an instance of GatewayUpdateProducerHanaDbOutput' do
24
+ it 'should create an instance of GatewayUpdateProducerHanaDbOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayUpdateProducerHanaDbOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "producer_details"' 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
+ end
@@ -0,0 +1,148 @@
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::GatewayUpdateProducerHanaDb
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::GatewayUpdateProducerHanaDb do
21
+ let(:instance) { Akeyless::GatewayUpdateProducerHanaDb.new }
22
+
23
+ describe 'test an instance of GatewayUpdateProducerHanaDb' do
24
+ it 'should create an instance of GatewayUpdateProducerHanaDb' do
25
+ expect(instance).to be_instance_of(Akeyless::GatewayUpdateProducerHanaDb)
26
+ end
27
+ end
28
+ describe 'test attribute "hana_dbname"' 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 "hanadb_create_statements"' 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 "hanadb_host"' 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 "hanadb_password"' 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 "hanadb_port"' 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 "hanadb_revocation_statements"' 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 "hanadb_username"' 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 "name"' 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 "new_name"' 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 "producer_encryption_key_name"' 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 "secure_access_bastion_issuer"' 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 "secure_access_db_schema"' 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 "secure_access_enable"' 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 "secure_access_host"' 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 "secure_access_web"' 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 "tags"' 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 "target_name"' 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
+ describe 'test attribute "token"' do
131
+ it 'should work' do
132
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
133
+ end
134
+ end
135
+
136
+ describe 'test attribute "uid_token"' do
137
+ it 'should work' do
138
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
139
+ end
140
+ end
141
+
142
+ describe 'test attribute "user_ttl"' do
143
+ it 'should work' do
144
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
145
+ end
146
+ end
147
+
148
+ end
@@ -0,0 +1,40 @@
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::KmipDeleteServer
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipDeleteServer do
21
+ let(:instance) { Akeyless::KmipDeleteServer.new }
22
+
23
+ describe 'test an instance of KmipDeleteServer' do
24
+ it 'should create an instance of KmipDeleteServer' do
25
+ expect(instance).to be_instance_of(Akeyless::KmipDeleteServer)
26
+ end
27
+ end
28
+ describe 'test attribute "token"' 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 "uid_token"' 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
+ end
@@ -0,0 +1,40 @@
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::KmipMoveServerOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipMoveServerOutput do
21
+ let(:instance) { Akeyless::KmipMoveServerOutput.new }
22
+
23
+ describe 'test an instance of KmipMoveServerOutput' do
24
+ it 'should create an instance of KmipMoveServerOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::KmipMoveServerOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "new_root"' 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 "old_root"' 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
+ end
@@ -0,0 +1,46 @@
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::KmipMoveServer
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KmipMoveServer do
21
+ let(:instance) { Akeyless::KmipMoveServer.new }
22
+
23
+ describe 'test an instance of KmipMoveServer' do
24
+ it 'should create an instance of KmipMoveServer' do
25
+ expect(instance).to be_instance_of(Akeyless::KmipMoveServer)
26
+ end
27
+ end
28
+ describe 'test attribute "new_root"' 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 "token"' 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 "uid_token"' 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
+ end
@@ -0,0 +1,58 @@
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::KMIPServer
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::KMIPServer do
21
+ let(:instance) { Akeyless::KMIPServer.new }
22
+
23
+ describe 'test an instance of KMIPServer' do
24
+ it 'should create an instance of KMIPServer' do
25
+ expect(instance).to be_instance_of(Akeyless::KMIPServer)
26
+ end
27
+ end
28
+ describe 'test attribute "active"' 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 "ca"' 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 "certificate"' 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 "hostname"' 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 "root"' 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
+ end
@@ -0,0 +1,34 @@
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::UpdateAuthMethodCertOutput
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe Akeyless::UpdateAuthMethodCertOutput do
21
+ let(:instance) { Akeyless::UpdateAuthMethodCertOutput.new }
22
+
23
+ describe 'test an instance of UpdateAuthMethodCertOutput' do
24
+ it 'should create an instance of UpdateAuthMethodCertOutput' do
25
+ expect(instance).to be_instance_of(Akeyless::UpdateAuthMethodCertOutput)
26
+ end
27
+ end
28
+ describe 'test attribute "access_id"' 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
+ end
@@ -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