use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1Api method patchNamespacedDeploymentWithHttpInfo.
/**
* partially update the specified Deployment
* @param name name of the Deployment (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)
* @return ApiResponse<ExtensionsV1beta1Deployment>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<ExtensionsV1beta1Deployment> patchNamespacedDeploymentWithHttpInfo(String name, String namespace, Object body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = patchNamespacedDeploymentValidateBeforeCall(name, namespace, body, pretty, null, null);
Type localVarReturnType = new TypeToken<ExtensionsV1beta1Deployment>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1Api method patchNamespacedDeploymentAsync.
/**
* (asynchronously)
* partially update the specified Deployment
* @param name name of the Deployment (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 patchNamespacedDeploymentAsync(String name, String namespace, Object body, String pretty, final ApiCallback<ExtensionsV1beta1Deployment> 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 = patchNamespacedDeploymentValidateBeforeCall(name, namespace, body, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<ExtensionsV1beta1Deployment>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class PatchExample method PatchDeployment.
public ExtensionsV1beta1Deployment PatchDeployment(String deployName, String namespace, Object body, String pretty) throws ApiException {
ExtensionsV1beta1Api api = new ExtensionsV1beta1Api();
ExtensionsV1beta1Deployment deploy = api.patchNamespacedDeployment(deployName, namespace, body, pretty);
return deploy;
}
use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1Api method readNamespacedDeploymentStatusAsync.
/**
* (asynchronously)
* read status of the specified Deployment
* @param name name of the Deployment (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 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 readNamespacedDeploymentStatusAsync(String name, String namespace, String pretty, final ApiCallback<ExtensionsV1beta1Deployment> 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 = readNamespacedDeploymentStatusValidateBeforeCall(name, namespace, pretty, progressListener, progressRequestListener);
Type localVarReturnType = new TypeToken<ExtensionsV1beta1Deployment>() {
}.getType();
apiClient.executeAsync(call, localVarReturnType, callback);
return call;
}
use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1Api method createNamespacedDeploymentWithHttpInfo.
/**
* create a Deployment
* @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)
* @return ApiResponse<ExtensionsV1beta1Deployment>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<ExtensionsV1beta1Deployment> createNamespacedDeploymentWithHttpInfo(String namespace, ExtensionsV1beta1Deployment body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = createNamespacedDeploymentValidateBeforeCall(namespace, body, pretty, null, null);
Type localVarReturnType = new TypeToken<ExtensionsV1beta1Deployment>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
Aggregations