docs/MetadataApi.md in ory-kratos-client-0.10.1 vs docs/MetadataApi.md in ory-kratos-client-0.11.0
- old
+ new
@@ -9,11 +9,11 @@
| [**is_ready**](MetadataApi.md#is_ready) | **GET** /health/ready | Check HTTP Server and Database Status |
## get_version
-> <InlineResponse2001> get_version
+> <GetVersion200Response> get_version
Return Running Software Version.
This endpoint returns the version of Ory Kratos. 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 version will never refer to the cluster state, only to a single instance.
@@ -36,19 +36,19 @@
#### Using the get_version_with_http_info variant
This returns an Array which contains the response data, status code and headers.
-> <Array(<InlineResponse2001>, Integer, Hash)> get_version_with_http_info
+> <Array(<GetVersion200Response>, Integer, Hash)> get_version_with_http_info
```ruby
begin
# Return Running Software Version.
data, status_code, headers = api_instance.get_version_with_http_info
p status_code # => 2xx
p headers # => { ... }
- p data # => <InlineResponse2001>
+ p data # => <GetVersion200Response>
rescue OryKratosClient::ApiError => e
puts "Error when calling MetadataApi->get_version_with_http_info: #{e}"
end
```
@@ -56,11 +56,11 @@
This endpoint does not need any parameter.
### Return type
-[**InlineResponse2001**](InlineResponse2001.md)
+[**GetVersion200Response**](GetVersion200Response.md)
### Authorization
No authorization required
@@ -70,11 +70,11 @@
- **Accept**: application/json
## is_alive
-> <InlineResponse200> is_alive
+> <IsAlive200Response> is_alive
Check HTTP Server Status
This endpoint returns a HTTP 200 status code when Ory Kratos is accepting incoming HTTP requests. 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.
@@ -97,19 +97,19 @@
#### Using the is_alive_with_http_info variant
This returns an Array which contains the response data, status code and headers.
-> <Array(<InlineResponse200>, Integer, Hash)> is_alive_with_http_info
+> <Array(<IsAlive200Response>, Integer, Hash)> is_alive_with_http_info
```ruby
begin
# Check HTTP Server Status
data, status_code, headers = api_instance.is_alive_with_http_info
p status_code # => 2xx
p headers # => { ... }
- p data # => <InlineResponse200>
+ p data # => <IsAlive200Response>
rescue OryKratosClient::ApiError => e
puts "Error when calling MetadataApi->is_alive_with_http_info: #{e}"
end
```
@@ -117,11 +117,11 @@
This endpoint does not need any parameter.
### Return type
-[**InlineResponse200**](InlineResponse200.md)
+[**IsAlive200Response**](IsAlive200Response.md)
### Authorization
No authorization required
@@ -131,11 +131,11 @@
- **Accept**: application/json
## is_ready
-> <InlineResponse200> is_ready
+> <IsAlive200Response> is_ready
Check HTTP Server and Database Status
This endpoint returns a HTTP 200 status code when Ory Kratos 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 Ory Kratos, the health status will never refer to the cluster state, only to a single instance.
@@ -158,19 +158,19 @@
#### Using the is_ready_with_http_info variant
This returns an Array which contains the response data, status code and headers.
-> <Array(<InlineResponse200>, Integer, Hash)> is_ready_with_http_info
+> <Array(<IsAlive200Response>, Integer, Hash)> is_ready_with_http_info
```ruby
begin
# Check HTTP Server and Database Status
data, status_code, headers = api_instance.is_ready_with_http_info
p status_code # => 2xx
p headers # => { ... }
- p data # => <InlineResponse200>
+ p data # => <IsAlive200Response>
rescue OryKratosClient::ApiError => e
puts "Error when calling MetadataApi->is_ready_with_http_info: #{e}"
end
```
@@ -178,10 +178,10 @@
This endpoint does not need any parameter.
### Return type
-[**InlineResponse200**](InlineResponse200.md)
+[**IsAlive200Response**](IsAlive200Response.md)
### Authorization
No authorization required