ory-hydra-client 0.0.0.alpha62 → 0.0.0.alpha63

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 (92) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/README.md +46 -32
  4. data/docs/AcceptConsentRequest.md +4 -2
  5. data/docs/AcceptLoginRequest.md +1 -1
  6. data/docs/AdminApi.md +111 -71
  7. data/docs/CompletedRequest.md +1 -1
  8. data/docs/ConsentRequest.md +4 -4
  9. data/docs/ConsentRequestSession.md +2 -2
  10. data/docs/ContainerWaitOKBodyError.md +17 -0
  11. data/docs/LoginRequest.md +7 -7
  12. data/docs/OAuth2Client.md +13 -11
  13. data/docs/OAuth2TokenIntrospection.md +5 -3
  14. data/docs/OpenIDConnectContext.md +1 -1
  15. data/docs/PluginConfig.md +47 -0
  16. data/docs/PluginConfigArgs.md +23 -0
  17. data/docs/PluginConfigInterface.md +19 -0
  18. data/docs/PluginConfigLinux.md +21 -0
  19. data/docs/PluginConfigNetwork.md +17 -0
  20. data/docs/PluginConfigRootfs.md +19 -0
  21. data/docs/PluginConfigUser.md +19 -0
  22. data/docs/PluginDevice.md +23 -0
  23. data/docs/PluginEnv.md +23 -0
  24. data/docs/PluginInterfaceType.md +21 -0
  25. data/docs/PluginMount.md +29 -0
  26. data/docs/PluginSettings.md +23 -0
  27. data/docs/PreviousConsentSession.md +4 -2
  28. data/docs/PublicApi.md +16 -16
  29. data/docs/RejectRequest.md +5 -5
  30. data/docs/VolumeUsageData.md +19 -0
  31. data/docs/WellKnown.md +3 -1
  32. data/lib/ory-hydra-client.rb +16 -3
  33. data/lib/ory-hydra-client/api/admin_api.rb +115 -49
  34. data/lib/ory-hydra-client/api/public_api.rb +14 -14
  35. data/lib/ory-hydra-client/api_client.rb +9 -7
  36. data/lib/ory-hydra-client/api_error.rb +2 -2
  37. data/lib/ory-hydra-client/configuration.rb +2 -2
  38. data/lib/ory-hydra-client/models/accept_consent_request.rb +12 -5
  39. data/lib/ory-hydra-client/models/accept_login_request.rb +4 -7
  40. data/lib/ory-hydra-client/models/completed_request.rb +7 -2
  41. data/lib/ory-hydra-client/models/consent_request.rb +10 -10
  42. data/lib/ory-hydra-client/models/consent_request_session.rb +6 -10
  43. data/lib/ory-hydra-client/models/container_wait_ok_body_error.rb +208 -0
  44. data/lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb +2 -2
  45. data/lib/ory-hydra-client/models/generic_error.rb +2 -2
  46. data/lib/ory-hydra-client/models/health_not_ready_status.rb +2 -2
  47. data/lib/ory-hydra-client/models/health_status.rb +2 -2
  48. data/lib/ory-hydra-client/models/json_web_key.rb +3 -2
  49. data/lib/ory-hydra-client/models/json_web_key_set.rb +3 -2
  50. data/lib/ory-hydra-client/models/json_web_key_set_generator_request.rb +2 -2
  51. data/lib/ory-hydra-client/models/login_request.rb +38 -5
  52. data/lib/ory-hydra-client/models/logout_request.rb +2 -2
  53. data/lib/ory-hydra-client/models/o_auth2_client.rb +17 -18
  54. data/lib/ory-hydra-client/models/o_auth2_token_introspection.rb +17 -9
  55. data/lib/ory-hydra-client/models/oauth2_token_response.rb +2 -2
  56. data/lib/ory-hydra-client/models/oauth_token_response.rb +1 -1
  57. data/lib/ory-hydra-client/models/open_id_connect_context.rb +4 -6
  58. data/lib/ory-hydra-client/models/plugin_config.rb +422 -0
  59. data/lib/ory-hydra-client/models/plugin_config_args.rb +262 -0
  60. data/lib/ory-hydra-client/models/plugin_config_interface.rb +230 -0
  61. data/lib/ory-hydra-client/models/plugin_config_linux.rb +247 -0
  62. data/lib/ory-hydra-client/models/plugin_config_network.rb +213 -0
  63. data/lib/ory-hydra-client/models/plugin_config_rootfs.rb +220 -0
  64. data/lib/ory-hydra-client/models/plugin_config_user.rb +218 -0
  65. data/lib/ory-hydra-client/models/plugin_device.rb +260 -0
  66. data/lib/ory-hydra-client/models/plugin_env.rb +260 -0
  67. data/lib/ory-hydra-client/models/plugin_interface_type.rb +243 -0
  68. data/lib/ory-hydra-client/models/plugin_mount.rb +307 -0
  69. data/lib/ory-hydra-client/models/plugin_settings.rb +265 -0
  70. data/lib/ory-hydra-client/models/previous_consent_session.rb +12 -5
  71. data/lib/ory-hydra-client/models/reject_request.rb +7 -2
  72. data/lib/ory-hydra-client/models/userinfo_response.rb +2 -2
  73. data/lib/ory-hydra-client/models/version.rb +2 -2
  74. data/lib/ory-hydra-client/models/volume_usage_data.rb +228 -0
  75. data/lib/ory-hydra-client/models/well_known.rb +15 -3
  76. data/lib/ory-hydra-client/version.rb +3 -3
  77. data/ory-hydra-client.gemspec +2 -2
  78. data/spec/models/container_wait_ok_body_error_spec.rb +41 -0
  79. data/spec/models/plugin_config_args_spec.rb +59 -0
  80. data/spec/models/plugin_config_interface_spec.rb +47 -0
  81. data/spec/models/plugin_config_linux_spec.rb +53 -0
  82. data/spec/models/plugin_config_network_spec.rb +41 -0
  83. data/spec/models/plugin_config_rootfs_spec.rb +47 -0
  84. data/spec/models/plugin_config_spec.rb +131 -0
  85. data/spec/models/plugin_config_user_spec.rb +47 -0
  86. data/spec/models/plugin_device_spec.rb +59 -0
  87. data/spec/models/plugin_env_spec.rb +59 -0
  88. data/spec/models/plugin_interface_type_spec.rb +53 -0
  89. data/spec/models/plugin_mount_spec.rb +77 -0
  90. data/spec/models/plugin_settings_spec.rb +59 -0
  91. data/spec/models/volume_usage_data_spec.rb +47 -0
  92. metadata +76 -20
