use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1Api method replaceNamespaceStatusAsync.
/**
* (asynchronously)
* replace status of the specified Namespace
* @param name name of the Namespace (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 replaceNamespaceStatusAsync(String name, V1Namespace body, String pretty, final ApiCallback<V1Namespace> 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 = replaceNamespaceStatusValidateBeforeCall(name, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1Namespace>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1ApiTest method patchNamespaceStatusTest.
/**
* partially update status of the specified Namespace
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void patchNamespaceStatusTest() throws ApiException {
String name = null;
Object body = null;
String pretty = null;
V1Namespace response = api.patchNamespaceStatus(name, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1ApiTest method replaceNamespaceStatusTest.
/**
* replace status of the specified Namespace
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceNamespaceStatusTest() throws ApiException {
String name = null;
V1Namespace body = null;
String pretty = null;
V1Namespace response = api.replaceNamespaceStatus(name, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1ApiTest method readNamespaceStatusTest.
/**
* read status of the specified Namespace
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void readNamespaceStatusTest() throws ApiException {
String name = null;
String pretty = null;
V1Namespace response = api.readNamespaceStatus(name, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1Namespace in project java by kubernetes-client.
the class CoreV1ApiTest method replaceNamespaceTest.
/**
* replace the specified Namespace
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceNamespaceTest() throws ApiException {
String name = null;
V1Namespace body = null;
String pretty = null;
V1Namespace response = api.replaceNamespace(name, body, pretty);
// TODO: test validations
}
Aggregations