ory-hydra-client 1.9.0.alpha2 → 1.10.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +9 -5
  3. data/docs/AcceptConsentRequest.md +18 -17
  4. data/docs/AcceptLoginRequest.md +18 -17
  5. data/docs/AdminApi.md +883 -304
  6. data/docs/CompletedRequest.md +8 -7
  7. data/docs/ConsentRequest.md +30 -29
  8. data/docs/ConsentRequestSession.md +10 -9
  9. data/docs/ContainerWaitOKBodyError.md +8 -7
  10. data/docs/FlushInactiveOAuth2TokensRequest.md +8 -7
  11. data/docs/GenericError.md +14 -13
  12. data/docs/HealthNotReadyStatus.md +8 -7
  13. data/docs/HealthStatus.md +8 -7
  14. data/docs/JSONWebKey.md +40 -39
  15. data/docs/JSONWebKeySet.md +8 -7
  16. data/docs/JsonWebKeySetGeneratorRequest.md +12 -11
  17. data/docs/LoginRequest.md +24 -23
  18. data/docs/LogoutRequest.md +16 -13
  19. data/docs/OAuth2Client.md +72 -71
  20. data/docs/OAuth2TokenIntrospection.md +34 -31
  21. data/docs/Oauth2TokenResponse.md +18 -17
  22. data/docs/OpenIDConnectContext.md +16 -15
  23. data/docs/PatchDocument.md +24 -0
  24. data/docs/PluginConfig.md +38 -37
  25. data/docs/PluginConfigArgs.md +14 -13
  26. data/docs/PluginConfigInterface.md +10 -9
  27. data/docs/PluginConfigLinux.md +12 -11
  28. data/docs/PluginConfigNetwork.md +8 -7
  29. data/docs/PluginConfigRootfs.md +10 -9
  30. data/docs/PluginConfigUser.md +10 -9
  31. data/docs/PluginDevice.md +14 -13
  32. data/docs/PluginEnv.md +14 -13
  33. data/docs/PluginInterfaceType.md +12 -11
  34. data/docs/PluginMount.md +20 -19
  35. data/docs/PluginSettings.md +14 -13
  36. data/docs/PreviousConsentSession.md +20 -19
  37. data/docs/PublicApi.md +201 -60
  38. data/docs/RejectRequest.md +16 -15
  39. data/docs/RequestWasHandledResponse.md +18 -0
  40. data/docs/UserinfoResponse.md +44 -43
  41. data/docs/Version.md +8 -7
  42. data/docs/Volume.md +34 -0
  43. data/docs/VolumeUsageData.md +10 -9
  44. data/docs/WellKnown.md +58 -55
  45. data/lib/ory-hydra-client.rb +5 -2
  46. data/lib/ory-hydra-client/api/admin_api.rb +197 -96
  47. data/lib/ory-hydra-client/api/public_api.rb +34 -26
  48. data/lib/ory-hydra-client/api_client.rb +51 -49
  49. data/lib/ory-hydra-client/api_error.rb +2 -2
  50. data/lib/ory-hydra-client/configuration.rb +40 -11
  51. data/lib/ory-hydra-client/models/accept_consent_request.rb +21 -9
  52. data/lib/ory-hydra-client/models/accept_login_request.rb +20 -8
  53. data/lib/ory-hydra-client/models/completed_request.rb +20 -8
  54. data/lib/ory-hydra-client/models/consent_request.rb +20 -8
  55. data/lib/ory-hydra-client/models/consent_request_session.rb +20 -8
  56. data/lib/ory-hydra-client/models/container_wait_ok_body_error.rb +20 -8
  57. data/lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb +21 -9
  58. data/lib/ory-hydra-client/models/generic_error.rb +20 -8
  59. data/lib/ory-hydra-client/models/health_not_ready_status.rb +20 -8
  60. data/lib/ory-hydra-client/models/health_status.rb +20 -8
  61. data/lib/ory-hydra-client/models/json_web_key.rb +20 -8
  62. data/lib/ory-hydra-client/models/json_web_key_set.rb +20 -8
  63. data/lib/ory-hydra-client/models/json_web_key_set_generator_request.rb +20 -8
  64. data/lib/ory-hydra-client/models/login_request.rb +20 -8
  65. data/lib/ory-hydra-client/models/logout_request.rb +31 -9
  66. data/lib/ory-hydra-client/models/o_auth2_client.rb +22 -10
  67. data/lib/ory-hydra-client/models/o_auth2_token_introspection.rb +32 -10
  68. data/lib/ory-hydra-client/models/oauth2_token_response.rb +20 -8
  69. data/lib/ory-hydra-client/models/open_id_connect_context.rb +20 -8
  70. data/lib/ory-hydra-client/models/patch_document.rb +260 -0
  71. data/lib/ory-hydra-client/models/plugin_config.rb +20 -8
  72. data/lib/ory-hydra-client/models/plugin_config_args.rb +20 -8
  73. data/lib/ory-hydra-client/models/plugin_config_interface.rb +20 -8
  74. data/lib/ory-hydra-client/models/plugin_config_linux.rb +20 -8
  75. data/lib/ory-hydra-client/models/plugin_config_network.rb +20 -8
  76. data/lib/ory-hydra-client/models/plugin_config_rootfs.rb +20 -8
  77. data/lib/ory-hydra-client/models/plugin_config_user.rb +20 -8
  78. data/lib/ory-hydra-client/models/plugin_device.rb +20 -8
  79. data/lib/ory-hydra-client/models/plugin_env.rb +20 -8
  80. data/lib/ory-hydra-client/models/plugin_interface_type.rb +20 -8
  81. data/lib/ory-hydra-client/models/plugin_mount.rb +20 -8
  82. data/lib/ory-hydra-client/models/plugin_settings.rb +20 -8
  83. data/lib/ory-hydra-client/models/previous_consent_session.rb +21 -9
  84. data/lib/ory-hydra-client/models/reject_request.rb +20 -8
  85. data/lib/ory-hydra-client/models/request_was_handled_response.rb +224 -0
  86. data/lib/ory-hydra-client/models/userinfo_response.rb +20 -8
  87. data/lib/ory-hydra-client/models/version.rb +20 -8
  88. data/lib/ory-hydra-client/models/volume.rb +333 -0
  89. data/lib/ory-hydra-client/models/volume_usage_data.rb +20 -8
  90. data/lib/ory-hydra-client/models/well_known.rb +33 -9
  91. data/lib/ory-hydra-client/version.rb +3 -3
  92. data/ory-hydra-client.gemspec +4 -5
  93. data/spec/api_client_spec.rb +3 -3
  94. data/spec/configuration_spec.rb +2 -2
  95. data/spec/models/patch_document_spec.rb +52 -0
  96. data/spec/models/request_was_handled_response_spec.rb +34 -0
  97. data/spec/models/volume_spec.rb +82 -0
  98. data/spec/spec_helper.rb +2 -2
  99. metadata +45 -53
