ory-hydra-client 1.4.9 → 1.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +1 -1
  3. data/README.md +19 -5
  4. data/docs/AdminApi.md +1 -1
  5. data/docs/CompletedRequest.md +1 -1
  6. data/docs/ConsentRequest.md +1 -1
  7. data/docs/ConsentRequestSession.md +2 -2
  8. data/docs/ContainerWaitOKBodyError.md +17 -0
  9. data/docs/FlushInactiveOAuth2TokensRequest.md +1 -1
  10. data/docs/JSONWebKey.md +12 -12
  11. data/docs/LoginRequest.md +7 -7
  12. data/docs/OAuth2Client.md +5 -3
  13. data/docs/OAuth2TokenIntrospection.md +2 -2
  14. data/docs/Oauth2TokenResponse.md +6 -6
  15. data/docs/OpenIDConnectContext.md +1 -1
  16. data/docs/PluginConfig.md +47 -0
  17. data/docs/PluginConfigArgs.md +23 -0
  18. data/docs/PluginConfigInterface.md +19 -0
  19. data/docs/PluginConfigLinux.md +21 -0
  20. data/docs/PluginConfigNetwork.md +17 -0
  21. data/docs/PluginConfigRootfs.md +19 -0
  22. data/docs/PluginConfigUser.md +19 -0
  23. data/docs/PluginDevice.md +23 -0
  24. data/docs/PluginEnv.md +23 -0
  25. data/docs/PluginInterfaceType.md +21 -0
  26. data/docs/PluginMount.md +29 -0
  27. data/docs/PluginSettings.md +23 -0
  28. data/docs/PreviousConsentSession.md +3 -3
  29. data/docs/RejectRequest.md +5 -5
  30. data/docs/VolumeUsageData.md +19 -0
  31. data/lib/ory-hydra-client.rb +16 -2
  32. data/lib/ory-hydra-client/api/admin_api.rb +4 -4
  33. data/lib/ory-hydra-client/api/public_api.rb +2 -2
  34. data/lib/ory-hydra-client/api_client.rb +9 -7
  35. data/lib/ory-hydra-client/api_error.rb +2 -2
  36. data/lib/ory-hydra-client/configuration.rb +2 -2
  37. data/lib/ory-hydra-client/models/accept_consent_request.rb +2 -2
  38. data/lib/ory-hydra-client/models/accept_login_request.rb +2 -2
  39. data/lib/ory-hydra-client/models/completed_request.rb +7 -2
  40. data/lib/ory-hydra-client/models/consent_request.rb +7 -2
  41. data/lib/ory-hydra-client/models/consent_request_session.rb +6 -10
  42. data/lib/ory-hydra-client/models/container_wait_ok_body_error.rb +208 -0
  43. data/lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb +3 -4
  44. data/lib/ory-hydra-client/models/generic_error.rb +2 -2
  45. data/lib/ory-hydra-client/models/health_not_ready_status.rb +2 -3
  46. data/lib/ory-hydra-client/models/health_status.rb +2 -2
  47. data/lib/ory-hydra-client/models/json_web_key.rb +3 -15
  48. data/lib/ory-hydra-client/models/json_web_key_set.rb +2 -2
  49. data/lib/ory-hydra-client/models/json_web_key_set_generator_request.rb +2 -2
  50. data/lib/ory-hydra-client/models/login_request.rb +37 -2
  51. data/lib/ory-hydra-client/models/logout_request.rb +2 -2
  52. data/lib/ory-hydra-client/models/o_auth2_client.rb +16 -6
  53. data/lib/ory-hydra-client/models/o_auth2_token_introspection.rb +5 -7
  54. data/lib/ory-hydra-client/models/oauth2_token_response.rb +2 -8
  55. data/lib/ory-hydra-client/models/open_id_connect_context.rb +4 -6
  56. data/lib/ory-hydra-client/models/plugin_config.rb +422 -0
  57. data/lib/ory-hydra-client/models/plugin_config_args.rb +262 -0
  58. data/lib/ory-hydra-client/models/plugin_config_interface.rb +230 -0
  59. data/lib/ory-hydra-client/models/plugin_config_linux.rb +247 -0
  60. data/lib/ory-hydra-client/models/plugin_config_network.rb +213 -0
  61. data/lib/ory-hydra-client/models/plugin_config_rootfs.rb +220 -0
  62. data/lib/ory-hydra-client/models/plugin_config_user.rb +218 -0
  63. data/lib/ory-hydra-client/models/plugin_device.rb +260 -0
  64. data/lib/ory-hydra-client/models/plugin_env.rb +260 -0
  65. data/lib/ory-hydra-client/models/plugin_interface_type.rb +243 -0
  66. data/lib/ory-hydra-client/models/plugin_mount.rb +307 -0
  67. data/lib/ory-hydra-client/models/plugin_settings.rb +265 -0
  68. data/lib/ory-hydra-client/models/previous_consent_session.rb +3 -6
  69. data/lib/ory-hydra-client/models/reject_request.rb +7 -7
  70. data/lib/ory-hydra-client/models/userinfo_response.rb +3 -3
  71. data/lib/ory-hydra-client/models/version.rb +2 -2
  72. data/lib/ory-hydra-client/models/volume_usage_data.rb +228 -0
  73. data/lib/ory-hydra-client/models/well_known.rb +2 -2
  74. data/lib/ory-hydra-client/version.rb +3 -3
  75. data/ory-hydra-client.gemspec +2 -2
  76. data/spec/models/container_wait_ok_body_error_spec.rb +41 -0
  77. data/spec/models/plugin_config_args_spec.rb +59 -0
  78. data/spec/models/plugin_config_interface_spec.rb +47 -0
  79. data/spec/models/plugin_config_linux_spec.rb +53 -0
  80. data/spec/models/plugin_config_network_spec.rb +41 -0
  81. data/spec/models/plugin_config_rootfs_spec.rb +47 -0
  82. data/spec/models/plugin_config_spec.rb +131 -0
  83. data/spec/models/plugin_config_user_spec.rb +47 -0
  84. data/spec/models/plugin_device_spec.rb +59 -0
  85. data/spec/models/plugin_env_spec.rb +59 -0
  86. data/spec/models/plugin_interface_type_spec.rb +53 -0
  87. data/spec/models/plugin_mount_spec.rb +77 -0
  88. data/spec/models/plugin_settings_spec.rb +59 -0
  89. data/spec/models/volume_usage_data_spec.rb +47 -0
  90. metadata +71 -15
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5df10011ed38bd57bdc7ee9d3c0207b67cae24d154e32253cacd1df5b59e0a52
4
- data.tar.gz: 86430bac28a8d5530948a9db5d24f998bb188edc808afbe46f1176ca8319e29f
3
+ metadata.gz: fe4d18e420093483147d5e38670d448534310cda185ced3d9d991e6645bf9d01
4
+ data.tar.gz: 99a73a851a7278e7d9143abad140636a1435f709873187b392dd08625d9f9303
5
5
  SHA512:
