Search in sources :

Example 6 with V1ServiceAccount

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

the class CoreV1Api method readNamespacedServiceAccountWithHttpInfo.

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

Example 7 with V1ServiceAccount

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

the class CoreV1ApiTest method patchNamespacedServiceAccountTest.

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

Example 8 with V1ServiceAccount

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

the class CoreV1Api method patchNamespacedServiceAccountWithHttpInfo.

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

Example 9 with V1ServiceAccount

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

the class CoreV1Api method readNamespacedServiceAccountAsync.

/**
 *  (asynchronously)
 * read the specified ServiceAccount
 * @param name name of the ServiceAccount (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)
 * @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)
 * @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 readNamespacedServiceAccountAsync(String name, String namespace, String pretty, Boolean exact, Boolean export, final ApiCallback<V1ServiceAccount> 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 = readNamespacedServiceAccountValidateBeforeCall(name, namespace, pretty, exact, export, progressListener, progressRequestListener);
    Type localVarReturnType = new TypeToken<V1ServiceAccount>() {
    }.getType();
    apiClient.executeAsync(call, localVarReturnType, callback);
    return call;
}
Also used : V1ServiceAccount(io.kubernetes.client.models.V1ServiceAccount) ProgressResponseBody(io.kubernetes.client.ProgressResponseBody) Type(java.lang.reflect.Type) ProgressRequestBody(io.kubernetes.client.ProgressRequestBody)

Example 10 with V1ServiceAccount

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

the class CoreV1Api method createNamespacedServiceAccountWithHttpInfo.

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

Aggregations

V1ServiceAccount (io.kubernetes.client.models.V1ServiceAccount)14 Type (java.lang.reflect.Type)8 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)4 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)4 Test (org.junit.Test)4 ApiException (io.kubernetes.client.ApiException)2 V1ServiceAccountList (io.kubernetes.client.models.V1ServiceAccountList)2 V1ObjectReference (io.kubernetes.client.models.V1ObjectReference)1 V1Secret (io.kubernetes.client.models.V1Secret)1 ArrayList (java.util.ArrayList)1