@@ -3,13 +3,13 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: 1.9.0.alpha2
6
+ The version of the OpenAPI document: 1.10.2
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.3.1
9
+ OpenAPI Generator version: 5.1.0
10
10
 
11
11
  =end
12
12
 
13
13
  module OryHydraClient
14
- VERSION = '1.9.0.alpha2'
14
+ VERSION = '1.10.2'
15
15
  end
@@ -5,10 +5,10 @@
5
5
 
6
6
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
7
7
 
8
- The version of the OpenAPI document: v1.9.0-alpha.2
8
+ The version of the OpenAPI document: v1.10.2
9
9
 
10
10
  Generated by: https://openapi-generator.tech
11
- OpenAPI Generator version: 4.3.1
11
+ OpenAPI Generator version: 5.1.0
12
12
 
13
13
  =end
14
14
 
@@ -24,11 +24,10 @@ Gem::Specification.new do |s|
24
24
  s.homepage = "https://www.ory.sh"
25
25
  s.summary = "ORY Hydra Ruby Gem"
26
26
  s.description = "Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here."
27
- s.license = 'Apache-2.0'
28
- s.required_ruby_version = ">= 1.9"
27
+ s.license = "Apache-2.0"
28
+ s.required_ruby_version = ">= 2.4"
29
29
 
30
30
  s.add_runtime_dependency 'typhoeus', '~> 1.0', '>= 1.0.1'
31
- s.add_runtime_dependency 'json', '~> 2.1', '>= 2.1.0'
32
31
 
33
32
  s.add_development_dependency 'rspec', '~> 3.6', '>= 3.6.0'
34
33
 
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: v0.0.0-alpha.1
6
+ The version of the OpenAPI document: v1.10.2
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.2
9
+ OpenAPI Generator version: 5.1.0
10
10
 
11
11
  =end
12
12
 
@@ -156,7 +156,7 @@ describe OryHydraClient::ApiClient do
156
156
  end
157
157
 
158
158
  it 'fails for invalid collection format' do
159
- expect{api_client.build_collection_param(param, :INVALID)}.to raise_error(RuntimeError, 'unknown collection format: :INVALID')
159
+ expect { api_client.build_collection_param(param, :INVALID) }.to raise_error(RuntimeError, 'unknown collection format: :INVALID')
160
160
  end
161
161
  end
162
162
 
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: v0.0.0-alpha.1
6
+ The version of the OpenAPI document: v1.10.2
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.2
9
+ OpenAPI Generator version: 5.1.0
10
10
 
11
11
  =end
12
12
 
@@ -0,0 +1,52 @@
1
+ =begin
2
+ #ORY Hydra
3
+
4
+ #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
+
6
+ The version of the OpenAPI document: v1.10.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::PatchDocument
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::PatchDocument do
21
+ let(:instance) { OryHydraClient::PatchDocument.new }
22
+
23
+ describe 'test an instance of PatchDocument' do
24
+ it 'should create an instance of PatchDocument' do
25
+ expect(instance).to be_instance_of(OryHydraClient::PatchDocument)
26
+ end
27
+ end
28
+ describe 'test attribute "from"' 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 "op"' 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 "path"' 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 "value"' 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
+ end
@@ -0,0 +1,34 @@
1
+ =begin
2
+ #ORY Hydra
3
+
4
+ #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
+
6
+ The version of the OpenAPI document: v1.10.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::RequestWasHandledResponse
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::RequestWasHandledResponse do
21
+ let(:instance) { OryHydraClient::RequestWasHandledResponse.new }
22
+
23
+ describe 'test an instance of RequestWasHandledResponse' do
24
+ it 'should create an instance of RequestWasHandledResponse' do
25
+ expect(instance).to be_instance_of(OryHydraClient::RequestWasHandledResponse)
26
+ end
27
+ end
28
+ describe 'test attribute "redirect_to"' 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,82 @@
1
+ =begin
2
+ #ORY Hydra
3
+
4
+ #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
+
6
+ The version of the OpenAPI document: v1.10.2
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 5.1.0
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::Volume
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe OryHydraClient::Volume do
21
+ let(:instance) { OryHydraClient::Volume.new }
22
+
23
+ describe 'test an instance of Volume' do
24
+ it 'should create an instance of Volume' do
25
+ expect(instance).to be_instance_of(OryHydraClient::Volume)
26
+ end
27
+ end
28
+ describe 'test attribute "created_at"' 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 "driver"' 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 "labels"' 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 "mountpoint"' 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 "name"' 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 "options"' 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 "scope"' 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 "status"' 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 "usage_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
+ end
data/spec/spec_helper.rb CHANGED
@@ -3,10 +3,10 @@
3
3
 
4
4
  #Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.
5
5
 
6
- The version of the OpenAPI document: v0.0.0-alpha.1
6
+ The version of the OpenAPI document: v1.10.2
7
7
 
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 4.2.2
9
+ OpenAPI Generator version: 5.1.0
10
10
 
11
11
  =end
12
12
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ory-hydra-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0.alpha2
4
+ version: 1.10.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ORY GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-29 00:00:00.000000000 Z
11
+ date: 2021-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -30,26 +30,6 @@ dependencies:
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
32
  version: 1.0.1
33
- - !ruby/object:Gem::Dependency
34
- name: json
35
- requirement: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - "~>"
38
- - !ruby/object:Gem::Version
39
- version: '2.1'
40
- - - ">="
41
- - !ruby/object:Gem::Version
42
- version: 2.1.0
43
- type: :runtime
44
- prerelease: false
45
- version_requirements: !ruby/object:Gem::Requirement
46
- requirements:
47
- - - "~>"
48
- - !ruby/object:Gem::Version
49
- version: '2.1'
50
- - - ">="
51
- - !ruby/object:Gem::Version
52
- version: 2.1.0
53
33
  - !ruby/object:Gem::Dependency