6
- metadata.gz: f45b199b7e867b187f1cce61d669e4026bda88f5bd1e9e50cffb51ba83b7b5250e809d34b7ad2baa35cdfcfa46f3462ba003ae268d665ee79718dacf9072285e
7
- data.tar.gz: 0c83fe099b42eb54398e220825b8c72a411cb06dfa209dbe79c1455387775f2c68cd798aeeca2df5646f42ad12665772a5bfe87b54dc8282261938366ca2adc6
6
+ metadata.gz: da014019bab78d42c874ca8f0fb1a499a85d61a79cc0a275487f6a99f9efc03a3f394e2e0c719f20d2b15d4316bd35ba45732b15c9885d70bdd43599ac299139
7
+ data.tar.gz: 7b8e93d77f20587b715a97eda9441853a44d868f4a79302c077606b32ada3de83b61a88f7fe52d910a8d59641ed40f828439a4bc9bd7367146ba2fa840d4068c
data/Gemfile CHANGED
@@ -3,7 +3,7 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  group :development, :test do
6
- gem 'rake', '~> 12.0.0'
6
+ gem 'rake', '~> 13.0.1'
7
7
  gem 'pry-byebug'
8
8
  gem 'rubocop', '~> 0.66.0'
9
9
  end
data/README.md CHANGED
@@ -6,8 +6,8 @@ Welcome to the ORY Hydra HTTP API documentation. You will find documentation for
6
6
 
7
7
  This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
8
8
 
9
- - API version: latest
10
- - Package version: v1.4.9
9
+ - API version: v1.6.0
10
+ - Package version: v1.6.0
11
11
  - Build package: org.openapitools.codegen.languages.RubyClientCodegen
12
12
 
13
13
  ## Installation
@@ -23,16 +23,16 @@ gem build ory-hydra-client.gemspec
23
23
  Then either install the gem locally:
24
24
 
