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

Sign up to get free protection for your applications and to get access to all the features.
Files changed (91) 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/open_id_connect_context.rb +4 -6
  57. data/lib/ory-hydra-client/models/plugin_config.rb +422 -0
  58. data/lib/ory-hydra-client/models/plugin_config_args.rb +262 -0
  59. data/lib/ory-hydra-client/models/plugin_config_interface.rb +230 -0
  60. data/lib/ory-hydra-client/models/plugin_config_linux.rb +247 -0
  61. data/lib/ory-hydra-client/models/plugin_config_network.rb +213 -0
  62. data/lib/ory-hydra-client/models/plugin_config_rootfs.rb +220 -0
  63. data/lib/ory-hydra-client/models/plugin_config_user.rb +218 -0
  64. data/lib/ory-hydra-client/models/plugin_device.rb +260 -0
  65. data/lib/ory-hydra-client/models/plugin_env.rb +260 -0
  66. data/lib/ory-hydra-client/models/plugin_interface_type.rb +243 -0
  67. data/lib/ory-hydra-client/models/plugin_mount.rb +307 -0
  68. data/lib/ory-hydra-client/models/plugin_settings.rb +265 -0
  69. data/lib/ory-hydra-client/models/previous_consent_session.rb +12 -5
  70. data/lib/ory-hydra-client/models/reject_request.rb +7 -2
  71. data/lib/ory-hydra-client/models/userinfo_response.rb +2 -2
  72. data/lib/ory-hydra-client/models/version.rb +2 -2
  73. data/lib/ory-hydra-client/models/volume_usage_data.rb +228 -0
  74. data/lib/ory-hydra-client/models/well_known.rb +15 -3
  75. data/lib/ory-hydra-client/version.rb +3 -3
  76. data/ory-hydra-client.gemspec +2 -2
  77. data/spec/models/container_wait_ok_body_error_spec.rb +41 -0
  78. data/spec/models/plugin_config_args_spec.rb +59 -0
  79. data/spec/models/plugin_config_interface_spec.rb +47 -0
  80. data/spec/models/plugin_config_linux_spec.rb +53 -0
  81. data/spec/models/plugin_config_network_spec.rb +41 -0
  82. data/spec/models/plugin_config_rootfs_spec.rb +47 -0
  83. data/spec/models/plugin_config_spec.rb +131 -0
  84. data/spec/models/plugin_config_user_spec.rb +47 -0
  85. data/spec/models/plugin_device_spec.rb +59 -0
  86. data/spec/models/plugin_env_spec.rb +59 -0
  87. data/spec/models/plugin_interface_type_spec.rb +53 -0
  88. data/spec/models/plugin_mount_spec.rb +77 -0
  89. data/spec/models/plugin_settings_spec.rb +59 -0
  90. data/spec/models/volume_usage_data_spec.rb +47 -0
  91. metadata +73 -17