@@ -0,0 +1,59 @@
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: latest
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::PluginDevice
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PluginDevice' do
21
+ before do
22
+ # run before each test
23
+ @instance = OryHydraClient::PluginDevice.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PluginDevice' do
31
+ it 'should create an instance of PluginDevice' do
32
+ expect(@instance).to be_instance_of(OryHydraClient::PluginDevice)
33
+ end
34
+ end
35
+ describe 'test attribute "description"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "name"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "path"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "settable"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,59 @@
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: latest
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::PluginEnv
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PluginEnv' do
21
+ before do
22
+ # run before each test
23
+ @instance = OryHydraClient::PluginEnv.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PluginEnv' do
31
+ it 'should create an instance of PluginEnv' do
32
+ expect(@instance).to be_instance_of(OryHydraClient::PluginEnv)
33
+ end
34
+ end
35
+ describe 'test attribute "description"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "name"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "settable"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "value"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,53 @@
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: latest
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::PluginInterfaceType
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PluginInterfaceType' do
21
+ before do
22
+ # run before each test
23
+ @instance = OryHydraClient::PluginInterfaceType.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PluginInterfaceType' do
31
+ it 'should create an instance of PluginInterfaceType' do
32
+ expect(@instance).to be_instance_of(OryHydraClient::PluginInterfaceType)
33
+ end
34
+ end
35
+ describe 'test attribute "capability"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "prefix"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "version"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ end
@@ -0,0 +1,77 @@
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: latest
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::PluginMount
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PluginMount' do
21
+ before do
22
+ # run before each test
23
+ @instance = OryHydraClient::PluginMount.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PluginMount' do
31
+ it 'should create an instance of PluginMount' do
32
+ expect(@instance).to be_instance_of(OryHydraClient::PluginMount)
33
+ end
34
+ end
35
+ describe 'test attribute "description"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "destination"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "name"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "options"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ describe 'test attribute "settable"' do
60
+ it 'should work' do
61
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
62
+ end
63
+ end
64
+
65
+ describe 'test attribute "source"' do
66
+ it 'should work' do
67
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
68
+ end
69
+ end
70
+
71
+ describe 'test attribute "type"' do
72
+ it 'should work' do
73
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
74
+ end
75
+ end
76
+
77
+ end
@@ -0,0 +1,59 @@
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: latest
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::PluginSettings
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'PluginSettings' do
21
+ before do
22
+ # run before each test
23
+ @instance = OryHydraClient::PluginSettings.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of PluginSettings' do
31
+ it 'should create an instance of PluginSettings' do
32
+ expect(@instance).to be_instance_of(OryHydraClient::PluginSettings)
33
+ end
34
+ end
35
+ describe 'test attribute "args"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "devices"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ describe 'test attribute "env"' do
48
+ it 'should work' do
49
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
50
+ end
51
+ end
52
+
53
+ describe 'test attribute "mounts"' do
54
+ it 'should work' do
55
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
56
+ end
57
+ end
58
+
59
+ end
@@ -0,0 +1,47 @@
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: latest
7
+
8
+ Generated by: https://openapi-generator.tech
9
+ OpenAPI Generator version: 4.2.3
10
+
11
+ =end
12
+
13
+ require 'spec_helper'
14
+ require 'json'
15
+ require 'date'
16
+
17
+ # Unit tests for OryHydraClient::VolumeUsageData
18
+ # Automatically generated by openapi-generator (https://openapi-generator.tech)
19
+ # Please update as you see appropriate
20
+ describe 'VolumeUsageData' do
21
+ before do
22
+ # run before each test
23
+ @instance = OryHydraClient::VolumeUsageData.new
24
+ end
25
+
26
+ after do
27
+ # run after each test
28
+ end
29
+
30
+ describe 'test an instance of VolumeUsageData' do
31
+ it 'should create an instance of VolumeUsageData' do
32
+ expect(@instance).to be_instance_of(OryHydraClient::VolumeUsageData)
33
+ end
34
+ end
35
+ describe 'test attribute "ref_count"' do
36
+ it 'should work' do
37
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
38
+ end
39
+ end
40
+
41
+ describe 'test attribute "size"' do
42
+ it 'should work' do
43
+ # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
44
+ end
45
+ end
46
+
47
+ end
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: 0.0.0.alpha62
4
+ version: 0.0.0.alpha63
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-01-06 00:00:00.000000000 Z
11
+ date: 2021-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: typhoeus
@@ -87,6 +87,7 @@ files:
87
87
  - docs/CompletedRequest.md