25
25
  ```shell
26
- gem install ./ory-hydra-client-v1.4.9.gem
26
+ gem install ./ory-hydra-client-v1.6.0.gem
27
27
  ```
28
28
 
29
- (for development, run `gem install --dev ./ory-hydra-client-v1.4.9.gem` to install the development dependencies)
29
+ (for development, run `gem install --dev ./ory-hydra-client-v1.6.0.gem` to install the development dependencies)
30
30
 
31
31
  or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
32
32
 
33
33
  Finally add this to the Gemfile:
34
34
 
35
- gem 'ory-hydra-client', '~> v1.4.9'
35
+ gem 'ory-hydra-client', '~> v1.6.0'
36
36
 
37
37
  ### Install from Git
38
38
 
@@ -124,6 +124,7 @@ Class | Method | HTTP request | Description
124
124
  - [OryHydraClient::CompletedRequest](docs/CompletedRequest.md)
125
125
  - [OryHydraClient::ConsentRequest](docs/ConsentRequest.md)
126
126
  - [OryHydraClient::ConsentRequestSession](docs/ConsentRequestSession.md)
127
+ - [OryHydraClient::ContainerWaitOKBodyError](docs/ContainerWaitOKBodyError.md)
127
128
  - [OryHydraClient::FlushInactiveOAuth2TokensRequest](docs/FlushInactiveOAuth2TokensRequest.md)
128
129
  - [OryHydraClient::GenericError](docs/GenericError.md)
129
130
  - [OryHydraClient::HealthNotReadyStatus](docs/HealthNotReadyStatus.md)
@@ -137,10 +138,23 @@ Class | Method | HTTP request | Description
137
138
  - [OryHydraClient::OAuth2TokenIntrospection](docs/OAuth2TokenIntrospection.md)
138
139
  - [OryHydraClient::Oauth2TokenResponse](docs/Oauth2TokenResponse.md)
139
140
  - [OryHydraClient::OpenIDConnectContext](docs/OpenIDConnectContext.md)
141
+ - [OryHydraClient::PluginConfig](docs/PluginConfig.md)
142
+ - [OryHydraClient::PluginConfigArgs](docs/PluginConfigArgs.md)
143
+ - [OryHydraClient::PluginConfigInterface](docs/PluginConfigInterface.md)
144
+ - [OryHydraClient::PluginConfigLinux](docs/PluginConfigLinux.md)
145
+ - [OryHydraClient::PluginConfigNetwork](docs/PluginConfigNetwork.md)
146
+ - [OryHydraClient::PluginConfigRootfs](docs/PluginConfigRootfs.md)
147
+ - [OryHydraClient::PluginConfigUser](docs/PluginConfigUser.md)
148
+ - [OryHydraClient::PluginDevice](docs/PluginDevice.md)
149
+ - [OryHydraClient::PluginEnv](docs/PluginEnv.md)
150
+ - [OryHydraClient::PluginInterfaceType](docs/PluginInterfaceType.md)
151
+ - [OryHydraClient::PluginMount](docs/PluginMount.md)
152
+ - [OryHydraClient::PluginSettings](docs/PluginSettings.md)
140
153
  - [OryHydraClient::PreviousConsentSession](docs/PreviousConsentSession.md)
141
154
  - [OryHydraClient::RejectRequest](docs/RejectRequest.md)
142
155
  - [OryHydraClient::UserinfoResponse](docs/UserinfoResponse.md)
143
156
  - [OryHydraClient::Version](docs/Version.md)
157
+ - [OryHydraClient::VolumeUsageData](docs/VolumeUsageData.md)
144
158
  - [OryHydraClient::WellKnown](docs/WellKnown.md)
145
159
 
146
160
 
@@ -958,7 +958,7 @@ No authorization required
958
958
 
959
959
  Lists all consent sessions of a subject
960
960
 
961
- This endpoint lists all subject's granted consent sessions, including client and granted scope. The \"Link\" header is also included in successful responses, which contains one or more links for pagination, formatted like so: '<https://hydra-url/admin/oauth2/auth/sessions/consent?subject={user}&limit={limit}&offset={offset}>; rel=\"{page}\"', where page is one of the following applicable pages: 'first', 'next', 'last', and 'previous'. Multiple links can be included in this header, and will be separated by a comma.
961
+ This endpoint lists all subject's granted consent sessions, including client and granted scope. If the subject is unknown or has not granted any consent sessions yet, the endpoint returns an empty JSON array with status code 200 OK. The \"Link\" header is also included in successful responses, which contains one or more links for pagination, formatted like so: '<https://hydra-url/admin/oauth2/auth/sessions/consent?subject={user}&limit={limit}&offset={offset}>; rel=\"{page}\"', where page is one of the following applicable pages: 'first', 'next', 'last', and 'previous'. Multiple links can be included in this header, and will be separated by a comma.
962
962
 
