Search in sources :

Example 1 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method readCustomResourceDefinitionAsync.

/**
 *  (asynchronously)
 * read the specified CustomResourceDefinition
 * @param name name of the CustomResourceDefinition (required)
 * @param pretty If 'true', then the output is pretty printed. (optional)
 * @param exact Should the export be exact.  Exact export maintains cluster-specific fields like 'Namespace'. (optional)
 * @param export Should this value be exported.  Export strips fields that a user can not specify. (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 readCustomResourceDefinitionAsync(String name, String pretty, Boolean exact, Boolean export, final ApiCallback<V1beta1CustomResourceDefinition> 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 = readCustomResourceDefinitionValidateBeforeCall(name, pretty, exact, export, progressListener, progressRequestListener);
    Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
    }.getType();
    apiClient.executeAsync(call, localVarReturnType, callback);
    return call;
}
Also used : ProgressResponseBody(io.kubernetes.client.ProgressResponseBody) V1beta1CustomResourceDefinition(io.kubernetes.client.models.V1beta1CustomResourceDefinition) Type(java.lang.reflect.Type) ProgressRequestBody(io.kubernetes.client.ProgressRequestBody)

Example 2 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method readCustomResourceDefinitionWithHttpInfo.

/**
 * read the specified CustomResourceDefinition
 * @param name name of the CustomResourceDefinition (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @param exact Should the export be exact.  Exact export maintains cluster-specific fields like &#39;Namespace&#39;. (optional)
 * @param export Should this value be exported.  Export strips fields that a user can not specify. (optional)
 * @return ApiResponse&lt;V1beta1CustomResourceDefinition&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1beta1CustomResourceDefinition> readCustomResourceDefinitionWithHttpInfo(String name, String pretty, Boolean exact, Boolean export) throws ApiException {
    com.squareup.okhttp.Call call = readCustomResourceDefinitionValidateBeforeCall(name, pretty, exact, export, null, null);
    Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1beta1CustomResourceDefinition(io.kubernetes.client.models.V1beta1CustomResourceDefinition)

Example 3 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method replaceCustomResourceDefinitionWithHttpInfo.

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

Example 4 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method replaceCustomResourceDefinitionStatusWithHttpInfo.

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

Example 5 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method patchCustomResourceDefinitionWithHttpInfo.

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

Aggregations

V1beta1CustomResourceDefinition (io.kubernetes.client.models.V1beta1CustomResourceDefinition)16 Type (java.lang.reflect.Type)10 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)5 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)5 Test (org.junit.Test)5 ApiException (io.kubernetes.client.ApiException)1 V1ObjectMeta (io.kubernetes.client.models.V1ObjectMeta)1 V1beta1CustomResourceDefinitionNames (io.kubernetes.client.models.V1beta1CustomResourceDefinitionNames)1 V1beta1CustomResourceDefinitionSpec (io.kubernetes.client.models.V1beta1CustomResourceDefinitionSpec)1