88
88
  - docs/ConsentRequest.md
89
89
  - docs/ConsentRequestSession.md
90
+ - docs/ContainerWaitOKBodyError.md
90
91
  - docs/FlushInactiveOAuth2TokensRequest.md
91
92
  - docs/GenericError.md
92
93
  - docs/HealthNotReadyStatus.md
@@ -101,11 +102,24 @@ files:
101
102
  - docs/Oauth2TokenResponse.md
102
103
  - docs/OauthTokenResponse.md
103
104
  - docs/OpenIDConnectContext.md
105
+ - docs/PluginConfig.md
106
+ - docs/PluginConfigArgs.md
107
+ - docs/PluginConfigInterface.md
108
+ - docs/PluginConfigLinux.md
109
+ - docs/PluginConfigNetwork.md
110
+ - docs/PluginConfigRootfs.md
111
+ - docs/PluginConfigUser.md
112
+ - docs/PluginDevice.md
113
+ - docs/PluginEnv.md
114
+ - docs/PluginInterfaceType.md
115
+ - docs/PluginMount.md
116
+ - docs/PluginSettings.md
104
117
  - docs/PreviousConsentSession.md
105
118
  - docs/PublicApi.md
106
119
  - docs/RejectRequest.md
107
120
  - docs/UserinfoResponse.md