54
34
  name: rspec
55
35
  requirement: !ruby/object:Gem::Requirement
@@ -102,6 +82,7 @@ files:
102
82
  - docs/Oauth2TokenResponse.md
103
83
  - docs/OauthTokenResponse.md
104
84
  - docs/OpenIDConnectContext.md
85
+ - docs/PatchDocument.md
105
86
  - docs/PluginConfig.md
106
87
  - docs/PluginConfigArgs.md
107
88
  - docs/PluginConfigInterface.md
@@ -117,8 +98,10 @@ files:
117
98
  - docs/PreviousConsentSession.md
118
99
  - docs/PublicApi.md
119
100
  - docs/RejectRequest.md
101
+ - docs/RequestWasHandledResponse.md
120
102
  - docs/UserinfoResponse.md
121
103
  - docs/Version.md
104
+ - docs/Volume.md
122
105
  - docs/VolumeUsageData.md
123
106
  - docs/WellKnown.md
124
107
  - lib/ory-hydra-client.rb
@@ -147,6 +130,7 @@ files:
147
130
  - lib/ory-hydra-client/models/oauth2_token_response.rb
148
131
  - lib/ory-hydra-client/models/oauth_token_response.rb
149
132
  - lib/ory-hydra-client/models/open_id_connect_context.rb
133
+ - lib/ory-hydra-client/models/patch_document.rb
150
134
  - lib/ory-hydra-client/models/plugin_config.rb
151
135
  - lib/ory-hydra-client/models/plugin_config_args.rb
152
136
  - lib/ory-hydra-client/models/plugin_config_interface.rb
@@ -161,8 +145,10 @@ files:
161
145
  - lib/ory-hydra-client/models/plugin_settings.rb
162
146
  - lib/ory-hydra-client/models/previous_consent_session.rb
163
147
  - lib/ory-hydra-client/models/reject_request.rb
148
+ - lib/ory-hydra-client/models/request_was_handled_response.rb
164
149
  - lib/ory-hydra-client/models/userinfo_response.rb
165
150
  - lib/ory-hydra-client/models/version.rb
151
+ - lib/ory-hydra-client/models/volume.rb
166
152
  - lib/ory-hydra-client/models/volume_usage_data.rb
167
153
  - lib/ory-hydra-client/models/well_known.rb
168
154
  - lib/ory-hydra-client/version.rb
@@ -191,6 +177,7 @@ files:
191
177
  - spec/models/oauth2_token_response_spec.rb
192
178
  - spec/models/oauth_token_response_spec.rb
193
179
  - spec/models/open_id_connect_context_spec.rb
180
+ - spec/models/patch_document_spec.rb
194
181
  - spec/models/plugin_config_args_spec.rb
195
182
  - spec/models/plugin_config_interface_spec.rb
196
183
  - spec/models/plugin_config_linux_spec.rb
@@ -205,8 +192,10 @@ files:
205
192
  - spec/models/plugin_settings_spec.rb
206
193
  - spec/models/previous_consent_session_spec.rb
207
194
  - spec/models/reject_request_spec.rb
195
+ - spec/models/request_was_handled_response_spec.rb
208
196
  - spec/models/userinfo_response_spec.rb
209
197
  - spec/models/version_spec.rb
198
+ - spec/models/volume_spec.rb
210
199
  - spec/models/volume_usage_data_spec.rb
211
200
  - spec/models/well_known_spec.rb
212
201
  - spec/spec_helper.rb
@@ -222,12 +211,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
222
211
  requirements:
223
212
  - - ">="
224
213
  - !ruby/object:Gem::Version
225
- version: '1.9'
214
+ version: '2.4'
226
215
  required_rubygems_version: !ruby/object:Gem::Requirement
227
216
  requirements:
228
- - - ">"
217
+ - - ">="
229
218
  - !ruby/object:Gem::Version
230
- version: 1.3.1
219
+ version: '0'
231
220
  requirements: []
232
221
  rubyforge_project:
233
222
  rubygems_version: 2.7.6.2
