use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1Api method replaceCustomResourceDefinitionStatusAsync.
/**
* (asynchronously)
* replace status of the specified CustomResourceDefinition
* @param name name of the CustomResourceDefinition (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 replaceCustomResourceDefinitionStatusAsync(String name, V1beta1CustomResourceDefinition body, String pretty, final ApiCallback<V1beta1CustomResourceDefinition> 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 = replaceCustomResourceDefinitionStatusValidateBeforeCall(name, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1Api method patchCustomResourceDefinitionAsync.
/**
* (asynchronously)
* partially update the specified CustomResourceDefinition
* @param name name of the CustomResourceDefinition (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 patchCustomResourceDefinitionAsync(String name, Object body, String pretty, final ApiCallback<V1beta1CustomResourceDefinition> 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 = patchCustomResourceDefinitionValidateBeforeCall(name, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1Api method createCustomResourceDefinitionAsync.
/**
* (asynchronously)
* create a CustomResourceDefinition
* @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 createCustomResourceDefinitionAsync(V1beta1CustomResourceDefinition body, String pretty, final ApiCallback<V1beta1CustomResourceDefinition> 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 = createCustomResourceDefinitionValidateBeforeCall(body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<V1beta1CustomResourceDefinition>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1ApiTest method replaceCustomResourceDefinitionTest.
/**
* replace the specified CustomResourceDefinition
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceCustomResourceDefinitionTest() throws ApiException {
String name = null;
V1beta1CustomResourceDefinition body = null;
String pretty = null;
V1beta1CustomResourceDefinition response = api.replaceCustomResourceDefinition(name, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1CustomResourceDefinition in project java by kubernetes-client.
the class ApiextensionsV1beta1ApiTest method patchCustomResourceDefinitionTest.
/**
* partially update the specified CustomResourceDefinition
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void patchCustomResourceDefinitionTest() throws ApiException {
String name = null;
Object body = null;
String pretty = null;
V1beta1CustomResourceDefinition response = api.patchCustomResourceDefinition(name, body, pretty);
// TODO: test validations
}
Aggregations