Sha256: 43d04ae3fd7a6f7478dc58f9ea8ac5e34923f22b2e17779bc5235afc01baf1b8
Contents?: true
Size: 1.68 KB
Versions: 5
Compression:
Stored size: 1.68 KB
Contents
# OryOathkeeperClient::VersionApi All URIs are relative to *http://localhost* | Method | HTTP request | Description | | ------ | ------------ | ----------- | | [**get_version**](VersionApi.md#get_version) | **GET** /version | Get service version | ## get_version > <Version> get_version Get service version This endpoint returns the service version typically notated using semantic versioning. 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. ### Examples ```ruby require 'time' require 'ory-oathkeeper-client' api_instance = OryOathkeeperClient::VersionApi.new begin # Get service version result = api_instance.get_version p result rescue OryOathkeeperClient::ApiError => e puts "Error when calling VersionApi->get_version: #{e}" end ``` #### Using the get_version_with_http_info variant This returns an Array which contains the response data, status code and headers. > <Array(<Version>, Integer, Hash)> get_version_with_http_info ```ruby begin # Get service version data, status_code, headers = api_instance.get_version_with_http_info p status_code # => 2xx p headers # => { ... } p data # => <Version> rescue OryOathkeeperClient::ApiError => e puts "Error when calling VersionApi->get_version_with_http_info: #{e}" end ``` ### Parameters This endpoint does not need any parameter. ### Return type [**Version**](Version.md) ### Authorization No authorization required ### HTTP request headers - **Content-Type**: Not defined - **Accept**: application/json
Version data entries
5 entries across 5 versions & 1 rubygems