docs/Upstream.md in ory-oathkeeper-client-0.0.0.alpha62 vs docs/Upstream.md in ory-oathkeeper-client-0.35.0.alpha1
- old
+ new
@@ -1,22 +1,21 @@
-# OryOathkeeperClient::Upstream
+# OryHydraClient::Upstream
## Properties
-| Name | Type | Description | Notes |
-| ---- | ---- | ----------- | ----- |
-| **preserve_host** | **Boolean** | PreserveHost, if false (the default), tells ORY Oathkeeper to set the upstream request's Host header to the hostname of the API's upstream's URL. Setting this flag to true instructs ORY Oathkeeper not to do so. | [optional] |
-| **strip_path** | **String** | StripPath if set, replaces the provided path prefix when forwarding the requested URL to the upstream URL. | [optional] |
-| **url** | **String** | URL is the URL the request will be proxied to. | [optional] |
+Name | Type | Description | Notes
+------------ | ------------- | ------------- | -------------
+**preserve_host** | **Boolean** | PreserveHost, if false (the default), tells ORY Oathkeeper to set the upstream request's Host header to the hostname of the API's upstream's URL. Setting this flag to true instructs ORY Oathkeeper not to do so. | [optional]
+**strip_path** | **String** | StripPath if set, replaces the provided path prefix when forwarding the requested URL to the upstream URL. | [optional]
+**url** | **String** | URL is the URL the request will be proxied to. | [optional]
-## Example
+## Code Sample
```ruby
-require 'ory-oathkeeper-client'
+require 'OryHydraClient'
-instance = OryOathkeeperClient::Upstream.new(
- preserve_host: null,
- strip_path: null,
- url: null
-)
+instance = OryHydraClient::Upstream.new(preserve_host: null,
+ strip_path: null,
+ url: null)
```
+