use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method replaceNamespacedDeploymentStatusTest.
/**
* replace status of the specified Deployment
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceNamespacedDeploymentStatusTest() throws ApiException {
String name = null;
String namespace = null;
ExtensionsV1beta1Deployment body = null;
String pretty = null;
ExtensionsV1beta1Deployment response = api.replaceNamespacedDeploymentStatus(name, namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method patchNamespacedDeploymentStatusTest.
/**
* partially update status of the specified Deployment
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void patchNamespacedDeploymentStatusTest() throws ApiException {
String name = null;
String namespace = null;
Object body = null;
String pretty = null;
ExtensionsV1beta1Deployment response = api.patchNamespacedDeploymentStatus(name, namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.ExtensionsV1beta1Deployment in project java by kubernetes-client.
the class ExtensionsV1beta1Api method readNamespacedDeploymentWithHttpInfo.
/**
* read 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 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)
* @return ApiResponse<ExtensionsV1beta1Deployment>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<ExtensionsV1beta1Deployment> readNamespacedDeploymentWithHttpInfo(String name, String namespace, String pretty, Boolean exact, Boolean export) throws ApiException {
com.squareup.okhttp.Call call = readNamespacedDeploymentValidateBeforeCall(name, namespace, pretty, exact, export, 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 replaceNamespacedDeploymentWithHttpInfo.
/**
* replace 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> replaceNamespacedDeploymentWithHttpInfo(String name, String namespace, ExtensionsV1beta1Deployment body, String pretty) throws ApiException {
com.squareup.okhttp.Call call = replaceNamespacedDeploymentValidateBeforeCall(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 readNamespacedDeploymentStatusWithHttpInfo.
/**
* 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)
* @return ApiResponse<ExtensionsV1beta1Deployment>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
*/
public ApiResponse<ExtensionsV1beta1Deployment> readNamespacedDeploymentStatusWithHttpInfo(String name, String namespace, String pretty) throws ApiException {
com.squareup.okhttp.Call call = readNamespacedDeploymentStatusValidateBeforeCall(name, namespace, pretty, null, null);
Type localVarReturnType = new TypeToken<ExtensionsV1beta1Deployment>() {
}.getType();
return apiClient.execute(call, localVarReturnType);
}
Aggregations