108
121
  - docs/Version.md
122
+ - docs/VolumeUsageData.md
109
123
  - docs/WellKnown.md
110
124
  - lib/ory-hydra-client.rb
111
125
  - lib/ory-hydra-client/api/admin_api.rb
@@ -118,6 +132,7 @@ files:
118
132
  - lib/ory-hydra-client/models/completed_request.rb
119
133
  - lib/ory-hydra-client/models/consent_request.rb
120
134
  - lib/ory-hydra-client/models/consent_request_session.rb
135
+ - lib/ory-hydra-client/models/container_wait_ok_body_error.rb
121
136
  - lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb
122
137
  - lib/ory-hydra-client/models/generic_error.rb
123
138
  - lib/ory-hydra-client/models/health_not_ready_status.rb
@@ -132,10 +147,23 @@ files:
132
147
  - lib/ory-hydra-client/models/oauth2_token_response.rb
133
148
  - lib/ory-hydra-client/models/oauth_token_response.rb
134
149
  - lib/ory-hydra-client/models/open_id_connect_context.rb
150
+ - lib/ory-hydra-client/models/plugin_config.rb
151
+ - lib/ory-hydra-client/models/plugin_config_args.rb
152
+ - lib/ory-hydra-client/models/plugin_config_interface.rb
153
+ - lib/ory-hydra-client/models/plugin_config_linux.rb
154
+ - lib/ory-hydra-client/models/plugin_config_network.rb
155
+ - lib/ory-hydra-client/models/plugin_config_rootfs.rb
156
+ - lib/ory-hydra-client/models/plugin_config_user.rb
157
+ - lib/ory-hydra-client/models/plugin_device.rb
158
+ - lib/ory-hydra-client/models/plugin_env.rb
159
+ - lib/ory-hydra-client/models/plugin_interface_type.rb
160
+ - lib/ory-hydra-client/models/plugin_mount.rb
161
+ - lib/ory-hydra-client/models/plugin_settings.rb
135
162
  - lib/ory-hydra-client/models/previous_consent_session.rb
136
163
  - lib/ory-hydra-client/models/reject_request.rb
137
164
  - lib/ory-hydra-client/models/userinfo_response.rb
138
165
  - lib/ory-hydra-client/models/version.rb
166
+ - lib/ory-hydra-client/models/volume_usage_data.rb
139
167
  - lib/ory-hydra-client/models/well_known.rb
140
168
  - lib/ory-hydra-client/version.rb
141
169
  - ory-hydra-client.gemspec
@@ -148,6 +176,7 @@ files:
148
176
  - spec/models/completed_request_spec.rb
149
177
  - spec/models/consent_request_session_spec.rb
150
178
  - spec/models/consent_request_spec.rb
179
+ - spec/models/container_wait_ok_body_error_spec.rb
151
180
  - spec/models/flush_inactive_o_auth2_tokens_request_spec.rb
152
181
  - spec/models/generic_error_spec.rb
153
182
  - spec/models/health_not_ready_status_spec.rb
@@ -162,10 +191,23 @@ files:
162
191
  - spec/models/oauth2_token_response_spec.rb
163
192
  - spec/models/oauth_token_response_spec.rb
164
193
  - spec/models/open_id_connect_context_spec.rb
194
+ - spec/models/plugin_config_args_spec.rb
195
+ - spec/models/plugin_config_interface_spec.rb
196
+ - spec/models/plugin_config_linux_spec.rb
197
+ - spec/models/plugin_config_network_spec.rb
198
+ - spec/models/plugin_config_rootfs_spec.rb
199
+ - spec/models/plugin_config_spec.rb
200
+ - spec/models/plugin_config_user_spec.rb
201
+ - spec/models/plugin_device_spec.rb
202
+ - spec/models/plugin_env_spec.rb
203
+ - spec/models/plugin_interface_type_spec.rb
204
+ - spec/models/plugin_mount_spec.rb
205
+ - spec/models/plugin_settings_spec.rb
165
206
  - spec/models/previous_consent_session_spec.rb