963
963
  ### Example
964
964
 
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **redirect_to** | **String** | RedirectURL is the URL which you should redirect the user to once the authentication process is completed. | [optional]
7
+ **redirect_to** | **String** | RedirectURL is the URL which you should redirect the user to once the authentication process is completed. |
8
8
 
9
9
  ## Code Sample
10
10
 
@@ -5,7 +5,7 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **acr** | **String** | ACR represents the Authentication AuthorizationContext Class Reference value for this authentication session. You can use it to express that, for example, a user authenticated using two factor authentication. | [optional]
8
- **challenge** | **String** | Challenge is the identifier (\&quot;authorization challenge\&quot;) of the consent authorization request. It is used to identify the session. | [optional]
8
+ **challenge** | **String** | Challenge is the identifier (\&quot;authorization challenge\&quot;) of the consent authorization request. It is used to identify the session. |
9
9
  **client** | [**OAuth2Client**](OAuth2Client.md) | | [optional]
10
10
  **context** | [**Object**](.md) | | [optional]
11
11
  **login_challenge** | **String** | LoginChallenge is the login challenge this consent challenge belongs to. It can be used to associate a login and consent request in the login &amp; consent app. | [optional]
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **access_token** | **Hash&lt;String, Object&gt;** | AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the refresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection. If only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties can access that endpoint as well, sensitive data from the session might be exposed to them. Use with care! | [optional]
8
- **id_token** | **Hash&lt;String, Object&gt;** | IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session&#39;id payloads are readable by anyone that has access to the ID Challenge. Use with care! | [optional]
7
+ **access_token** | [**Object**](.md) | AccessToken sets session data for the access and refresh token, as well as any future tokens issued by the refresh grant. Keep in mind that this data will be available to anyone performing OAuth 2.0 Challenge Introspection. If only your services can perform OAuth 2.0 Challenge Introspection, this is usually fine. But if third parties can access that endpoint as well, sensitive data from the session might be exposed to them. Use with care! | [optional]
8
+ **id_token** | [**Object**](.md) | IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session&#39;id payloads are readable by anyone that has access to the ID Challenge. Use with care! | [optional]
9
9
 
10
10
  ## Code Sample
11
11
 
