Search in sources :

Example 1 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method readNamespacedPodStatusAsync.

/**
 *  (asynchronously)
 * read status of the specified Pod
 * @param name name of the Pod (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param pretty If 'true', then the output is pretty printed. (optional)
 * @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
 */
public com.squareup.okhttp.Call readNamespacedPodStatusAsync(String name, String namespace, String pretty, final ApiCallback<V1Pod> callback) throws ApiException {
    ProgressResponseBody.ProgressListener progressListener = null;
    ProgressRequestBody.ProgressRequestListener progressRequestListener = null;
    if (callback != null) {
        progressListener = new ProgressResponseBody.ProgressListener() {

            @Override
            public void update(long bytesRead, long contentLength, boolean done) {
                callback.onDownloadProgress(bytesRead, contentLength, done);
            }
        };
        progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {

            @Override
            public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
                callback.onUploadProgress(bytesWritten, contentLength, done);
            }
        };
    }
    com.squareup.okhttp.Call call = readNamespacedPodStatusValidateBeforeCall(name, namespace, pretty, progressListener, progressRequestListener);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    apiClient.executeAsync(call, localVarReturnType, callback);
    return call;
}
Also used : ProgressResponseBody(io.kubernetes.client.ProgressResponseBody) Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod) ProgressRequestBody(io.kubernetes.client.ProgressRequestBody)

Example 2 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method createNamespacedPodWithHttpInfo.

/**
 * create a Pod
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param body  (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @return ApiResponse&lt;V1Pod&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Pod> createNamespacedPodWithHttpInfo(String namespace, V1Pod body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = createNamespacedPodValidateBeforeCall(namespace, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod)

Example 3 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method readNamespacedPodStatusWithHttpInfo.

/**
 * read status of the specified Pod
 * @param name name of the Pod (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @return ApiResponse&lt;V1Pod&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Pod> readNamespacedPodStatusWithHttpInfo(String name, String namespace, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = readNamespacedPodStatusValidateBeforeCall(name, namespace, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod)

Example 4 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method patchNamespacedPodStatusWithHttpInfo.

/**
 * partially update status of the specified Pod
 * @param name name of the Pod (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param body  (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @return ApiResponse&lt;V1Pod&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Pod> patchNamespacedPodStatusWithHttpInfo(String name, String namespace, Object body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = patchNamespacedPodStatusValidateBeforeCall(name, namespace, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod)

Example 5 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method replaceNamespacedPodStatusWithHttpInfo.

/**
 * replace status of the specified Pod
 * @param name name of the Pod (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param body  (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @return ApiResponse&lt;V1Pod&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Pod> replaceNamespacedPodStatusWithHttpInfo(String name, String namespace, V1Pod body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = replaceNamespacedPodStatusValidateBeforeCall(name, namespace, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod)

Aggregations

V1Pod (io.kubernetes.client.models.V1Pod)31 Type (java.lang.reflect.Type)14 Test (org.junit.Test)8 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)7 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)7 ApiException (io.kubernetes.client.ApiException)2 V1ObjectMeta (io.kubernetes.client.models.V1ObjectMeta)2 V1PodList (io.kubernetes.client.models.V1PodList)2 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)2 DomainPresenceInfo (oracle.kubernetes.operator.helpers.DomainPresenceInfo)2 ServerKubernetesObjects (oracle.kubernetes.operator.helpers.ServerKubernetesObjects)2 HttpUserAgentTest (com.meterware.pseudoserver.HttpUserAgentTest)1 WorkerNetworkInfo (edu.iu.dsc.tws.rsched.bootstrap.WorkerNetworkInfo)1 JSON (io.kubernetes.client.JSON)1 V1ConfigMap (io.kubernetes.client.models.V1ConfigMap)1 V1DeleteOptions (io.kubernetes.client.models.V1DeleteOptions)1 V1EnvVar (io.kubernetes.client.models.V1EnvVar)1 V1PersistentVolumeClaimList (io.kubernetes.client.models.V1PersistentVolumeClaimList)1 V1Service (io.kubernetes.client.models.V1Service)1 V1ServiceList (io.kubernetes.client.models.V1ServiceList)1