ory-oathkeeper-client 0.0.0.alpha38
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +9 -0
- data/README.md +184 -0
- data/Rakefile +10 -0
- data/docs/ApiApi.md +450 -0
- data/docs/CreateRuleCreated.md +18 -0
- data/docs/CreateRuleForbidden.md +18 -0
- data/docs/CreateRuleForbiddenBody.md +28 -0
- data/docs/CreateRuleInternalServerError.md +18 -0
- data/docs/CreateRuleInternalServerErrorBody.md +28 -0
- data/docs/CreateRuleUnauthorized.md +18 -0
- data/docs/CreateRuleUnauthorizedBody.md +28 -0
- data/docs/DecisionsForbidden.md +18 -0
- data/docs/DecisionsForbiddenBody.md +28 -0
- data/docs/DecisionsInternalServerError.md +18 -0
- data/docs/DecisionsInternalServerErrorBody.md +28 -0
- data/docs/DecisionsNotFound.md +18 -0
- data/docs/DecisionsNotFoundBody.md +28 -0
- data/docs/DecisionsUnauthorized.md +18 -0
- data/docs/DecisionsUnauthorizedBody.md +28 -0
- data/docs/DeleteRuleForbidden.md +18 -0
- data/docs/DeleteRuleForbiddenBody.md +28 -0
- data/docs/DeleteRuleInternalServerError.md +18 -0
- data/docs/DeleteRuleInternalServerErrorBody.md +28 -0
- data/docs/DeleteRuleNotFound.md +18 -0
- data/docs/DeleteRuleNotFoundBody.md +28 -0
- data/docs/DeleteRuleUnauthorized.md +18 -0
- data/docs/DeleteRuleUnauthorizedBody.md +28 -0
- data/docs/GetRuleForbidden.md +18 -0
- data/docs/GetRuleForbiddenBody.md +28 -0
- data/docs/GetRuleInternalServerError.md +18 -0
- data/docs/GetRuleInternalServerErrorBody.md +28 -0
- data/docs/GetRuleNotFound.md +18 -0
- data/docs/GetRuleNotFoundBody.md +28 -0
- data/docs/GetRuleOK.md +18 -0
- data/docs/GetRuleUnauthorized.md +18 -0
- data/docs/GetRuleUnauthorizedBody.md +28 -0
- data/docs/GetWellKnownForbidden.md +18 -0
- data/docs/GetWellKnownForbiddenBody.md +28 -0
- data/docs/GetWellKnownJSONWebKeysInternalServerError.md +18 -0
- data/docs/GetWellKnownJSONWebKeysInternalServerErrorBody.md +28 -0
- data/docs/GetWellKnownJSONWebKeysOK.md +18 -0
- data/docs/GetWellKnownOK.md +18 -0
- data/docs/GetWellKnownUnauthorized.md +18 -0
- data/docs/GetWellKnownUnauthorizedBody.md +28 -0
- data/docs/HealthApi.md +96 -0
- data/docs/HealthNotReadyStatus.md +18 -0
- data/docs/HealthStatus.md +18 -0
- data/docs/InlineResponse500.md +28 -0
- data/docs/IsInstanceAliveInternalServerError.md +18 -0
- data/docs/IsInstanceAliveInternalServerErrorBody.md +28 -0
- data/docs/IsInstanceAliveOK.md +18 -0
- data/docs/JsonWebKey.md +50 -0
- data/docs/JsonWebKeySet.md +18 -0
- data/docs/JudgeForbidden.md +18 -0
- data/docs/JudgeForbiddenBody.md +28 -0
- data/docs/JudgeInternalServerError.md +18 -0
- data/docs/JudgeInternalServerErrorBody.md +28 -0
- data/docs/JudgeNotFound.md +18 -0
- data/docs/JudgeNotFoundBody.md +28 -0
- data/docs/JudgeUnauthorized.md +18 -0
- data/docs/JudgeUnauthorizedBody.md +28 -0
- data/docs/ListRulesForbidden.md +18 -0
- data/docs/ListRulesForbiddenBody.md +28 -0
- data/docs/ListRulesInternalServerError.md +18 -0
- data/docs/ListRulesInternalServerErrorBody.md +28 -0
- data/docs/ListRulesOK.md +18 -0
- data/docs/ListRulesUnauthorized.md +18 -0
- data/docs/ListRulesUnauthorizedBody.md +28 -0
- data/docs/Rule.md +30 -0
- data/docs/RuleHandler.md +20 -0
- data/docs/RuleMatch.md +20 -0
- data/docs/SwaggerCreateRuleParameters.md +18 -0
- data/docs/SwaggerGetRuleParameters.md +18 -0
- data/docs/SwaggerHealthStatus.md +18 -0
- data/docs/SwaggerJSONWebKey.md +50 -0
- data/docs/SwaggerJSONWebKeySet.md +18 -0
- data/docs/SwaggerListRulesParameters.md +20 -0
- data/docs/SwaggerNotReadyStatus.md +18 -0
- data/docs/SwaggerRule.md +30 -0
- data/docs/SwaggerRuleHandler.md +20 -0
- data/docs/SwaggerRuleMatch.md +20 -0
- data/docs/SwaggerRuleResponse.md +18 -0
- data/docs/SwaggerRulesResponse.md +18 -0
- data/docs/SwaggerUpdateRuleParameters.md +20 -0
- data/docs/SwaggerVersion.md +18 -0
- data/docs/UpdateRuleForbidden.md +18 -0
- data/docs/UpdateRuleForbiddenBody.md +28 -0
- data/docs/UpdateRuleInternalServerError.md +18 -0
- data/docs/UpdateRuleInternalServerErrorBody.md +28 -0
- data/docs/UpdateRuleNotFound.md +18 -0
- data/docs/UpdateRuleNotFoundBody.md +28 -0
- data/docs/UpdateRuleOK.md +18 -0
- data/docs/UpdateRuleUnauthorized.md +18 -0
- data/docs/UpdateRuleUnauthorizedBody.md +28 -0
- data/docs/Upstream.md +22 -0
- data/docs/Version.md +18 -0
- data/docs/VersionApi.md +52 -0
- data/lib/ory-oathkeeper-client.rb +131 -0
- data/lib/ory-oathkeeper-client/api/api_api.rb +433 -0
- data/lib/ory-oathkeeper-client/api/health_api.rb +134 -0
- data/lib/ory-oathkeeper-client/api/version_api.rb +78 -0
- data/lib/ory-oathkeeper-client/api_client.rb +389 -0
- data/lib/ory-oathkeeper-client/api_error.rb +57 -0
- data/lib/ory-oathkeeper-client/configuration.rb +270 -0
- data/lib/ory-oathkeeper-client/models/create_rule_created.rb +219 -0
- data/lib/ory-oathkeeper-client/models/create_rule_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/create_rule_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/create_rule_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/create_rule_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/create_rule_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/create_rule_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/decisions_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/decisions_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/decisions_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/decisions_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/decisions_not_found.rb +219 -0
- data/lib/ory-oathkeeper-client/models/decisions_not_found_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/decisions_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/decisions_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_not_found.rb +219 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_not_found_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/delete_rule_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_rule_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_rule_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_rule_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_rule_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_rule_not_found.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_rule_not_found_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_rule_ok.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_rule_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_rule_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_json_web_keys_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_json_web_keys_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_json_web_keys_ok.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_ok.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/get_well_known_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/health_not_ready_status.rb +221 -0
- data/lib/ory-oathkeeper-client/models/health_status.rb +219 -0
- data/lib/ory-oathkeeper-client/models/inline_response500.rb +265 -0
- data/lib/ory-oathkeeper-client/models/is_instance_alive_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/is_instance_alive_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/is_instance_alive_ok.rb +219 -0
- data/lib/ory-oathkeeper-client/models/json_web_key.rb +369 -0
- data/lib/ory-oathkeeper-client/models/json_web_key_set.rb +221 -0
- data/lib/ory-oathkeeper-client/models/judge_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/judge_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/judge_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/judge_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/judge_not_found.rb +219 -0
- data/lib/ory-oathkeeper-client/models/judge_not_found_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/judge_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/judge_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/list_rules_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/list_rules_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/list_rules_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/list_rules_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/list_rules_ok.rb +222 -0
- data/lib/ory-oathkeeper-client/models/list_rules_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/list_rules_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/rule.rb +280 -0
- data/lib/ory-oathkeeper-client/models/rule_handler.rb +229 -0
- data/lib/ory-oathkeeper-client/models/rule_match.rb +231 -0
- data/lib/ory-oathkeeper-client/models/swagger_create_rule_parameters.rb +219 -0
- data/lib/ory-oathkeeper-client/models/swagger_get_rule_parameters.rb +225 -0
- data/lib/ory-oathkeeper-client/models/swagger_health_status.rb +220 -0
- data/lib/ory-oathkeeper-client/models/swagger_json_web_key.rb +382 -0
- data/lib/ory-oathkeeper-client/models/swagger_json_web_key_set.rb +222 -0
- data/lib/ory-oathkeeper-client/models/swagger_list_rules_parameters.rb +230 -0
- data/lib/ory-oathkeeper-client/models/swagger_not_ready_status.rb +222 -0
- data/lib/ory-oathkeeper-client/models/swagger_rule.rb +280 -0
- data/lib/ory-oathkeeper-client/models/swagger_rule_handler.rb +230 -0
- data/lib/ory-oathkeeper-client/models/swagger_rule_match.rb +232 -0
- data/lib/ory-oathkeeper-client/models/swagger_rule_response.rb +219 -0
- data/lib/ory-oathkeeper-client/models/swagger_rules_response.rb +222 -0
- data/lib/ory-oathkeeper-client/models/swagger_update_rule_parameters.rb +234 -0
- data/lib/ory-oathkeeper-client/models/swagger_version.rb +220 -0
- data/lib/ory-oathkeeper-client/models/update_rule_forbidden.rb +219 -0
- data/lib/ory-oathkeeper-client/models/update_rule_forbidden_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/update_rule_internal_server_error.rb +219 -0
- data/lib/ory-oathkeeper-client/models/update_rule_internal_server_error_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/update_rule_not_found.rb +219 -0
- data/lib/ory-oathkeeper-client/models/update_rule_not_found_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/update_rule_ok.rb +219 -0
- data/lib/ory-oathkeeper-client/models/update_rule_unauthorized.rb +219 -0
- data/lib/ory-oathkeeper-client/models/update_rule_unauthorized_body.rb +272 -0
- data/lib/ory-oathkeeper-client/models/upstream.rb +240 -0
- data/lib/ory-oathkeeper-client/models/version.rb +219 -0
- data/lib/ory-oathkeeper-client/version.rb +15 -0
- data/ory-oathkeeper-client.gemspec +38 -0
- data/spec/api/api_api_spec.rb +115 -0
- data/spec/api/health_api_spec.rb +57 -0
- data/spec/api/version_api_spec.rb +46 -0
- data/spec/api_client_spec.rb +226 -0
- data/spec/configuration_spec.rb +42 -0
- data/spec/models/create_rule_created_spec.rb +41 -0
- data/spec/models/create_rule_forbidden_body_spec.rb +71 -0
- data/spec/models/create_rule_forbidden_spec.rb +41 -0
- data/spec/models/create_rule_internal_server_error_body_spec.rb +71 -0
- data/spec/models/create_rule_internal_server_error_spec.rb +41 -0
- data/spec/models/create_rule_unauthorized_body_spec.rb +71 -0
- data/spec/models/create_rule_unauthorized_spec.rb +41 -0
- data/spec/models/decisions_forbidden_body_spec.rb +71 -0
- data/spec/models/decisions_forbidden_spec.rb +41 -0
- data/spec/models/decisions_internal_server_error_body_spec.rb +71 -0
- data/spec/models/decisions_internal_server_error_spec.rb +41 -0
- data/spec/models/decisions_not_found_body_spec.rb +71 -0
- data/spec/models/decisions_not_found_spec.rb +41 -0
- data/spec/models/decisions_unauthorized_body_spec.rb +71 -0
- data/spec/models/decisions_unauthorized_spec.rb +41 -0
- data/spec/models/delete_rule_forbidden_body_spec.rb +71 -0
- data/spec/models/delete_rule_forbidden_spec.rb +41 -0
- data/spec/models/delete_rule_internal_server_error_body_spec.rb +71 -0
- data/spec/models/delete_rule_internal_server_error_spec.rb +41 -0
- data/spec/models/delete_rule_not_found_body_spec.rb +71 -0
- data/spec/models/delete_rule_not_found_spec.rb +41 -0
- data/spec/models/delete_rule_unauthorized_body_spec.rb +71 -0
- data/spec/models/delete_rule_unauthorized_spec.rb +41 -0
- data/spec/models/get_rule_forbidden_body_spec.rb +71 -0
- data/spec/models/get_rule_forbidden_spec.rb +41 -0
- data/spec/models/get_rule_internal_server_error_body_spec.rb +71 -0
- data/spec/models/get_rule_internal_server_error_spec.rb +41 -0
- data/spec/models/get_rule_not_found_body_spec.rb +71 -0
- data/spec/models/get_rule_not_found_spec.rb +41 -0
- data/spec/models/get_rule_ok_spec.rb +41 -0
- data/spec/models/get_rule_unauthorized_body_spec.rb +71 -0
- data/spec/models/get_rule_unauthorized_spec.rb +41 -0
- data/spec/models/get_well_known_forbidden_body_spec.rb +71 -0
- data/spec/models/get_well_known_forbidden_spec.rb +41 -0
- data/spec/models/get_well_known_json_web_keys_internal_server_error_body_spec.rb +71 -0
- data/spec/models/get_well_known_json_web_keys_internal_server_error_spec.rb +41 -0
- data/spec/models/get_well_known_json_web_keys_ok_spec.rb +41 -0
- data/spec/models/get_well_known_ok_spec.rb +41 -0
- data/spec/models/get_well_known_unauthorized_body_spec.rb +71 -0
- data/spec/models/get_well_known_unauthorized_spec.rb +41 -0
- data/spec/models/health_not_ready_status_spec.rb +41 -0
- data/spec/models/health_status_spec.rb +41 -0
- data/spec/models/inline_response500_spec.rb +71 -0
- data/spec/models/is_instance_alive_internal_server_error_body_spec.rb +71 -0
- data/spec/models/is_instance_alive_internal_server_error_spec.rb +41 -0
- data/spec/models/is_instance_alive_ok_spec.rb +41 -0
- data/spec/models/json_web_key_set_spec.rb +41 -0
- data/spec/models/json_web_key_spec.rb +137 -0
- data/spec/models/judge_forbidden_body_spec.rb +71 -0
- data/spec/models/judge_forbidden_spec.rb +41 -0
- data/spec/models/judge_internal_server_error_body_spec.rb +71 -0
- data/spec/models/judge_internal_server_error_spec.rb +41 -0
- data/spec/models/judge_not_found_body_spec.rb +71 -0
- data/spec/models/judge_not_found_spec.rb +41 -0
- data/spec/models/judge_unauthorized_body_spec.rb +71 -0
- data/spec/models/judge_unauthorized_spec.rb +41 -0
- data/spec/models/list_rules_forbidden_body_spec.rb +71 -0
- data/spec/models/list_rules_forbidden_spec.rb +41 -0
- data/spec/models/list_rules_internal_server_error_body_spec.rb +71 -0
- data/spec/models/list_rules_internal_server_error_spec.rb +41 -0
- data/spec/models/list_rules_ok_spec.rb +41 -0
- data/spec/models/list_rules_unauthorized_body_spec.rb +71 -0
- data/spec/models/list_rules_unauthorized_spec.rb +41 -0
- data/spec/models/rule_handler_spec.rb +47 -0
- data/spec/models/rule_match_spec.rb +47 -0
- data/spec/models/rule_spec.rb +77 -0
- data/spec/models/swagger_create_rule_parameters_spec.rb +41 -0
- data/spec/models/swagger_get_rule_parameters_spec.rb +41 -0
- data/spec/models/swagger_health_status_spec.rb +41 -0
- data/spec/models/swagger_json_web_key_set_spec.rb +41 -0
- data/spec/models/swagger_json_web_key_spec.rb +137 -0
- data/spec/models/swagger_list_rules_parameters_spec.rb +47 -0
- data/spec/models/swagger_not_ready_status_spec.rb +41 -0
- data/spec/models/swagger_rule_handler_spec.rb +47 -0
- data/spec/models/swagger_rule_match_spec.rb +47 -0
- data/spec/models/swagger_rule_response_spec.rb +41 -0
- data/spec/models/swagger_rule_spec.rb +77 -0
- data/spec/models/swagger_rules_response_spec.rb +41 -0
- data/spec/models/swagger_update_rule_parameters_spec.rb +47 -0
- data/spec/models/swagger_version_spec.rb +41 -0
- data/spec/models/update_rule_forbidden_body_spec.rb +71 -0
- data/spec/models/update_rule_forbidden_spec.rb +41 -0
- data/spec/models/update_rule_internal_server_error_body_spec.rb +71 -0
- data/spec/models/update_rule_internal_server_error_spec.rb +41 -0
- data/spec/models/update_rule_not_found_body_spec.rb +71 -0
- data/spec/models/update_rule_not_found_spec.rb +41 -0
- data/spec/models/update_rule_ok_spec.rb +41 -0
- data/spec/models/update_rule_unauthorized_body_spec.rb +71 -0
- data/spec/models/update_rule_unauthorized_spec.rb +41 -0
- data/spec/models/upstream_spec.rb +53 -0
- data/spec/models/version_spec.rb +41 -0
- data/spec/spec_helper.rb +111 -0
- metadata +477 -0
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::GetWellKnownUnauthorized
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **payload** | [**GetWellKnownUnauthorizedBody**](GetWellKnownUnauthorizedBody.md) | | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::GetWellKnownUnauthorized.new(
|
15
|
+
payload: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# OryOathkeeperClient::GetWellKnownUnauthorizedBody
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **code** | **Integer** | code | [optional] |
|
8
|
+
| **details** | **Array<Object>** | details | [optional] |
|
9
|
+
| **message** | **String** | message | [optional] |
|
10
|
+
| **reason** | **String** | reason | [optional] |
|
11
|
+
| **request** | **String** | request | [optional] |
|
12
|
+
| **status** | **String** | status | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'ory-oathkeeper-client'
|
18
|
+
|
19
|
+
instance = OryOathkeeperClient::GetWellKnownUnauthorizedBody.new(
|
20
|
+
code: null,
|
21
|
+
details: null,
|
22
|
+
message: null,
|
23
|
+
reason: null,
|
24
|
+
request: null,
|
25
|
+
status: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
data/docs/HealthApi.md
ADDED
@@ -0,0 +1,96 @@
|
|
1
|
+
# OryHydraClient::HealthApi
|
2
|
+
|
3
|
+
All URIs are relative to *http://localhost*
|
4
|
+
|
5
|
+
Method | HTTP request | Description
|
6
|
+
------------- | ------------- | -------------
|
7
|
+
[**is_instance_alive**](HealthApi.md#is_instance_alive) | **GET** /health/alive | Check alive status
|
8
|
+
[**is_instance_ready**](HealthApi.md#is_instance_ready) | **GET** /health/ready | Check readiness status
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
## is_instance_alive
|
13
|
+
|
14
|
+
> HealthStatus is_instance_alive
|
15
|
+
|
16
|
+
Check alive status
|
17
|
+
|
18
|
+
This endpoint returns a 200 status code when the HTTP server is up running. This status does currently not include checks whether the database connection is working. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance.
|
19
|
+
|
20
|
+
### Example
|
21
|
+
|
22
|
+
```ruby
|
23
|
+
# load the gem
|
24
|
+
require 'ory-oathkeeper-client'
|
25
|
+
|
26
|
+
api_instance = OryHydraClient::HealthApi.new
|
27
|
+
|
28
|
+
begin
|
29
|
+
#Check alive status
|
30
|
+
result = api_instance.is_instance_alive
|
31
|
+
p result
|
32
|
+
rescue OryHydraClient::ApiError => e
|
33
|
+
puts "Exception when calling HealthApi->is_instance_alive: #{e}"
|
34
|
+
end
|
35
|
+
```
|
36
|
+
|
37
|
+
### Parameters
|
38
|
+
|
39
|
+
This endpoint does not need any parameter.
|
40
|
+
|
41
|
+
### Return type
|
42
|
+
|
43
|
+
[**HealthStatus**](HealthStatus.md)
|
44
|
+
|
45
|
+
### Authorization
|
46
|
+
|
47
|
+
No authorization required
|
48
|
+
|
49
|
+
### HTTP request headers
|
50
|
+
|
51
|
+
- **Content-Type**: Not defined
|
52
|
+
- **Accept**: application/json
|
53
|
+
|
54
|
+
|
55
|
+
## is_instance_ready
|
56
|
+
|
57
|
+
> HealthStatus is_instance_ready
|
58
|
+
|
59
|
+
Check readiness status
|
60
|
+
|
61
|
+
This endpoint returns a 200 status code when the HTTP server is up running and the environment dependencies (e.g. the database) are responsive as well. If the service supports TLS Edge Termination, this endpoint does not require the `X-Forwarded-Proto` header to be set. Be aware that if you are running multiple nodes of this service, the health status will never refer to the cluster state, only to a single instance.
|
62
|
+
|
63
|
+
### Example
|
64
|
+
|
65
|
+
```ruby
|
66
|
+
# load the gem
|
67
|
+
require 'ory-oathkeeper-client'
|
68
|
+
|
69
|
+
api_instance = OryHydraClient::HealthApi.new
|
70
|
+
|
71
|
+
begin
|
72
|
+
#Check readiness status
|
73
|
+
result = api_instance.is_instance_ready
|
74
|
+
p result
|
75
|
+
rescue OryHydraClient::ApiError => e
|
76
|
+
puts "Exception when calling HealthApi->is_instance_ready: #{e}"
|
77
|
+
end
|
78
|
+
```
|
79
|
+
|
80
|
+
### Parameters
|
81
|
+
|
82
|
+
This endpoint does not need any parameter.
|
83
|
+
|
84
|
+
### Return type
|
85
|
+
|
86
|
+
[**HealthStatus**](HealthStatus.md)
|
87
|
+
|
88
|
+
### Authorization
|
89
|
+
|
90
|
+
No authorization required
|
91
|
+
|
92
|
+
### HTTP request headers
|
93
|
+
|
94
|
+
- **Content-Type**: Not defined
|
95
|
+
- **Accept**: application/json
|
96
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::HealthNotReadyStatus
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **errors** | **Hash<String, String>** | Errors contains a list of errors that caused the not ready status. | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::HealthNotReadyStatus.new(
|
15
|
+
errors: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::HealthStatus
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **status** | **String** | Status always contains \"ok\". | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::HealthStatus.new(
|
15
|
+
status: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# OryOathkeeperClient::InlineResponse500
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **code** | **Integer** | | [optional] |
|
8
|
+
| **details** | **Array<Object>** | | [optional] |
|
9
|
+
| **message** | **String** | | [optional] |
|
10
|
+
| **reason** | **String** | | [optional] |
|
11
|
+
| **request** | **String** | | [optional] |
|
12
|
+
| **status** | **String** | | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'ory-oathkeeper-client'
|
18
|
+
|
19
|
+
instance = OryOathkeeperClient::InlineResponse500.new(
|
20
|
+
code: null,
|
21
|
+
details: null,
|
22
|
+
message: null,
|
23
|
+
reason: null,
|
24
|
+
request: null,
|
25
|
+
status: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::IsInstanceAliveInternalServerError
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **payload** | [**IsInstanceAliveInternalServerErrorBody**](IsInstanceAliveInternalServerErrorBody.md) | | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::IsInstanceAliveInternalServerError.new(
|
15
|
+
payload: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# OryOathkeeperClient::IsInstanceAliveInternalServerErrorBody
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **code** | **Integer** | code | [optional] |
|
8
|
+
| **details** | **Array<Object>** | details | [optional] |
|
9
|
+
| **message** | **String** | message | [optional] |
|
10
|
+
| **reason** | **String** | reason | [optional] |
|
11
|
+
| **request** | **String** | request | [optional] |
|
12
|
+
| **status** | **String** | status | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'ory-oathkeeper-client'
|
18
|
+
|
19
|
+
instance = OryOathkeeperClient::IsInstanceAliveInternalServerErrorBody.new(
|
20
|
+
code: null,
|
21
|
+
details: null,
|
22
|
+
message: null,
|
23
|
+
reason: null,
|
24
|
+
request: null,
|
25
|
+
status: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::IsInstanceAliveOK
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **payload** | [**SwaggerHealthStatus**](SwaggerHealthStatus.md) | | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::IsInstanceAliveOK.new(
|
15
|
+
payload: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
data/docs/JsonWebKey.md
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
# OryOathkeeperClient::JsonWebKey
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **alg** | **String** | The \"alg\" (algorithm) parameter identifies the algorithm intended for use with the key. The values used should either be registered in the IANA \"JSON Web Signature and Encryption Algorithms\" registry established by [JWA] or be a value that contains a Collision- Resistant Name. | [optional] |
|
8
|
+
| **crv** | **String** | | [optional] |
|
9
|
+
| **d** | **String** | | [optional] |
|
10
|
+
| **dp** | **String** | | [optional] |
|
11
|
+
| **dq** | **String** | | [optional] |
|
12
|
+
| **e** | **String** | | [optional] |
|
13
|
+
| **k** | **String** | | [optional] |
|
14
|
+
| **kid** | **String** | The \"kid\" (key ID) parameter is used to match a specific key. This is used, for instance, to choose among a set of keys within a JWK Set during key rollover. The structure of the \"kid\" value is unspecified. When \"kid\" values are used within a JWK Set, different keys within the JWK Set SHOULD use distinct \"kid\" values. (One example in which different keys might use the same \"kid\" value is if they have different \"kty\" (key type) values but are considered to be equivalent alternatives by the application using them.) The \"kid\" value is a case-sensitive string. | [optional] |
|
15
|
+
| **kty** | **String** | The \"kty\" (key type) parameter identifies the cryptographic algorithm family used with the key, such as \"RSA\" or \"EC\". \"kty\" values should either be registered in the IANA \"JSON Web Key Types\" registry established by [JWA] or be a value that contains a Collision- Resistant Name. The \"kty\" value is a case-sensitive string. | [optional] |
|
16
|
+
| **n** | **String** | | [optional] |
|
17
|
+
| **p** | **String** | | [optional] |
|
18
|
+
| **q** | **String** | | [optional] |
|
19
|
+
| **qi** | **String** | | [optional] |
|
20
|
+
| **use** | **String** | The \"use\" (public key use) parameter identifies the intended use of the public key. The \"use\" parameter is employed to indicate whether a public key is used for encrypting data or verifying the signature on data. Values are commonly \"sig\" (signature) or \"enc\" (encryption). | [optional] |
|
21
|
+
| **x** | **String** | | [optional] |
|
22
|
+
| **x5c** | **Array<String>** | The \"x5c\" (X.509 certificate chain) parameter contains a chain of one or more PKIX certificates [RFC5280]. The certificate chain is represented as a JSON array of certificate value strings. Each string in the array is a base64-encoded (Section 4 of [RFC4648] -- not base64url-encoded) DER [ITU.X690.1994] PKIX certificate value. The PKIX certificate containing the key value MUST be the first certificate. | [optional] |
|
23
|
+
| **y** | **String** | | [optional] |
|
24
|
+
|
25
|
+
## Example
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
require 'ory-oathkeeper-client'
|
29
|
+
|
30
|
+
instance = OryOathkeeperClient::JsonWebKey.new(
|
31
|
+
alg: null,
|
32
|
+
crv: null,
|
33
|
+
d: null,
|
34
|
+
dp: null,
|
35
|
+
dq: null,
|
36
|
+
e: null,
|
37
|
+
k: null,
|
38
|
+
kid: null,
|
39
|
+
kty: null,
|
40
|
+
n: null,
|
41
|
+
p: null,
|
42
|
+
q: null,
|
43
|
+
qi: null,
|
44
|
+
use: null,
|
45
|
+
x: null,
|
46
|
+
x5c: null,
|
47
|
+
y: null
|
48
|
+
)
|
49
|
+
```
|
50
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::JsonWebKeySet
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **keys** | [**Array<JsonWebKey>**](JsonWebKey.md) | The value of the \"keys\" parameter is an array of JWK values. By default, the order of the JWK values within the array does not imply an order of preference among them, although applications of JWK Sets can choose to assign a meaning to the order for their purposes, if desired. | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::JsonWebKeySet.new(
|
15
|
+
keys: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::JudgeForbidden
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **payload** | [**JudgeForbiddenBody**](JudgeForbiddenBody.md) | | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::JudgeForbidden.new(
|
15
|
+
payload: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# OryOathkeeperClient::JudgeForbiddenBody
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **code** | **Integer** | code | [optional] |
|
8
|
+
| **details** | **Array<Object>** | details | [optional] |
|
9
|
+
| **message** | **String** | message | [optional] |
|
10
|
+
| **reason** | **String** | reason | [optional] |
|
11
|
+
| **request** | **String** | request | [optional] |
|
12
|
+
| **status** | **String** | status | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'ory-oathkeeper-client'
|
18
|
+
|
19
|
+
instance = OryOathkeeperClient::JudgeForbiddenBody.new(
|
20
|
+
code: null,
|
21
|
+
details: null,
|
22
|
+
message: null,
|
23
|
+
reason: null,
|
24
|
+
request: null,
|
25
|
+
status: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# OryOathkeeperClient::JudgeInternalServerError
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **payload** | [**JudgeInternalServerErrorBody**](JudgeInternalServerErrorBody.md) | | [optional] |
|
8
|
+
|
9
|
+
## Example
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require 'ory-oathkeeper-client'
|
13
|
+
|
14
|
+
instance = OryOathkeeperClient::JudgeInternalServerError.new(
|
15
|
+
payload: null
|
16
|
+
)
|
17
|
+
```
|
18
|
+
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# OryOathkeeperClient::JudgeInternalServerErrorBody
|
2
|
+
|
3
|
+
## Properties
|
4
|
+
|
5
|
+
| Name | Type | Description | Notes |
|
6
|
+
| ---- | ---- | ----------- | ----- |
|
7
|
+
| **code** | **Integer** | code | [optional] |
|
8
|
+
| **details** | **Array<Object>** | details | [optional] |
|
9
|
+
| **message** | **String** | message | [optional] |
|
10
|
+
| **reason** | **String** | reason | [optional] |
|
11
|
+
| **request** | **String** | request | [optional] |
|
12
|
+
| **status** | **String** | status | [optional] |
|
13
|
+
|
14
|
+
## Example
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
require 'ory-oathkeeper-client'
|
18
|
+
|
19
|
+
instance = OryOathkeeperClient::JudgeInternalServerErrorBody.new(
|
20
|
+
code: null,
|
21
|
+
details: null,
|
22
|
+
message: null,
|
23
|
+
reason: null,
|
24
|
+
request: null,
|
25
|
+
status: null
|
26
|
+
)
|
27
|
+
```
|
28
|
+
|