@@ -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,15 +5,15 @@
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 (\"authorization challenge\") of the consent authorization request. It is used to identify the session. | [optional]
8
+ **challenge** | **String** | ID is the identifier (\"authorization challenge\") of the consent authorization request. It is used to identify the session. |
9
9
  **client** | [**OAuth2Client**](OAuth2Client.md) | | [optional]
10
- **context** | **Hash<String, Object>** | Context contains arbitrary information set by the login endpoint or is empty if not set. | [optional]
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 & consent app. | [optional]
12
12
  **login_session_id** | **String** | LoginSessionID 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 \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It's value can generally be used to associate consecutive login requests by a certain user. | [optional]
13
13
  **oidc_context** | [**OpenIDConnectContext**](OpenIDConnectContext.md) | | [optional]
14
14
  **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]
15
- **requested_access_token_audience** | **Array<String>** | RequestedScope contains the access token audience as requested by the OAuth 2.0 Client. | [optional]
16
- **requested_scope** | **Array<String>** | RequestedScope contains the OAuth 2.0 Scope requested by the OAuth 2.0 Client. | [optional]
15
+ **requested_access_token_audience** | **Array<String>** | | [optional]
16
+ **requested_scope** | **Array<String>** | | [optional]
17
17
  **skip** | **Boolean** | Skip, if true, implies that the client has requested the same scopes from the same user previously. If true, you must not ask the user to grant the requested scopes. You must however either allow or deny the consent request using the usual API call. | [optional]
18
18
  **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. | [optional]
19
19
 
@@ -4,8 +4,8 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **access_token** | **Hash<String, Object>** | 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<String, Object>** | IDToken sets session data for the OpenID Connect ID token. Keep in mind that the session'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'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,15 +4,15 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **challenge** | **String** | Challenge is the identifier (\"login challenge\") of the login request. It is used to identify the session. | [optional]
8
- **client** | [**OAuth2Client**](OAuth2Client.md) | | [optional]
7
+ **challenge** | **String** | ID is the identifier (\"login challenge\") 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<String>** | RequestedScope contains the access token audience as requested by the OAuth 2.0 Client. | [optional]
12
- **requested_scope** | **Array<String>** | RequestedScope contains the OAuth 2.0 Scope requested by the OAuth 2.0 Client. | [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<String>** | |
12
+ **requested_scope** | **Array<String>** | |
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 \"sid\" parameter in the ID Token and in OIDC Front-/Back- channel logout. It'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 `skip` 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 `skip` 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
 
@@ -4,35 +4,36 @@
4
4
 
5
5
  Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
- **allowed_cors_origins** | **Array<String>** | AllowedCORSOrigins are one or more URLs (scheme://host[:port]) which are allowed to make CORS requests to the /oauth/token endpoint. If this array is empty, the sever's CORS origin configuration (`CORS_ALLOWED_ORIGINS`) will be used instead. If this array is set, the allowed origins are appended to the server's CORS origin configuration. Be aware that environment variable `CORS_ENABLED` MUST be set to `true` for this to work. | [optional]
8
- **audience** | **Array<String>** | Audience is a whitelist defining the audiences this client is allowed to request tokens for. An audience limits the applicability of an OAuth 2.0 Access Token to, for example, certain API endpoints. The value is a list of URLs. URLs MUST NOT contain whitespaces. | [optional]
7
+ **allowed_cors_origins** | **Array<String>** | | [optional]
8
+ **audience** | **Array<String>** | | [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'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'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
- **contacts** | **Array<String>** | Contacts is a array of strings representing ways to contact people responsible for this client, typically email addresses. | [optional]
16
+ **contacts** | **Array<String>** | | [optional]
17
17
  **created_at** | **DateTime** | CreatedAt returns the timestamp of the client'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
- **grant_types** | **Array<String>** | GrantTypes is an array of grant types the client is allowed to use. | [optional]
21
- **jwks** | [**JSONWebKeySet**](JSONWebKeySet.md) | | [optional]
20
+ **grant_types** | **Array<String>** | | [optional]
21
+ **jwks** | [**Object**](.md) | | [optional]
22
22
  **jwks_uri** | **String** | URL for the Client's JSON Web Key Set [JWK] document. If the Client signs requests to the Server, it contains the signing key(s) the Server uses to validate signatures from the Client. The JWK Set MAY also contain the Client's encryption keys(s), which are used by the Server to encrypt responses to the Client. When both signing and encryption keys are made available, a use (Key Use) parameter value is REQUIRED for all keys in the referenced JWK Set to indicate each key's intended usage. Although some algorithms allow the same key to be used for both signatures and encryption, doing so is NOT RECOMMENDED, as it is less secure. The JWK x5c parameter MAY be used to provide X.509 representations of keys provided. When used, the bare key values MUST still be present and MUST match those in the certificate. | [optional]
23
23
  **logo_uri** | **String** | LogoURI is an URL string that references a logo for the client. | [optional]
24
- **metadata** | **Hash<String, Object>** | Metadata is arbitrary data. | [optional]
24
+ **metadata** | [**Object**](.md) | | [optional]
25
25
  **owner** | **String** | Owner is a string identifying the owner of the OAuth 2.0 Client. | [optional]
26
26
  **policy_uri** | **String** | PolicyURI is a URL string that points to a human-readable privacy policy document that describes how the deployment organization collects, uses, retains, and discloses personal data. | [optional]
27
- **post_logout_redirect_uris** | **Array<String>** | Array of URLs supplied by the RP to which it MAY request that the End-User's User Agent be redirected using the post_logout_redirect_uri parameter after a logout has been performed. | [optional]
28
- **redirect_uris** | **Array<String>** | RedirectURIs is an array of allowed redirect urls for the client, for example http://mydomain/oauth/callback . | [optional]
27
+ **post_logout_redirect_uris** | **Array<String>** | | [optional]
28
+ **redirect_uris** | **Array<String>** | | [optional]
29
29
  **request_object_signing_alg** | **String** | JWS [JWS] alg algorithm [JWA] that MUST be used for signing Request Objects sent to the OP. All Request Objects from this Client MUST be rejected, if not signed with this algorithm. | [optional]
30
- **request_uris** | **Array<String>** | Array of request_uri values that are pre-registered by the RP for use at the OP. Servers MAY cache the contents of the files referenced by these URIs and not retrieve them at the time they are used in a request. OPs can require that request_uri values used be pre-registered with the require_request_uri_registration discovery parameter. | [optional]
31
- **response_types** | **Array<String>** | ResponseTypes is an array of the OAuth 2.0 response type strings that the client can use at the authorization endpoint. | [optional]
30
+ **request_uris** | **Array<String>** | | [optional]
31
+ **response_types** | **Array<String>** | | [optional]
32
32
  **scope** | **String** | Scope is a string containing a space-separated list of scope values (as described in Section 3.3 of OAuth 2.0 [RFC6749]) that the client can use when requesting access tokens. | [optional]
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 `pairwise` and `public`. | [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
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]
@@ -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,16 +6,17 @@ 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's \"active\" state will vary depending on the implementation of the authorization server and the information it keeps about its tokens, but a \"true\" value return for the \"active\" 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<String>** | Audience contains a list of the token'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<String, Object>** | 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]
15
15
  **obfuscated_subject** | **String** | ObfuscatedSubject is set when the subject identifier algorithm was set to \"pairwise\" during authorization. It is the `sub` value of the ID Token that was issued. | [optional]
16
16
  **scope** | **String** | Scope is a JSON string containing a space-separated list of scopes associated with this token. | [optional]
17
17
  **sub** | **String** | Subject of the token, as defined in JWT [RFC7519]. Usually a machine-readable identifier of the resource owner who authorized this token. | [optional]
18
- **token_type** | **String** | TokenType is the introspected token's type, for example `access_token` or `refresh_token`. | [optional]
18
+ **token_type** | **String** | TokenType is the introspected token's type, typically `Bearer`. | [optional]
19
+ **token_use** | **String** | TokenUse is the introspected token's use, for example `access_token` or `refresh_token`. | [optional]
19
20
  **username** | **String** | Username is a human-readable identifier for the resource owner who authorized this token. | [optional]
20
21
 
21
22
  ## Code Sample
@@ -35,6 +36,7 @@ instance = OryHydraClient::OAuth2TokenIntrospection.new(active: null,
35
36
  scope: null,
36
37
  sub: null,
37
38
  token_type: null,
39
+ token_use: null,
38
40
  username: null)
39
41
  ```
40
42
 
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
6
6
  ------------ | ------------- | ------------- | -------------
7
7
  **acr_values** | **Array<String>** | 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: > 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 \"feature phone\" 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<String, Object>** | IDTokenHintClaims are the claims of the ID Token previously issued by the Authorization Server being passed as a hint about the End-User'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'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<String>** | UILocales is the End-User'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 \"fr-CA fr en\" 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<String>** | entrypoint |
12
+ **env** | [**Array<PluginEnv>**](PluginEnv.md) | env |
13
+ **interface** | [**PluginConfigInterface**](PluginConfigInterface.md) | |
14
+ **ipc_host** | **Boolean** | ipc host |
15
+ **linux** | [**PluginConfigLinux**](PluginConfigLinux.md) | |
16
+ **mounts** | [**Array<PluginMount>**](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<String>** | settable |
10
+ **value** | **Array<String>** | 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<PluginInterfaceType>**](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<String>** | capabilities |
9
+ **devices** | [**Array<PluginDevice>**](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<String>** | 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
+
@@ -0,0 +1,19 @@
1
+ # OryHydraClient::PluginConfigUser
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **gid** | **Integer** | g ID | [optional]
8
+ **uid** | **Integer** | UID | [optional]
9
+
10
+ ## Code Sample
11
+
12
+ ```ruby
13
+ require 'OryHydraClient'
14
+
15
+ instance = OryHydraClient::PluginConfigUser.new(gid: null,
16
+ uid: null)
17
+ ```
18
+
19
+
@@ -0,0 +1,23 @@
1
+ # OryHydraClient::PluginDevice
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **description** | **String** | description |
8
+ **name** | **String** | name |
9
+ **path** | **String** | path |
10
+ **settable** | **Array<String>** | settable |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'OryHydraClient'
16
+
17
+ instance = OryHydraClient::PluginDevice.new(description: null,
18
+ name: null,
19
+ path: null,
20
+ settable: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,23 @@
1
+ # OryHydraClient::PluginEnv
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **description** | **String** | description |
8
+ **name** | **String** | name |
9
+ **settable** | **Array<String>** | settable |
10
+ **value** | **String** | value |
11
+
12
+ ## Code Sample
13
+
14
+ ```ruby
15
+ require 'OryHydraClient'
16
+
17
+ instance = OryHydraClient::PluginEnv.new(description: null,
18
+ name: null,
19
+ settable: null,
20
+ value: null)
21
+ ```
22
+
23
+
@@ -0,0 +1,21 @@
1
+ # OryHydraClient::PluginInterfaceType
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **capability** | **String** | capability |
8
+ **prefix** | **String** | prefix |
9
+ **version** | **String** | version |
10
+
11
+ ## Code Sample
12
+
13
+ ```ruby
14
+ require 'OryHydraClient'
15
+
16
+ instance = OryHydraClient::PluginInterfaceType.new(capability: null,
17
+ prefix: null,
18
+ version: null)
19
+ ```
20
+
21
+
@@ -0,0 +1,29 @@
1
+ # OryHydraClient::PluginMount
2
+
3
+ ## Properties
4
+
5
+ Name | Type | Description | Notes
6
+ ------------ | ------------- | ------------- | -------------
7
+ **description** | **String** | description |
8
+ **destination** | **String** | destination |
9
+ **name** | **String** | name |
10
+ **options** | **Array<String>** | options |
11
+ **settable** | **Array<String>** | settable |
12
+ **source** | **String** | source |
13
+ **type** | **String** | type |
14
+
15
+ ## Code Sample
16
+
17
+ ```ruby
18
+ require 'OryHydraClient'
19
+
20
+ instance = OryHydraClient::PluginMount.new(description: null,
21
+ destination: null,
22
+ name: null,
23
+ options: null,
24
+ settable: null,
25
+ source: null,
26
+ type: null)
27
+ ```
28
+
29
+