Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 1.41 KB

VersionApi.md

File metadata and controls

60 lines (41 loc) · 1.41 KB

VersionApi

All URIs are relative to https://localhost

Method HTTP request Description
getCode GET /version/

getCode

VersionInfo getCode()

get the code version

Example

// Import classes:
//import io.kubernetes.client.ApiClient;
//import io.kubernetes.client.ApiException;
//import io.kubernetes.client.Configuration;
//import io.kubernetes.client.auth.*;
//import io.kubernetes.client.apis.VersionApi;

ApiClient defaultClient = Configuration.getDefaultApiClient();

// Configure API key authorization: BearerToken
ApiKeyAuth BearerToken = (ApiKeyAuth) defaultClient.getAuthentication("BearerToken");
BearerToken.setApiKey("YOUR API KEY");
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//BearerToken.setApiKeyPrefix("Token");

VersionApi apiInstance = new VersionApi();
try {
    VersionInfo result = apiInstance.getCode();
    System.out.println(result);
} catch (ApiException e) {
    System.err.println("Exception when calling VersionApi#getCode");
    e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

VersionInfo

Authorization

BearerToken

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json