@@ -239,42 +228,45 @@ test_files:
239
228
  - spec/api/public_api_spec.rb
240
229
  - spec/api_client_spec.rb
241
230
  - spec/configuration_spec.rb
231
+ - spec/models/accept_consent_request_spec.rb
232
+ - spec/models/accept_login_request_spec.rb
233
+ - spec/models/completed_request_spec.rb
234
+ - spec/models/consent_request_session_spec.rb
235
+ - spec/models/consent_request_spec.rb
236
+ - spec/models/container_wait_ok_body_error_spec.rb
242
237
  - spec/models/flush_inactive_o_auth2_tokens_request_spec.rb
243
- - spec/models/json_web_key_spec.rb
238
+ - spec/models/generic_error_spec.rb
239
+ - spec/models/health_not_ready_status_spec.rb
244
240
  - spec/models/health_status_spec.rb
245
- - spec/models/plugin_settings_spec.rb
246
- - spec/models/consent_request_session_spec.rb
247
- - spec/models/plugin_config_interface_spec.rb
248
- - spec/models/userinfo_response_spec.rb
249
- - spec/models/plugin_config_args_spec.rb
250
- - spec/models/plugin_mount_spec.rb
251
- - spec/models/json_web_key_set_spec.rb
252
- - spec/models/oauth2_token_response_spec.rb
253
- - spec/models/volume_usage_data_spec.rb
254
241
  - spec/models/json_web_key_set_generator_request_spec.rb
255
- - spec/models/plugin_env_spec.rb
256
- - spec/models/completed_request_spec.rb
242
+ - spec/models/json_web_key_set_spec.rb
243
+ - spec/models/json_web_key_spec.rb
244
+ - spec/models/login_request_spec.rb
257
245
  - spec/models/logout_request_spec.rb
258
- - spec/models/generic_error_spec.rb
259
- - spec/models/version_spec.rb
260
- - spec/models/health_not_ready_status_spec.rb
261
- - spec/models/plugin_config_network_spec.rb
262
- - spec/models/consent_request_spec.rb
246
+ - spec/models/o_auth2_client_spec.rb
263
247
  - spec/models/o_auth2_token_introspection_spec.rb
264
- - spec/models/container_wait_ok_body_error_spec.rb
265
- - spec/models/login_request_spec.rb
266
- - spec/models/previous_consent_session_spec.rb
248
+ - spec/models/oauth2_token_response_spec.rb
267
249
  - spec/models/oauth_token_response_spec.rb
268
- - spec/models/accept_consent_request_spec.rb
269
- - spec/models/well_known_spec.rb
270
- - spec/models/plugin_config_user_spec.rb
271
250
  - spec/models/open_id_connect_context_spec.rb
272
- - spec/models/plugin_config_spec.rb
251
+ - spec/models/plugin_config_args_spec.rb
252
+ - spec/models/plugin_config_interface_spec.rb
253
+ - spec/models/plugin_config_linux_spec.rb
254
+ - spec/models/plugin_config_network_spec.rb
273
255
  - spec/models/plugin_config_rootfs_spec.rb
274
- - spec/models/accept_login_request_spec.rb
275
- - spec/models/o_auth2_client_spec.rb
256
+ - spec/models/plugin_config_spec.rb
257
+ - spec/models/plugin_config_user_spec.rb
276
258
  - spec/models/plugin_device_spec.rb
277
- - spec/models/plugin_config_linux_spec.rb
278
- - spec/models/reject_request_spec.rb
259
+ - spec/models/plugin_env_spec.rb
279
260
  - spec/models/plugin_interface_type_spec.rb
261
+ - spec/models/plugin_mount_spec.rb
262
+ - spec/models/plugin_settings_spec.rb
263
+ - spec/models/previous_consent_session_spec.rb
264
+ - spec/models/reject_request_spec.rb
265
+ - spec/models/userinfo_response_spec.rb
266
+ - spec/models/version_spec.rb
267
+ - spec/models/volume_usage_data_spec.rb
268
+ - spec/models/well_known_spec.rb
269
+ - spec/models/patch_document_spec.rb
270
+ - spec/models/request_was_handled_response_spec.rb
271
+ - spec/models/volume_spec.rb
280
272
  - spec/spec_helper.rb