Search in sources :

Example 11 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method replaceCustomResourceDefinitionStatusAsync.

/**
 *  (asynchronously)
 * replace status of the specified CustomResourceDefinition
 * @param name name of the CustomResourceDefinition (required)
 * @param body  (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 replaceCustomResourceDefinitionStatusAsync(String name, V1beta1CustomResourceDefinition body, String pretty, 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 = replaceCustomResourceDefinitionStatusValidateBeforeCall(name, body, pretty, 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 12 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method patchCustomResourceDefinitionAsync.

/**
 *  (asynchronously)
 * 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)
 * @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 patchCustomResourceDefinitionAsync(String name, Object body, String pretty, 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 = patchCustomResourceDefinitionValidateBeforeCall(name, body, pretty, 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 13 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1Api method createCustomResourceDefinitionAsync.

/**
 *  (asynchronously)
 * create a CustomResourceDefinition
 * @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 createCustomResourceDefinitionAsync(V1beta1CustomResourceDefinition body, String pretty, 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 = createCustomResourceDefinitionValidateBeforeCall(body, pretty, 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 14 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1ApiTest method replaceCustomResourceDefinitionTest.

/**
 * replace the specified CustomResourceDefinition
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void replaceCustomResourceDefinitionTest() throws ApiException {
    String name = null;
    V1beta1CustomResourceDefinition body = null;
    String pretty = null;
    V1beta1CustomResourceDefinition response = api.replaceCustomResourceDefinition(name, body, pretty);
// TODO: test validations
}
Also used : V1beta1CustomResourceDefinition(io.kubernetes.client.models.V1beta1CustomResourceDefinition) Test(org.junit.Test)

Example 15 with V1beta1CustomResourceDefinition

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

the class ApiextensionsV1beta1ApiTest method patchCustomResourceDefinitionTest.

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

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