Search in sources :

Example 11 with V1Namespace

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

the class CoreV1Api method createNamespaceWithHttpInfo.

/**
 * create a Namespace
 * @param body  (required)
 * @param pretty If 'true', then the output is pretty printed. (optional)
 * @return ApiResponse<V1Namespace>
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Namespace> createNamespaceWithHttpInfo(V1Namespace body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = createNamespaceValidateBeforeCall(body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Namespace>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Namespace(io.kubernetes.client.models.V1Namespace)

Example 12 with V1Namespace

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

the class CoreV1Api method replaceNamespaceFinalizeWithHttpInfo.

/**
 * replace finalize of the specified Namespace
 * @param name name of the Namespace (required)
 * @param body  (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @return ApiResponse&lt;V1Namespace&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Namespace> replaceNamespaceFinalizeWithHttpInfo(String name, V1Namespace body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = replaceNamespaceFinalizeValidateBeforeCall(name, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Namespace>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Namespace(io.kubernetes.client.models.V1Namespace)

Example 13 with V1Namespace

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

the class CoreV1ApiTest method patchNamespaceTest.

/**
 * partially update the specified Namespace
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void patchNamespaceTest() throws ApiException {
    String name = null;
    Object body = null;
    String pretty = null;
    V1Namespace response = api.patchNamespace(name, body, pretty);
// TODO: test validations
}
Also used : V1Namespace(io.kubernetes.client.models.V1Namespace) Test(org.junit.Test)

Example 14 with V1Namespace

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

the class CoreV1Api method patchNamespaceWithHttpInfo.

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

Example 15 with V1Namespace

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

the class CoreV1Api method createNamespaceAsync.

/**
 *  (asynchronously)
 * create a Namespace
 * @param body  (required)
 * @param pretty If &#39;true&#39;, 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 createNamespaceAsync(V1Namespace body, String pretty, final ApiCallback<V1Namespace> 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 = createNamespaceValidateBeforeCall(body, pretty, progressListener, progressRequestListener);
    Type localVarReturnType = new TypeToken<V1Namespace>() {
    }.getType();
    apiClient.executeAsync(call, localVarReturnType, callback);
    return call;
}
Also used : ProgressResponseBody(io.kubernetes.client.ProgressResponseBody) Type(java.lang.reflect.Type) V1Namespace(io.kubernetes.client.models.V1Namespace) ProgressRequestBody(io.kubernetes.client.ProgressRequestBody)

Aggregations

V1Namespace (io.kubernetes.client.models.V1Namespace)25 Type (java.lang.reflect.Type)16 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)8 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)8 Test (org.junit.Test)8 TypeToken (com.google.gson.reflect.TypeToken)1 ApiClient (io.kubernetes.client.ApiClient)1 CoreV1Api (io.kubernetes.client.apis.CoreV1Api)1 Watch (io.kubernetes.client.util.Watch)1