@@ -0,0 +1,17 @@
1
+ # OryHydraClient::ContainerWaitOKBodyError
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **message** | **String** | Details of an error | [optional]
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'OryHydraClient'
13
+
14
+ instance = OryHydraClient::ContainerWaitOKBodyError.new(message: null)
15
+ ```
16
+
17
+
@@ -4,7 +4,7 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **not_after** | **DateTime** | NotAfter sets after which point tokens should not be flushed. This is useful when you want to keep a history of recently issued tokens for auditing. Format: date-time | [optional]
7
+ **not_after** | **DateTime** | NotAfter sets after which point tokens should not be flushed. This is useful when you want to keep a history of recently issued tokens for auditing. | [optional]
8
8
 
9
9
  ## Code Sample
10
10
 
@@ -5,22 +5,22 @@
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **alg** | **String** | The \&quot;alg\&quot; (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA \&quot;JSON Web Signature and Encryption Algorithms\&quot; registry established by [JWA] or be a value that contains a Collision- Resistant Name. |
8
- **crv** | **String** | crv | [optional]
9
- **d** | **String** | d | [optional]
10
- **dp** | **String** | dp | [optional]
11
- **dq** | **String** | dq | [optional]
12
- **e** | **String** | e | [optional]
13
- **k** | **String** | k | [optional]
8
+ **crv** | **String** | | [optional]
9
+ **d** | **String** | | [optional]
10
+ **dp** | **String** | | [optional]
11
+ **dq** | **String** | | [optional]
12
+ **e** | **String** | | [optional]
13
+ **k** | **String** | | [optional]
14
14
  **kid** | **String** | The \&quot;kid\&quot; (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the \&quot;kid\&quot; value is unspecified. When \&quot;kid\&quot; values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct \&quot;kid\&quot; values. (One example in which different keys might use the same \&quot;kid\&quot; value is if they have different \&quot;kty\&quot; (key type) values but are considered to be equivalent alternatives by the application using them.) The \&quot;kid\&quot; value is a case-sensitive string. |
15
15
  **kty** | **String** | The \&quot;kty\&quot; (key type) parameter identifies the cryptographic algorithm family used with the key, such as \&quot;RSA\&quot; or \&quot;EC\&quot;. \&quot;kty\&quot; values should either be registered in the IANA \&quot;JSON Web Key Types\&quot; registry established by [JWA] or be a value that contains a Collision- Resistant Name. The \&quot;kty\&quot; value is a case-sensitive string. |
16
- **n** | **String** | n | [optional]
17
- **p** | **String** | p | [optional]
18
- **q** | **String** | q | [optional]
19
- **qi** | **String** | qi | [optional]
16
+ **n** | **String** | | [optional]
17
+ **p** | **String** | | [optional]
18
+ **q** | **String** | | [optional]
19
+ **qi** | **String** | | [optional]
20
20
  **use** | **String** | Use (\&quot;public key use\&quot;) identifies the intended use of the public key. The \&quot;use\&quot; parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly \&quot;sig\&quot; (signature) or \&quot;enc\&quot; (encryption). |
21
- **x** | **String** | x | [optional]
21
+ **x** | **String** | | [optional]
22
22
  **x5c** | **Array&lt;String&gt;** | The \&quot;x5c\&quot; (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate. | [optional]
23
- **y** | **String** | y | [optional]
23
+ **y** | **String** | | [optional]
24
24
 
25
25
  ## Code Sample
26
26
 
@@ -4,15 +4,15 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **challenge** | **String** | Challenge is the identifier (\&quot;login challenge\&quot;) of the login request. It is used to identify the session. | [optional]
8
- **client** | [**OAuth2Client**](OAuth2Client.md) | | [optional]
7
+ **challenge** | **String** | Challenge is the identifier (\&quot;login challenge\&quot;) of the login request. It is used to identify the session. |
8
+ **client** | [**OAuth2Client**](OAuth2Client.md) | |
9
9
  **oidc_context** | [**OpenIDConnectContext**](OpenIDConnectContext.md) | | [optional]
10
- **request_url** | **String** | RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters. | [optional]
11
- **requested_access_token_audience** | **Array&lt;String&gt;** | | [optional]
12
- **requested_scope** | **Array&lt;String&gt;** | | [optional]
10
+ **request_url** | **String** | RequestURL is the original OAuth 2.0 Authorization URL requested by the OAuth 2.0 client. It is the URL which initiates the OAuth 2.0 Authorization Code or OAuth 2.0 Implicit flow. This URL is typically not needed, but might come in handy if you want to deal with additional request parameters. |
11
+ **requested_access_token_audience** | **Array&lt;String&gt;** | |
12
+ **requested_scope** | **Array&lt;String&gt;** | |
13
13
  **session_id** | **String** | SessionID is the login session ID. If the user-agent reuses a login session (via cookie / remember flag) this ID will remain the same. If the user-agent did not have an existing authentication session (e.g. remember is false) this will be a new random value. This value is used as the \&quot;sid\&quot; parameter in the ID Token and in OIDC Front-/Back- channel logout. It&#39;s value can generally be used to associate consecutive login requests by a certain user. | [optional]
14
- **skip** | **Boolean** | Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL. This feature allows you to update / set session information. | [optional]
15
- **subject** | **String** | Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client. If this value is set and &#x60;skip&#x60; is true, you MUST include this subject type when accepting the login request, or the request will fail. | [optional]
14
+ **skip** | **Boolean** | Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you can skip asking the user to grant the requested scopes, and simply forward the user to the redirect URL. This feature allows you to update / set session information. |
15
+ **subject** | **String** | Subject is the user ID of the end-user that authenticated. Now, that end user needs to grant or deny the scope requested by the OAuth 2.0 client. If this value is set and &#x60;skip&#x60; is true, you MUST include this subject type when accepting the login request, or the request will fail. |
16
16
 
17
17
  ## Code Sample
18
18
 
@@ -8,13 +8,13 @@ Name | Type | Description | Notes
8
8
  **audience** | **Array&lt;String&gt;** | | [optional]
9
9
  **backchannel_logout_session_required** | **Boolean** | Boolean value specifying whether the RP requires that a sid (session ID) Claim be included in the Logout Token to identify the RP session with the OP when the backchannel_logout_uri is used. If omitted, the default value is false. | [optional]
10
10
  **backchannel_logout_uri** | **String** | RP URL that will cause the RP to log itself out when sent a Logout Token by the OP. | [optional]
11
- **client_id** | **String** | ClientID is the id for this client. | [optional]
11
+ **client_id** | **String** | ID is the id for this client. | [optional]
12
12
  **client_name** | **String** | Name is the human-readable string name of the client to be presented to the end-user during authorization. | [optional]
13
13
  **client_secret** | **String** | Secret is the client&#39;s secret. The secret will be included in the create request as cleartext, and then never again. The secret is stored using BCrypt so it is impossible to recover it. Tell your users that they need to write the secret down as it will not be made available again. | [optional]
14
14
  **client_secret_expires_at** | **Integer** | SecretExpiresAt is an integer holding the time at which the client secret will expire or 0 if it will not expire. The time is represented as the number of seconds from 1970-01-01T00:00:00Z as measured in UTC until the date/time of expiration. This feature is currently not supported and it&#39;s value will always be set to 0. | [optional]
15
15
  **client_uri** | **String** | ClientURI is an URL string of a web page providing information about the client. If present, the server SHOULD display this URL to the end-user in a clickable fashion. | [optional]
16
16
  **contacts** | **Array&lt;String&gt;** | | [optional]
17
- **created_at** | **DateTime** | CreatedAt returns the timestamp of the client&#39;s creation. Format: date-time | [optional]
17
+ **created_at** | **DateTime** | CreatedAt returns the timestamp of the client&#39;s creation. | [optional]
18
18
  **frontchannel_logout_session_required** | **Boolean** | Boolean value specifying whether the RP requires that iss (issuer) and sid (session ID) query parameters be included to identify the RP session with the OP when the frontchannel_logout_uri is used. If omitted, the default value is false. | [optional]
19
19
  **frontchannel_logout_uri** | **String** | RP URL that will cause the RP to log itself out when rendered in an iframe by the OP. An iss (issuer) query parameter and a sid (session ID) query parameter MAY be included by the OP to enable the RP to validate the request and to determine which of the potentially multiple sessions is to be logged out; if either is included, both MUST be. | [optional]
20
20
  **grant_types** | **Array&lt;String&gt;** | | [optional]
@@ -33,8 +33,9 @@ Name | Type | Description | Notes
33
33
  **sector_identifier_uri** | **String** | URL using the https scheme to be used in calculating Pseudonymous Identifiers by the OP. The URL references a file with a single JSON array of redirect_uri values. | [optional]
34
34
  **subject_type** | **String** | SubjectType requested for responses to this Client. The subject_types_supported Discovery parameter contains a list of the supported subject_type values for this server. Valid types include &#x60;pairwise&#x60; and &#x60;public&#x60;. | [optional]
35
35
  **token_endpoint_auth_method** | **String** | Requested Client Authentication method for the Token Endpoint. The options are client_secret_post, client_secret_basic, private_key_jwt, and none. | [optional]
36
+ **token_endpoint_auth_signing_alg** | **String** | Requested Client Authentication signing algorithm for the Token Endpoint. | [optional]
36
37
  **tos_uri** | **String** | TermsOfServiceURI is a URL string that points to a human-readable terms of service document for the client that describes a contractual relationship between the end-user and the client that the end-user accepts when authorizing the client. | [optional]
37
- **updated_at** | **DateTime** | UpdatedAt returns the timestamp of the last update. Format: date-time | [optional]
38
+ **updated_at** | **DateTime** | UpdatedAt returns the timestamp of the last update. | [optional]
38
39
  **userinfo_signed_response_alg** | **String** | JWS alg algorithm [JWA] REQUIRED for signing UserInfo Responses. If this is specified, the response will be JWT [JWT] serialized, and signed using JWS. The default, if omitted, is for the UserInfo Response to return the Claims as a UTF-8 encoded JSON object using the application/json content-type. | [optional]
39
40
 
40
41
  ## Code Sample
@@ -71,6 +72,7 @@ instance = OryHydraClient::OAuth2Client.new(allowed_cors_origins: null,
71
72
  sector_identifier_uri: null,
72
73
  subject_type: null,
73
74
  token_endpoint_auth_method: null,
75
+ token_endpoint_auth_signing_alg: null,
74
76
  tos_uri: null,
75
77
  updated_at: null,
76
78
  userinfo_signed_response_alg: null)
@@ -6,9 +6,9 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **active** | **Boolean** | Active is a boolean indicator of whether or not the presented token is currently active. The specifics of a token&#39;s \&quot;active\&quot; state will vary depending on the implementation of the authorization server and the information it keeps about its tokens, but a \&quot;true\&quot; value return for the \&quot;active\&quot; property will generally indicate that a given token has been issued by this authorization server, has not been revoked by the resource owner, and is within its given time window of validity (e.g., after its issuance time and before its expiration time). |
8
8
  **aud** | **Array&lt;String&gt;** | Audience contains a list of the token&#39;s intended audiences. | [optional]
9
- **client_id** | **String** | ClientID is aclient identifier for the OAuth 2.0 client that requested this token. | [optional]
9
+ **client_id** | **String** | ID is aclient identifier for the OAuth 2.0 client that requested this token. | [optional]
10
10
  **exp** | **Integer** | Expires at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token will expire. | [optional]
11
- **ext** | **Hash&lt;String, Object&gt;** | Extra is arbitrary data set by the session. | [optional]
11
+ **ext** | [**Object**](.md) | Extra is arbitrary data set by the session. | [optional]
12
12
  **iat** | **Integer** | Issued at is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token was originally issued. | [optional]
13
13
  **iss** | **String** | IssuerURL is a string representing the issuer of this token | [optional]
14
14
  **nbf** | **Integer** | NotBefore is an integer timestamp, measured in the number of seconds since January 1 1970 UTC, indicating when this token is not to be used before. | [optional]
@@ -4,12 +4,12 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **access_token** | **String** | access token | [optional]
8
- **expires_in** | **Integer** | expires in | [optional]
9
- **id_token** | **String** | id token | [optional]
10
- **refresh_token** | **String** | refresh token | [optional]
11
- **scope** | **String** | scope | [optional]
12
- **token_type** | **String** | token type | [optional]
7
+ **access_token** | **String** | | [optional]
8
+ **expires_in** | **Integer** | | [optional]
9
+ **id_token** | **String** | | [optional]
10
+ **refresh_token** | **String** | | [optional]
11
+ **scope** | **String** | | [optional]
12
+ **token_type** | **String** | | [optional]
13
13
 
14
14
  ## Code Sample
15
15
 
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **acr_values** | **Array&lt;String&gt;** | ACRValues is the Authentication AuthorizationContext Class Reference requested in the OAuth 2.0 Authorization request. It is a parameter defined by OpenID Connect and expresses which level of authentication (e.g. 2FA) is required. OpenID Connect defines it as follows: &gt; Requested Authentication AuthorizationContext Class Reference values. Space-separated string that specifies the acr values that the Authorization Server is being requested to use for processing this Authentication Request, with the values appearing in order of preference. The Authentication AuthorizationContext Class satisfied by the authentication performed is returned as the acr Claim Value, as specified in Section 2. The acr Claim is requested as a Voluntary Claim by this parameter. | [optional]
8
8
  **display** | **String** | Display is a string value that specifies how the Authorization Server displays the authentication and consent user interface pages to the End-User. The defined values are: page: The Authorization Server SHOULD display the authentication and consent UI consistent with a full User Agent page view. If the display parameter is not specified, this is the default display mode. popup: The Authorization Server SHOULD display the authentication and consent UI consistent with a popup User Agent window. The popup User Agent window should be of an appropriate size for a login-focused dialog and should not obscure the entire window that it is popping up over. touch: The Authorization Server SHOULD display the authentication and consent UI consistent with a device that leverages a touch interface. wap: The Authorization Server SHOULD display the authentication and consent UI consistent with a \&quot;feature phone\&quot; type display. The Authorization Server MAY also attempt to detect the capabilities of the User Agent and present an appropriate display. | [optional]
9
- **id_token_hint_claims** | **Hash&lt;String, Object&gt;** | IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the End-User&#39;s current or past authenticated session with the Client. | [optional]
9
+ **id_token_hint_claims** | [**Object**](.md) | IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the End-User&#39;s current or past authenticated session with the Client. | [optional]
10
10
  **login_hint** | **String** | LoginHint hints about the login identifier the End-User might use to log in (if necessary). This hint can be used by an RP if it first asks the End-User for their e-mail address (or other identifier) and then wants to pass that value as a hint to the discovered authorization service. This value MAY also be a phone number in the format specified for the phone_number Claim. The use of this parameter is optional. | [optional]
11
11
  **ui_locales** | **Array&lt;String&gt;** | UILocales is the End-User&#39;id preferred languages and scripts for the user interface, represented as a space-separated list of BCP47 [RFC5646] language tag values, ordered by preference. For instance, the value \&quot;fr-CA fr en\&quot; represents a preference for French as spoken in Canada, then French (without a region designation), followed by English (without a region designation). An error SHOULD NOT result if some or all of the requested locales are not supported by the OpenID Provider. | [optional]
12
12
 
@@ -0,0 +1,47 @@
1
+ # OryHydraClient::PluginConfig
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **args** | [**PluginConfigArgs**](PluginConfigArgs.md) | |
8
+ **description** | **String** | description |
9
+ **docker_version** | **String** | Docker Version used to create the plugin | [optional]
10
+ **documentation** | **String** | documentation |
11
+ **entrypoint** | **Array&lt;String&gt;** | entrypoint |
12
+ **env** | [**Array&lt;PluginEnv&gt;**](PluginEnv.md) | env |
13
+ **interface** | [**PluginConfigInterface**](PluginConfigInterface.md) | |
14
+ **ipc_host** | **Boolean** | ipc host |
15
+ **linux** | [**PluginConfigLinux**](PluginConfigLinux.md) | |
16
+ **mounts** | [**Array&lt;PluginMount&gt;**](PluginMount.md) | mounts |
17
+ **network** | [**PluginConfigNetwork**](PluginConfigNetwork.md) | |
18
+ **pid_host** | **Boolean** | pid host |
19
+ **propagated_mount** | **String** | propagated mount |
20
+ **user** | [**PluginConfigUser**](PluginConfigUser.md) | | [optional]
21
+ **work_dir** | **String** | work dir |
22
+ **rootfs** | [**PluginConfigRootfs**](PluginConfigRootfs.md) | | [optional]
23
+
24
+ ## Code Sample
25
+
26
+ ```ruby
27
+ require 'OryHydraClient'
28
+
29
+ instance = OryHydraClient::PluginConfig.new(args: null,
30
+ description: null,
31
+ docker_version: null,
32
+ documentation: null,
33
+ entrypoint: null,
34
+ env: null,
35
+ interface: null,
36
+ ipc_host: null,
37
+ linux: null,
38
+ mounts: null,
39
+ network: null,
40
+ pid_host: null,
41
+ propagated_mount: null,
42
+ user: null,
43
+ work_dir: null,
44
+ rootfs: null)
45
+ ```
46
+
47
+
@@ -0,0 +1,23 @@
1
+ # OryHydraClient::PluginConfigArgs
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **description** | **String** | description |
8
+ **name** | **String** | name |
9
+ **settable** | **Array&lt;String&gt;** | settable |
10
+ **value** | **Array&lt;String&gt;** | value |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'OryHydraClient'
16
+
17
+ instance = OryHydraClient::PluginConfigArgs.new(description: null,
18
+ name: null,
19
+ settable: null,
20
+ value: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,19 @@
1
+ # OryHydraClient::PluginConfigInterface
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **socket** | **String** | socket |
8
+ **types** | [**Array&lt;PluginInterfaceType&gt;**](PluginInterfaceType.md) | types |
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'OryHydraClient'
14
+
15
+ instance = OryHydraClient::PluginConfigInterface.new(socket: null,
16
+ types: null)
17
+ ```
18
+
19
+
@@ -0,0 +1,21 @@
1
+ # OryHydraClient::PluginConfigLinux
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **allow_all_devices** | **Boolean** | allow all devices |
8
+ **capabilities** | **Array&lt;String&gt;** | capabilities |
9
+ **devices** | [**Array&lt;PluginDevice&gt;**](PluginDevice.md) | devices |
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'OryHydraClient'
15
+
16
+ instance = OryHydraClient::PluginConfigLinux.new(allow_all_devices: null,
17
+ capabilities: null,
18
+ devices: null)
19
+ ```
20
+
21
+
@@ -0,0 +1,17 @@
1
+ # OryHydraClient::PluginConfigNetwork
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **type** | **String** | type |
8
+
9
+ ## Code Sample
10
+
11
+ ```ruby
12
+ require 'OryHydraClient'
13
+
14
+ instance = OryHydraClient::PluginConfigNetwork.new(type: null)
15
+ ```
16
+
17
+
@@ -0,0 +1,19 @@
1
+ # OryHydraClient::PluginConfigRootfs
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **diff_ids** | **Array&lt;String&gt;** | diff ids | [optional]
8
+ **type** | **String** | type | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'OryHydraClient'
14
+
15
+ instance = OryHydraClient::PluginConfigRootfs.new(diff_ids: null,
16
+ type: null)
17
+ ```
18
+
19
+