![JAR search and dependency download from the Maven repository](/logo.png)
io.kubernetes.client.openapi.apis.OpenidApi Maven / Gradle / Ivy
/*
Copyright 2021 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package io.kubernetes.client.openapi.apis;
import com.google.gson.reflect.TypeToken;
import io.kubernetes.client.openapi.ApiCallback;
import io.kubernetes.client.openapi.ApiClient;
import io.kubernetes.client.openapi.ApiException;
import io.kubernetes.client.openapi.ApiResponse;
import io.kubernetes.client.openapi.Configuration;
import io.kubernetes.client.openapi.Pair;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class OpenidApi {
private ApiClient localVarApiClient;
public OpenidApi() {
this(Configuration.getDefaultApiClient());
}
public OpenidApi(ApiClient apiClient) {
this.localVarApiClient = apiClient;
}
public ApiClient getApiClient() {
return localVarApiClient;
}
public void setApiClient(ApiClient apiClient) {
this.localVarApiClient = apiClient;
}
/**
* Build call for getServiceAccountIssuerOpenIDKeyset
*
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
*
* Status Code Description Response Headers
* 200 OK -
* 401 Unauthorized -
*
*/
public okhttp3.Call getServiceAccountIssuerOpenIDKeysetCall(final ApiCallback _callback)
throws ApiException {
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/openid/v1/jwks/";
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {"application/jwk-set+json"};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {};
final String localVarContentType =
localVarApiClient.selectHeaderContentType(localVarContentTypes);
localVarHeaderParams.put("Content-Type", localVarContentType);
String[] localVarAuthNames = new String[] {"BearerToken"};
return localVarApiClient.buildCall(
localVarPath,
"GET",
localVarQueryParams,
localVarCollectionQueryParams,
localVarPostBody,
localVarHeaderParams,
localVarCookieParams,
localVarFormParams,
localVarAuthNames,
_callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call getServiceAccountIssuerOpenIDKeysetValidateBeforeCall(
final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getServiceAccountIssuerOpenIDKeysetCall(_callback);
return localVarCall;
}
/**
* get service account issuer OpenID JSON Web Key Set (contains public token verification keys)
*
* @return String
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
* response body
* @http.response.details
*
* Status Code Description Response Headers
* 200 OK -
* 401 Unauthorized -
*
*/
public String getServiceAccountIssuerOpenIDKeyset() throws ApiException {
ApiResponse localVarResp = getServiceAccountIssuerOpenIDKeysetWithHttpInfo();
return localVarResp.getData();
}
/**
* get service account issuer OpenID JSON Web Key Set (contains public token verification keys)
*
* @return ApiResponse<String>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the
* response body
* @http.response.details
*
* Status Code Description Response Headers
* 200 OK -
* 401 Unauthorized -
*
*/
public ApiResponse getServiceAccountIssuerOpenIDKeysetWithHttpInfo() throws ApiException {
okhttp3.Call localVarCall = getServiceAccountIssuerOpenIDKeysetValidateBeforeCall(null);
Type localVarReturnType = new TypeToken() {}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously) get service account issuer OpenID JSON Web Key Set (contains public token
* verification keys)
*
* @param _callback The callback to be executed when the API call finishes
* @return The request call
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
* @http.response.details
*
* Status Code Description Response Headers
* 200 OK -
* 401 Unauthorized -
*
*/
public okhttp3.Call getServiceAccountIssuerOpenIDKeysetAsync(final ApiCallback _callback)
throws ApiException {
okhttp3.Call localVarCall = getServiceAccountIssuerOpenIDKeysetValidateBeforeCall(_callback);
Type localVarReturnType = new TypeToken() {}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy