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.
- checksums.yaml +4 -4
- data/Gemfile +1 -1
- data/README.md +46 -32
- data/docs/AcceptConsentRequest.md +4 -2
- data/docs/AcceptLoginRequest.md +1 -1
- data/docs/AdminApi.md +111 -71
- data/docs/CompletedRequest.md +1 -1
- data/docs/ConsentRequest.md +4 -4
- data/docs/ConsentRequestSession.md +2 -2
- data/docs/ContainerWaitOKBodyError.md +17 -0
- data/docs/LoginRequest.md +7 -7
- data/docs/OAuth2Client.md +13 -11
- data/docs/OAuth2TokenIntrospection.md +5 -3
- data/docs/OpenIDConnectContext.md +1 -1
- data/docs/PluginConfig.md +47 -0
- data/docs/PluginConfigArgs.md +23 -0
- data/docs/PluginConfigInterface.md +19 -0
- data/docs/PluginConfigLinux.md +21 -0
- data/docs/PluginConfigNetwork.md +17 -0
- data/docs/PluginConfigRootfs.md +19 -0
- data/docs/PluginConfigUser.md +19 -0
- data/docs/PluginDevice.md +23 -0
- data/docs/PluginEnv.md +23 -0
- data/docs/PluginInterfaceType.md +21 -0
- data/docs/PluginMount.md +29 -0
- data/docs/PluginSettings.md +23 -0
- data/docs/PreviousConsentSession.md +4 -2
- data/docs/PublicApi.md +16 -16
- data/docs/RejectRequest.md +5 -5
- data/docs/VolumeUsageData.md +19 -0
- data/docs/WellKnown.md +3 -1
- data/lib/ory-hydra-client.rb +16 -3
- data/lib/ory-hydra-client/api/admin_api.rb +115 -49
- data/lib/ory-hydra-client/api/public_api.rb +14 -14
- data/lib/ory-hydra-client/api_client.rb +9 -7
- data/lib/ory-hydra-client/api_error.rb +2 -2
- data/lib/ory-hydra-client/configuration.rb +2 -2
- data/lib/ory-hydra-client/models/accept_consent_request.rb +12 -5
- data/lib/ory-hydra-client/models/accept_login_request.rb +4 -7
- data/lib/ory-hydra-client/models/completed_request.rb +7 -2
- data/lib/ory-hydra-client/models/consent_request.rb +10 -10
- data/lib/ory-hydra-client/models/consent_request_session.rb +6 -10
- data/lib/ory-hydra-client/models/container_wait_ok_body_error.rb +208 -0
- data/lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb +2 -2
- data/lib/ory-hydra-client/models/generic_error.rb +2 -2
- data/lib/ory-hydra-client/models/health_not_ready_status.rb +2 -2
- data/lib/ory-hydra-client/models/health_status.rb +2 -2
- data/lib/ory-hydra-client/models/json_web_key.rb +3 -2
- data/lib/ory-hydra-client/models/json_web_key_set.rb +3 -2
- data/lib/ory-hydra-client/models/json_web_key_set_generator_request.rb +2 -2
- data/lib/ory-hydra-client/models/login_request.rb +38 -5
- data/lib/ory-hydra-client/models/logout_request.rb +2 -2
- data/lib/ory-hydra-client/models/o_auth2_client.rb +17 -18
- data/lib/ory-hydra-client/models/o_auth2_token_introspection.rb +17 -9
- data/lib/ory-hydra-client/models/oauth2_token_response.rb +2 -2
- data/lib/ory-hydra-client/models/oauth_token_response.rb +1 -1
- data/lib/ory-hydra-client/models/open_id_connect_context.rb +4 -6
- data/lib/ory-hydra-client/models/plugin_config.rb +422 -0
- data/lib/ory-hydra-client/models/plugin_config_args.rb +262 -0
- data/lib/ory-hydra-client/models/plugin_config_interface.rb +230 -0
- data/lib/ory-hydra-client/models/plugin_config_linux.rb +247 -0
- data/lib/ory-hydra-client/models/plugin_config_network.rb +213 -0
- data/lib/ory-hydra-client/models/plugin_config_rootfs.rb +220 -0
- data/lib/ory-hydra-client/models/plugin_config_user.rb +218 -0
- data/lib/ory-hydra-client/models/plugin_device.rb +260 -0
- data/lib/ory-hydra-client/models/plugin_env.rb +260 -0
- data/lib/ory-hydra-client/models/plugin_interface_type.rb +243 -0
- data/lib/ory-hydra-client/models/plugin_mount.rb +307 -0
- data/lib/ory-hydra-client/models/plugin_settings.rb +265 -0
- data/lib/ory-hydra-client/models/previous_consent_session.rb +12 -5
- data/lib/ory-hydra-client/models/reject_request.rb +7 -2
- data/lib/ory-hydra-client/models/userinfo_response.rb +2 -2
- data/lib/ory-hydra-client/models/version.rb +2 -2
- data/lib/ory-hydra-client/models/volume_usage_data.rb +228 -0
- data/lib/ory-hydra-client/models/well_known.rb +15 -3
- data/lib/ory-hydra-client/version.rb +3 -3
- data/ory-hydra-client.gemspec +2 -2
- data/spec/models/container_wait_ok_body_error_spec.rb +41 -0
- data/spec/models/plugin_config_args_spec.rb +59 -0
- data/spec/models/plugin_config_interface_spec.rb +47 -0
- data/spec/models/plugin_config_linux_spec.rb +53 -0
- data/spec/models/plugin_config_network_spec.rb +41 -0
- data/spec/models/plugin_config_rootfs_spec.rb +47 -0
- data/spec/models/plugin_config_spec.rb +131 -0
- data/spec/models/plugin_config_user_spec.rb +47 -0
- data/spec/models/plugin_device_spec.rb +59 -0
- data/spec/models/plugin_env_spec.rb +59 -0
- data/spec/models/plugin_interface_type_spec.rb +53 -0
- data/spec/models/plugin_mount_spec.rb +77 -0
- data/spec/models/plugin_settings_spec.rb +59 -0
- data/spec/models/volume_usage_data_spec.rb +47 -0
- 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.
|
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:
|
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/
|
201
|
-
- spec/models/
|
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/
|
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/
|
216
|
-
- spec/models/
|
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/
|
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
|