Sha256: 1287d33281fc9bd9ca0921953187ebea54aa8c9c2e374ef9f3e7095fc666f388
Contents?: true
Size: 1.61 KB
Versions: 6
Compression:
Stored size: 1.61 KB
Contents
=begin #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: Latest Contact: hi@ory.am Generated by: https://openapi-generator.tech OpenAPI Generator version: 4.2.3 =end # Common files require 'ory-oathkeeper-client/api_client' require 'ory-oathkeeper-client/api_error' require 'ory-oathkeeper-client/version' require 'ory-oathkeeper-client/configuration' # Models require 'ory-oathkeeper-client/models/health_not_ready_status' require 'ory-oathkeeper-client/models/health_status' require 'ory-oathkeeper-client/models/inline_response500' require 'ory-oathkeeper-client/models/json_web_key' require 'ory-oathkeeper-client/models/json_web_key_set' require 'ory-oathkeeper-client/models/rule' require 'ory-oathkeeper-client/models/rule_handler' require 'ory-oathkeeper-client/models/rule_match' require 'ory-oathkeeper-client/models/upstream' require 'ory-oathkeeper-client/models/version' # APIs require 'ory-oathkeeper-client/api/api_api' require 'ory-oathkeeper-client/api/health_api' require 'ory-oathkeeper-client/api/version_api' module OryHydraClient class << self # 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. def configure if block_given? yield(Configuration.default) else Configuration.default end end end end
Version data entries
6 entries across 6 versions & 1 rubygems