use of io.kubernetes.client.models.V1ServiceAccount in project java by kubernetes-client.
the class CoreV1Api method replaceNamespacedServiceAccountAsync.
/**
* (asynchronously)
* replace 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 '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 replaceNamespacedServiceAccountAsync(String name, String namespace, V1ServiceAccount body, String pretty, 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 = replaceNamespacedServiceAccountValidateBeforeCall(name, namespace, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1ServiceAccount>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1ServiceAccount in project java by kubernetes-client.
the class CoreV1Api method patchNamespacedServiceAccountAsync.
/**
* (asynchronously)
* 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 '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 patchNamespacedServiceAccountAsync(String name, String namespace, Object body, String pretty, 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 = patchNamespacedServiceAccountValidateBeforeCall(name, namespace, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1ServiceAccount>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1ServiceAccount in project java by kubernetes-client.
the class CoreV1ApiTest method replaceNamespacedServiceAccountTest.
/**
* replace the specified ServiceAccount
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceNamespacedServiceAccountTest() throws ApiException {
String name = null;
String namespace = null;
V1ServiceAccount body = null;
String pretty = null;
V1ServiceAccount response = api.replaceNamespacedServiceAccount(name, namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1ServiceAccount in project java by kubernetes-client.
the class CoreV1ApiTest method readNamespacedServiceAccountTest.
/**
* read the specified ServiceAccount
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void readNamespacedServiceAccountTest() throws ApiException {
String name = null;
String namespace = null;
String pretty = null;
Boolean exact = null;
Boolean export = null;
V1ServiceAccount response = api.readNamespacedServiceAccount(name, namespace, pretty, exact, export);
// TODO: test validations
}
use of io.kubernetes.client.models.V1ServiceAccount in project java by kubernetes-client.
the class CoreV1Api method createNamespacedServiceAccountAsync.
/**
* (asynchronously)
* create a ServiceAccount
* @param namespace object name and auth scope, such as for teams and projects (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 createNamespacedServiceAccountAsync(String namespace, V1ServiceAccount body, String pretty, 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 = createNamespacedServiceAccountValidateBeforeCall(namespace, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1ServiceAccount>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
Aggregations