Module: OryOathkeeperClient

Defined in:
lib/ory-oathkeeper-client/version.rb,
lib/ory-oathkeeper-client.rb,
lib/ory-oathkeeper-client/api_error.rb,
lib/ory-oathkeeper-client/api_client.rb,
lib/ory-oathkeeper-client/api/api_api.rb,
lib/ory-oathkeeper-client/models/rule.rb,
lib/ory-oathkeeper-client/configuration.rb,
lib/ory-oathkeeper-client/api/health_api.rb,
lib/ory-oathkeeper-client/models/version.rb,
lib/ory-oathkeeper-client/api/version_api.rb,
lib/ory-oathkeeper-client/models/upstream.rb,
lib/ory-oathkeeper-client/models/rule_match.rb,
lib/ory-oathkeeper-client/models/json_web_key.rb,
lib/ory-oathkeeper-client/models/rule_handler.rb,
lib/ory-oathkeeper-client/models/generic_error.rb,
lib/ory-oathkeeper-client/models/health_status.rb,
lib/ory-oathkeeper-client/models/json_web_key_set.rb,
lib/ory-oathkeeper-client/models/health_not_ready_status.rb

Overview

#ORY Oathkeeper

#ORY Oathkeeper is a reverse proxy that checks the HTTP Authorization for validity against a set of rules. This service uses Hydra to validate access tokens and policies.

The version of the OpenAPI document: v0.40.6 Contact: [email protected] Generated by: openapi-generator.tech OpenAPI Generator version: 6.0.1

Defined Under Namespace

Classes: ApiApi, ApiClient, ApiError, Configuration, GenericError, HealthApi, HealthNotReadyStatus, HealthStatus, JsonWebKey, JsonWebKeySet, Rule, RuleHandler, RuleMatch, Upstream, Version, VersionApi

Constant Summary collapse

VERSION =
'0.40.6'

Class Method Summary collapse

Class Method Details

.configureObject

Customize default settings for the SDK using block.

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

If no block given, return the default Configuration object.



44
45
46
47
48
49
50
# File 'lib/ory-oathkeeper-client.rb', line 44

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