use of io.kubernetes.client.models.V1PersistentVolume in project java by kubernetes-client.
the class CoreV1Api method replacePersistentVolumeWithHttpInfo.
/**
* replace the specified PersistentVolume
* @param name name of the PersistentVolume (required)
* @param body (required)
* @param pretty If 'true', then the output is pretty printed. (optional)
* @return ApiResponse<V1PersistentVolume>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<V1PersistentVolume> replacePersistentVolumeWithHttpInfo(String name, V1PersistentVolume body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = replacePersistentVolumeValidateBeforeCall(name, body, pretty, null, null);
Type localVarReturnType = new TypeToken<V1PersistentVolume>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
use of io.kubernetes.client.models.V1PersistentVolume in project java by kubernetes-client.
the class CoreV1Api method createPersistentVolumeAsync.
/**
* (asynchronously)
* create a PersistentVolume
* @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 createPersistentVolumeAsync(V1PersistentVolume body, String pretty, final ApiCallback<V1PersistentVolume> 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 = createPersistentVolumeValidateBeforeCall(body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1PersistentVolume>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1PersistentVolume in project java by kubernetes-client.
the class CoreV1ApiTest method patchPersistentVolumeStatusTest.
/**
* partially update status of the specified PersistentVolume
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void patchPersistentVolumeStatusTest() throws ApiException {
String name = null;
Object body = null;
String pretty = null;
V1PersistentVolume response = api.patchPersistentVolumeStatus(name, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1PersistentVolume in project java by kubernetes-client.
the class CoreV1Api method readPersistentVolumeAsync.
/**
* (asynchronously)
* read the specified PersistentVolume
* @param name name of the PersistentVolume (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)
* @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 readPersistentVolumeAsync(String name, String pretty, Boolean exact, Boolean export, final ApiCallback<V1PersistentVolume> 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 = readPersistentVolumeValidateBeforeCall(name, pretty, exact, export, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1PersistentVolume>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1PersistentVolume in project java by kubernetes-client.
the class CoreV1Api method replacePersistentVolumeStatusWithHttpInfo.
/**
* replace status of the specified PersistentVolume
* @param name name of the PersistentVolume (required)
* @param body (required)
* @param pretty If 'true', then the output is pretty printed. (optional)
* @return ApiResponse<V1PersistentVolume>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<V1PersistentVolume> replacePersistentVolumeStatusWithHttpInfo(String name, V1PersistentVolume body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = replacePersistentVolumeStatusValidateBeforeCall(name, body, pretty, null, null);
Type localVarReturnType = new TypeToken<V1PersistentVolume>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
Aggregations