ory-hydra-client 2.2.0

SDK Client for Ory Hydra
Documentation
# Rust API client for ory-hydra-client

Documentation for all of Ory Hydra's APIs.



## Overview

This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project.  By using the [openapi-spec](https://openapis.org) from a remote server, you can easily generate an API client.

- API version: v2.2.0
- Package version: v2.2.0
- Build package: `org.openapitools.codegen.languages.RustClientCodegen`

## Installation

Put the package under your project folder in a directory named `ory-hydra-client` and add the following to `Cargo.toml` under `[dependencies]`:

```
ory-hydra-client = { path = "./ory-hydra-client" }
```

## Documentation for API Endpoints

All URIs are relative to *http://localhost*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*JwkApi* | [**create_json_web_key_set**]docs/JwkApi.md#create_json_web_key_set | **POST** /admin/keys/{set} | Create JSON Web Key
*JwkApi* | [**delete_json_web_key**]docs/JwkApi.md#delete_json_web_key | **DELETE** /admin/keys/{set}/{kid} | Delete JSON Web Key
*JwkApi* | [**delete_json_web_key_set**]docs/JwkApi.md#delete_json_web_key_set | **DELETE** /admin/keys/{set} | Delete JSON Web Key Set
*JwkApi* | [**get_json_web_key**]docs/JwkApi.md#get_json_web_key | **GET** /admin/keys/{set}/{kid} | Get JSON Web Key
*JwkApi* | [**get_json_web_key_set**]docs/JwkApi.md#get_json_web_key_set | **GET** /admin/keys/{set} | Retrieve a JSON Web Key Set
*JwkApi* | [**set_json_web_key**]docs/JwkApi.md#set_json_web_key | **PUT** /admin/keys/{set}/{kid} | Set JSON Web Key
*JwkApi* | [**set_json_web_key_set**]docs/JwkApi.md#set_json_web_key_set | **PUT** /admin/keys/{set} | Update a JSON Web Key Set
*MetadataApi* | [**get_version**]docs/MetadataApi.md#get_version | **GET** /version | Return Running Software Version.
*MetadataApi* | [**is_alive**]docs/MetadataApi.md#is_alive | **GET** /health/alive | Check HTTP Server Status
*MetadataApi* | [**is_ready**]docs/MetadataApi.md#is_ready | **GET** /health/ready | Check HTTP Server and Database Status
*OAuth2Api* | [**accept_o_auth2_consent_request**]docs/OAuth2Api.md#accept_o_auth2_consent_request | **PUT** /admin/oauth2/auth/requests/consent/accept | Accept OAuth 2.0 Consent Request
*OAuth2Api* | [**accept_o_auth2_login_request**]docs/OAuth2Api.md#accept_o_auth2_login_request | **PUT** /admin/oauth2/auth/requests/login/accept | Accept OAuth 2.0 Login Request
*OAuth2Api* | [**accept_o_auth2_logout_request**]docs/OAuth2Api.md#accept_o_auth2_logout_request | **PUT** /admin/oauth2/auth/requests/logout/accept | Accept OAuth 2.0 Session Logout Request
*OAuth2Api* | [**create_o_auth2_client**]docs/OAuth2Api.md#create_o_auth2_client | **POST** /admin/clients | Create OAuth 2.0 Client
*OAuth2Api* | [**delete_o_auth2_client**]docs/OAuth2Api.md#delete_o_auth2_client | **DELETE** /admin/clients/{id} | Delete OAuth 2.0 Client
*OAuth2Api* | [**delete_o_auth2_token**]docs/OAuth2Api.md#delete_o_auth2_token | **DELETE** /admin/oauth2/tokens | Delete OAuth 2.0 Access Tokens from specific OAuth 2.0 Client
*OAuth2Api* | [**delete_trusted_o_auth2_jwt_grant_issuer**]docs/OAuth2Api.md#delete_trusted_o_auth2_jwt_grant_issuer | **DELETE** /admin/trust/grants/jwt-bearer/issuers/{id} | Delete Trusted OAuth2 JWT Bearer Grant Type Issuer
*OAuth2Api* | [**get_o_auth2_client**]docs/OAuth2Api.md#get_o_auth2_client | **GET** /admin/clients/{id} | Get an OAuth 2.0 Client
*OAuth2Api* | [**get_o_auth2_consent_request**]docs/OAuth2Api.md#get_o_auth2_consent_request | **GET** /admin/oauth2/auth/requests/consent | Get OAuth 2.0 Consent Request
*OAuth2Api* | [**get_o_auth2_login_request**]docs/OAuth2Api.md#get_o_auth2_login_request | **GET** /admin/oauth2/auth/requests/login | Get OAuth 2.0 Login Request
*OAuth2Api* | [**get_o_auth2_logout_request**]docs/OAuth2Api.md#get_o_auth2_logout_request | **GET** /admin/oauth2/auth/requests/logout | Get OAuth 2.0 Session Logout Request
*OAuth2Api* | [**get_trusted_o_auth2_jwt_grant_issuer**]docs/OAuth2Api.md#get_trusted_o_auth2_jwt_grant_issuer | **GET** /admin/trust/grants/jwt-bearer/issuers/{id} | Get Trusted OAuth2 JWT Bearer Grant Type Issuer
*OAuth2Api* | [**introspect_o_auth2_token**]docs/OAuth2Api.md#introspect_o_auth2_token | **POST** /admin/oauth2/introspect | Introspect OAuth2 Access and Refresh Tokens
*OAuth2Api* | [**list_o_auth2_clients**]docs/OAuth2Api.md#list_o_auth2_clients | **GET** /admin/clients | List OAuth 2.0 Clients
*OAuth2Api* | [**list_o_auth2_consent_sessions**]docs/OAuth2Api.md#list_o_auth2_consent_sessions | **GET** /admin/oauth2/auth/sessions/consent | List OAuth 2.0 Consent Sessions of a Subject
*OAuth2Api* | [**list_trusted_o_auth2_jwt_grant_issuers**]docs/OAuth2Api.md#list_trusted_o_auth2_jwt_grant_issuers | **GET** /admin/trust/grants/jwt-bearer/issuers | List Trusted OAuth2 JWT Bearer Grant Type Issuers
*OAuth2Api* | [**o_auth2_authorize**]docs/OAuth2Api.md#o_auth2_authorize | **GET** /oauth2/auth | OAuth 2.0 Authorize Endpoint
*OAuth2Api* | [**oauth2_token_exchange**]docs/OAuth2Api.md#oauth2_token_exchange | **POST** /oauth2/token | The OAuth 2.0 Token Endpoint
*OAuth2Api* | [**patch_o_auth2_client**]docs/OAuth2Api.md#patch_o_auth2_client | **PATCH** /admin/clients/{id} | Patch OAuth 2.0 Client
*OAuth2Api* | [**reject_o_auth2_consent_request**]docs/OAuth2Api.md#reject_o_auth2_consent_request | **PUT** /admin/oauth2/auth/requests/consent/reject | Reject OAuth 2.0 Consent Request
*OAuth2Api* | [**reject_o_auth2_login_request**]docs/OAuth2Api.md#reject_o_auth2_login_request | **PUT** /admin/oauth2/auth/requests/login/reject | Reject OAuth 2.0 Login Request
*OAuth2Api* | [**reject_o_auth2_logout_request**]docs/OAuth2Api.md#reject_o_auth2_logout_request | **PUT** /admin/oauth2/auth/requests/logout/reject | Reject OAuth 2.0 Session Logout Request
*OAuth2Api* | [**revoke_o_auth2_consent_sessions**]docs/OAuth2Api.md#revoke_o_auth2_consent_sessions | **DELETE** /admin/oauth2/auth/sessions/consent | Revoke OAuth 2.0 Consent Sessions of a Subject
*OAuth2Api* | [**revoke_o_auth2_login_sessions**]docs/OAuth2Api.md#revoke_o_auth2_login_sessions | **DELETE** /admin/oauth2/auth/sessions/login | Revokes OAuth 2.0 Login Sessions by either a Subject or a SessionID
*OAuth2Api* | [**revoke_o_auth2_token**]docs/OAuth2Api.md#revoke_o_auth2_token | **POST** /oauth2/revoke | Revoke OAuth 2.0 Access or Refresh Token
*OAuth2Api* | [**set_o_auth2_client**]docs/OAuth2Api.md#set_o_auth2_client | **PUT** /admin/clients/{id} | Set OAuth 2.0 Client
*OAuth2Api* | [**set_o_auth2_client_lifespans**]docs/OAuth2Api.md#set_o_auth2_client_lifespans | **PUT** /admin/clients/{id}/lifespans | Set OAuth2 Client Token Lifespans
*OAuth2Api* | [**trust_o_auth2_jwt_grant_issuer**]docs/OAuth2Api.md#trust_o_auth2_jwt_grant_issuer | **POST** /admin/trust/grants/jwt-bearer/issuers | Trust OAuth2 JWT Bearer Grant Type Issuer
*OidcApi* | [**create_oidc_dynamic_client**]docs/OidcApi.md#create_oidc_dynamic_client | **POST** /oauth2/register | Register OAuth2 Client using OpenID Dynamic Client Registration
*OidcApi* | [**create_verifiable_credential**]docs/OidcApi.md#create_verifiable_credential | **POST** /credentials | Issues a Verifiable Credential
*OidcApi* | [**delete_oidc_dynamic_client**]docs/OidcApi.md#delete_oidc_dynamic_client | **DELETE** /oauth2/register/{id} | Delete OAuth 2.0 Client using the OpenID Dynamic Client Registration Management Protocol
*OidcApi* | [**discover_oidc_configuration**]docs/OidcApi.md#discover_oidc_configuration | **GET** /.well-known/openid-configuration | OpenID Connect Discovery
*OidcApi* | [**get_oidc_dynamic_client**]docs/OidcApi.md#get_oidc_dynamic_client | **GET** /oauth2/register/{id} | Get OAuth2 Client using OpenID Dynamic Client Registration
*OidcApi* | [**get_oidc_user_info**]docs/OidcApi.md#get_oidc_user_info | **GET** /userinfo | OpenID Connect Userinfo
*OidcApi* | [**revoke_oidc_session**]docs/OidcApi.md#revoke_oidc_session | **GET** /oauth2/sessions/logout | OpenID Connect Front- and Back-channel Enabled Logout
*OidcApi* | [**set_oidc_dynamic_client**]docs/OidcApi.md#set_oidc_dynamic_client | **PUT** /oauth2/register/{id} | Set OAuth2 Client using OpenID Dynamic Client Registration
*WellknownApi* | [**discover_json_web_keys**]docs/WellknownApi.md#discover_json_web_keys | **GET** /.well-known/jwks.json | Discover Well-Known JSON Web Keys


## Documentation For Models

 - [AcceptOAuth2ConsentRequest]docs/AcceptOAuth2ConsentRequest.md
 - [AcceptOAuth2ConsentRequestSession]docs/AcceptOAuth2ConsentRequestSession.md
 - [AcceptOAuth2LoginRequest]docs/AcceptOAuth2LoginRequest.md
 - [CreateJsonWebKeySet]docs/CreateJsonWebKeySet.md
 - [CreateVerifiableCredentialRequestBody]docs/CreateVerifiableCredentialRequestBody.md
 - [CredentialSupportedDraft00]docs/CredentialSupportedDraft00.md
 - [ErrorOAuth2]docs/ErrorOAuth2.md
 - [GenericError]docs/GenericError.md
 - [GetVersion200Response]docs/GetVersion200Response.md
 - [HealthNotReadyStatus]docs/HealthNotReadyStatus.md
 - [HealthStatus]docs/HealthStatus.md
 - [IntrospectedOAuth2Token]docs/IntrospectedOAuth2Token.md
 - [IsReady200Response]docs/IsReady200Response.md
 - [IsReady503Response]docs/IsReady503Response.md
 - [JsonPatch]docs/JsonPatch.md
 - [JsonWebKey]docs/JsonWebKey.md
 - [JsonWebKeySet]docs/JsonWebKeySet.md
 - [OAuth2Client]docs/OAuth2Client.md
 - [OAuth2ClientTokenLifespans]docs/OAuth2ClientTokenLifespans.md
 - [OAuth2ConsentRequest]docs/OAuth2ConsentRequest.md
 - [OAuth2ConsentRequestOpenIdConnectContext]docs/OAuth2ConsentRequestOpenIdConnectContext.md
 - [OAuth2ConsentSession]docs/OAuth2ConsentSession.md
 - [OAuth2ConsentSessionExpiresAt]docs/OAuth2ConsentSessionExpiresAt.md
 - [OAuth2LoginRequest]docs/OAuth2LoginRequest.md
 - [OAuth2LogoutRequest]docs/OAuth2LogoutRequest.md
 - [OAuth2RedirectTo]docs/OAuth2RedirectTo.md
 - [OAuth2TokenExchange]docs/OAuth2TokenExchange.md
 - [OidcConfiguration]docs/OidcConfiguration.md
 - [OidcUserInfo]docs/OidcUserInfo.md
 - [Pagination]docs/Pagination.md
 - [PaginationHeaders]docs/PaginationHeaders.md
 - [RejectOAuth2Request]docs/RejectOAuth2Request.md
 - [Rfc6749ErrorJson]docs/Rfc6749ErrorJson.md
 - [TokenPagination]docs/TokenPagination.md
 - [TokenPaginationHeaders]docs/TokenPaginationHeaders.md
 - [TokenPaginationRequestParameters]docs/TokenPaginationRequestParameters.md
 - [TokenPaginationResponseHeaders]docs/TokenPaginationResponseHeaders.md
 - [TrustOAuth2JwtGrantIssuer]docs/TrustOAuth2JwtGrantIssuer.md
 - [TrustedOAuth2JwtGrantIssuer]docs/TrustedOAuth2JwtGrantIssuer.md
 - [TrustedOAuth2JwtGrantJsonWebKey]docs/TrustedOAuth2JwtGrantJsonWebKey.md
 - [VerifiableCredentialPrimingResponse]docs/VerifiableCredentialPrimingResponse.md
 - [VerifiableCredentialProof]docs/VerifiableCredentialProof.md
 - [VerifiableCredentialResponse]docs/VerifiableCredentialResponse.md
 - [Version]docs/Version.md


To get access to the crate's generated documentation, use:

```
cargo doc --open
```

## Author

hi@ory.sh