Module: OryHydraClient

Defined in:
lib/ory-hydra-client/version.rb,
lib/ory-hydra-client.rb,
lib/ory-hydra-client/api_error.rb,
lib/ory-hydra-client/api_client.rb,
lib/ory-hydra-client/api/admin_api.rb,
lib/ory-hydra-client/configuration.rb,
lib/ory-hydra-client/api/public_api.rb,
lib/ory-hydra-client/models/version.rb,
lib/ory-hydra-client/models/well_known.rb,
lib/ory-hydra-client/models/json_web_key.rb,
lib/ory-hydra-client/models/generic_error.rb,
lib/ory-hydra-client/models/health_status.rb,
lib/ory-hydra-client/models/login_request.rb,
lib/ory-hydra-client/models/logout_request.rb,
lib/ory-hydra-client/models/o_auth2_client.rb,
lib/ory-hydra-client/models/reject_request.rb,
lib/ory-hydra-client/models/consent_request.rb,
lib/ory-hydra-client/models/json_web_key_set.rb,
lib/ory-hydra-client/models/completed_request.rb,
lib/ory-hydra-client/models/userinfo_response.rb,
lib/ory-hydra-client/models/accept_login_request.rb,
lib/ory-hydra-client/models/oauth_token_response.rb,
lib/ory-hydra-client/models/oauth2_token_response.rb,
lib/ory-hydra-client/models/accept_consent_request.rb,
lib/ory-hydra-client/models/consent_request_session.rb,
lib/ory-hydra-client/models/health_not_ready_status.rb,
lib/ory-hydra-client/models/open_id_connect_context.rb,
lib/ory-hydra-client/models/previous_consent_session.rb,
lib/ory-hydra-client/models/o_auth2_token_introspection.rb,
lib/ory-hydra-client/models/json_web_key_set_generator_request.rb,
lib/ory-hydra-client/models/flush_inactive_o_auth2_tokens_request.rb

Overview

#ORY Hydra

#Welcome to the ORY Hydra HTTP API documentation. You will find documentation for all HTTP APIs here.

The version of the OpenAPI document: latest

Generated by: openapi-generator.tech OpenAPI Generator version: 4.2.3

Defined Under Namespace

Classes: AcceptConsentRequest, AcceptLoginRequest, AdminApi, ApiClient, ApiError, CompletedRequest, Configuration, ConsentRequest, ConsentRequestSession, FlushInactiveOAuth2TokensRequest, GenericError, HealthNotReadyStatus, HealthStatus, JSONWebKey, JSONWebKeySet, JsonWebKeySetGeneratorRequest, LoginRequest, LogoutRequest, OAuth2Client, OAuth2TokenIntrospection, Oauth2TokenResponse, OauthTokenResponse, OpenIDConnectContext, PreviousConsentSession, PublicApi, RejectRequest, UserinfoResponse, Version, WellKnown

Constant Summary collapse

VERSION =
'1.4.10'

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

OryHydraClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.



56
57
58
59
60
61
62
# File 'lib/ory-hydra-client.rb', line 56

def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end