Search in sources :

Example 1 with V1ConfigMap

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

the class CoreV1Api method readNamespacedConfigMapWithHttpInfo.

/**
 * read the specified ConfigMap
 * @param name name of the ConfigMap (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 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)
 * @return ApiResponse<V1ConfigMap>
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1ConfigMap> readNamespacedConfigMapWithHttpInfo(String name, String namespace, String pretty, Boolean exact, Boolean export) throws ApiException {
    com.squareup.okhttp.Call call = readNamespacedConfigMapValidateBeforeCall(name, namespace, pretty, exact, export, null, null);
    Type localVarReturnType = new TypeToken<V1ConfigMap>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1ConfigMap(io.kubernetes.client.models.V1ConfigMap)

Example 2 with V1ConfigMap

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

the class CoreV1ApiTest method readNamespacedConfigMapTest.

/**
 * read the specified ConfigMap
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void readNamespacedConfigMapTest() throws ApiException {
    String name = null;
    String namespace = null;
    String pretty = null;
    Boolean exact = null;
    Boolean export = null;
    V1ConfigMap response = api.readNamespacedConfigMap(name, namespace, pretty, exact, export);
// TODO: test validations
}
Also used : V1ConfigMap(io.kubernetes.client.models.V1ConfigMap) Test(org.junit.Test)

Example 3 with V1ConfigMap

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

the class CoreV1ApiTest method patchNamespacedConfigMapTest.

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

Example 4 with V1ConfigMap

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

the class CoreV1Api method createNamespacedConfigMapWithHttpInfo.

/**
 * create a ConfigMap
 * @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;V1ConfigMap&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1ConfigMap> createNamespacedConfigMapWithHttpInfo(String namespace, V1ConfigMap body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = createNamespacedConfigMapValidateBeforeCall(namespace, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1ConfigMap>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1ConfigMap(io.kubernetes.client.models.V1ConfigMap)

Example 5 with V1ConfigMap

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

the class CoreV1Api method replaceNamespacedConfigMapAsync.

/**
 *  (asynchronously)
 * replace the specified ConfigMap
 * @param name name of the ConfigMap (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)
 * @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 replaceNamespacedConfigMapAsync(String name, String namespace, V1ConfigMap body, String pretty, final ApiCallback<V1ConfigMap> 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 = replaceNamespacedConfigMapValidateBeforeCall(name, namespace, body, pretty, progressListener, progressRequestListener);
    Type localVarReturnType = new TypeToken<V1ConfigMap>() {
    }.getType();
    apiClient.executeAsync(call, localVarReturnType, callback);
    return call;
}
Also used : ProgressResponseBody(io.kubernetes.client.ProgressResponseBody) Type(java.lang.reflect.Type) ProgressRequestBody(io.kubernetes.client.ProgressRequestBody) V1ConfigMap(io.kubernetes.client.models.V1ConfigMap)

Aggregations

V1ConfigMap (io.kubernetes.client.models.V1ConfigMap)14 Type (java.lang.reflect.Type)8 Test (org.junit.Test)6 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)4 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)4