166
207
  - spec/models/reject_request_spec.rb
167
208
  - spec/models/userinfo_response_spec.rb
168
209
  - spec/models/version_spec.rb
210
+ - spec/models/volume_usage_data_spec.rb
169
211
  - spec/models/well_known_spec.rb
170
212
  - spec/spec_helper.rb
171
213
  homepage: https://www.ory.sh
@@ -193,32 +235,46 @@ signing_key:
193
235
  specification_version: 4
194
236
  summary: ORY Hydra Ruby Gem
195
237
  test_files:
196
- - spec/api/public_api_spec.rb
197
238
  - spec/api/admin_api_spec.rb
239
+ - spec/api/public_api_spec.rb
198
240
  - spec/api_client_spec.rb
199
241
  - spec/configuration_spec.rb
200
- - spec/models/flush_inactive_o_auth2_tokens_request_spec.rb
201
- - spec/models/accept_consent_request_spec.rb
242
+ - spec/models/plugin_config_rootfs_spec.rb
243
+ - spec/models/plugin_config_spec.rb
244
+ - spec/models/json_web_key_set_generator_request_spec.rb
245
+ - spec/models/plugin_config_linux_spec.rb
246
+ - spec/models/o_auth2_token_introspection_spec.rb
247
+ - spec/models/oauth2_token_response_spec.rb
248
+ - spec/models/plugin_config_network_spec.rb
249
+ - spec/models/consent_request_session_spec.rb
250
+ - spec/models/o_auth2_client_spec.rb
251
+ - spec/models/version_spec.rb
252
+ - spec/models/consent_request_spec.rb
253
+ - spec/models/plugin_mount_spec.rb
254
+ - spec/models/health_not_ready_status_spec.rb
255
+ - spec/models/completed_request_spec.rb
256
+ - spec/models/open_id_connect_context_spec.rb
257
+ - spec/models/container_wait_ok_body_error_spec.rb
258
+ - spec/models/plugin_device_spec.rb
202
259
  - spec/models/previous_consent_session_spec.rb
203
260
  - spec/models/logout_request_spec.rb
204
261
  - spec/models/generic_error_spec.rb
205
- - spec/models/consent_request_session_spec.rb
206
- - spec/models/completed_request_spec.rb
207
- - spec/models/version_spec.rb
208
- - spec/models/json_web_key_spec.rb
209
- - spec/models/json_web_key_set_spec.rb
210
- - spec/models/json_web_key_set_generator_request_spec.rb
211
- - spec/models/o_auth2_client_spec.rb
212
- - spec/models/health_status_spec.rb
262
+ - spec/models/plugin_config_user_spec.rb
213
263
  - spec/models/oauth_token_response_spec.rb
264
+ - spec/models/plugin_settings_spec.rb
265
+ - spec/models/json_web_key_set_spec.rb
266
+ - spec/models/accept_login_request_spec.rb
267
+ - spec/models/plugin_config_interface_spec.rb
268
+ - spec/models/volume_usage_data_spec.rb
269
+ - spec/models/well_known_spec.rb
270
+ - spec/models/json_web_key_spec.rb
271
+ - spec/models/flush_inactive_o_auth2_tokens_request_spec.rb
272
+ - spec/models/accept_consent_request_spec.rb
214
273
  - spec/models/reject_request_spec.rb
215
- - spec/models/open_id_connect_context_spec.rb
216
- - spec/models/health_not_ready_status_spec.rb
274
+ - spec/models/plugin_interface_type_spec.rb
275
+ - spec/models/plugin_config_args_spec.rb
276
+ - spec/models/plugin_env_spec.rb
217
277
  - spec/models/login_request_spec.rb
218
- - spec/models/well_known_spec.rb
219
- - spec/models/consent_request_spec.rb
220
- - spec/models/o_auth2_token_introspection_spec.rb
221
- - spec/models/oauth2_token_response_spec.rb
222
- - spec/models/accept_login_request_spec.rb
278
+ - spec/models/health_status_spec.rb
223
279
  - spec/models/userinfo_response_spec.rb
224
280
  - spec/spec_helper.rb