Skip to content

Latest commit

 

History

History
110 lines (77 loc) · 2.75 KB

LogsApi.md

File metadata and controls

110 lines (77 loc) · 2.75 KB

LogsApi

All URIs are relative to https://localhost

Method HTTP request Description
logFileHandler GET /logs/{logpath}
logFileListHandler GET /logs/

logFileHandler

logFileHandler(logpath)

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.LogsApi;

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");

LogsApi apiInstance = new LogsApi();
String logpath = "logpath_example"; // String | path to the log
try {
    apiInstance.logFileHandler(logpath);
} catch (ApiException e) {
    System.err.println("Exception when calling LogsApi#logFileHandler");
    e.printStackTrace();
}

Parameters

Name Type Description Notes
logpath String path to the log

Return type

null (empty response body)

Authorization

BearerToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

logFileListHandler

logFileListHandler()

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.LogsApi;

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");

LogsApi apiInstance = new LogsApi();
try {
    apiInstance.logFileListHandler();
} catch (ApiException e) {
    System.err.println("Exception when calling LogsApi#logFileListHandler");
    e.printStackTrace();
}

Parameters

This endpoint does not need any parameter.

Return type

null (empty response body)

Authorization

BearerToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined