Search in sources :

Example 6 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method patchNamespacedPodWithHttpInfo.

/**
 * partially update the specified Pod
 * @param name name of the Pod (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<V1Pod>
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Pod> patchNamespacedPodWithHttpInfo(String name, String namespace, Object body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = patchNamespacedPodValidateBeforeCall(name, namespace, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod)

Example 7 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1Api method replaceNamespacedPodWithHttpInfo.

/**
 * replace the specified Pod
 * @param name name of the Pod (required)
 * @param namespace object name and auth scope, such as for teams and projects (required)
 * @param body  (required)
 * @param pretty If &#39;true&#39;, then the output is pretty printed. (optional)
 * @return ApiResponse&lt;V1Pod&gt;
 * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
 */
public ApiResponse<V1Pod> replaceNamespacedPodWithHttpInfo(String name, String namespace, V1Pod body, String pretty) throws ApiException {
    com.squareup.okhttp.Call call = replaceNamespacedPodValidateBeforeCall(name, namespace, body, pretty, null, null);
    Type localVarReturnType = new TypeToken<V1Pod>() {
    }.getType();
    return apiClient.execute(call, localVarReturnType);
}
Also used : Type(java.lang.reflect.Type) V1Pod(io.kubernetes.client.models.V1Pod)

Example 8 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1ApiTest method replaceNamespacedPodStatusTest.

/**
 * replace status of the specified Pod
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void replaceNamespacedPodStatusTest() throws ApiException {
    String name = null;
    String namespace = null;
    V1Pod body = null;
    String pretty = null;
    V1Pod response = api.replaceNamespacedPodStatus(name, namespace, body, pretty);
// TODO: test validations
}
Also used : V1Pod(io.kubernetes.client.models.V1Pod) Test(org.junit.Test)

Example 9 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1ApiTest method patchNamespacedPodStatusTest.

/**
 * partially update status of the specified Pod
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void patchNamespacedPodStatusTest() throws ApiException {
    String name = null;
    String namespace = null;
    Object body = null;
    String pretty = null;
    V1Pod response = api.patchNamespacedPodStatus(name, namespace, body, pretty);
// TODO: test validations
}
Also used : V1Pod(io.kubernetes.client.models.V1Pod) Test(org.junit.Test)

Example 10 with V1Pod

use of io.kubernetes.client.models.V1Pod in project java by kubernetes-client.

the class CoreV1ApiTest method readNamespacedPodStatusTest.

/**
 * read status of the specified Pod
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void readNamespacedPodStatusTest() throws ApiException {
    String name = null;
    String namespace = null;
    String pretty = null;
    V1Pod response = api.readNamespacedPodStatus(name, namespace, pretty);
// TODO: test validations
}
Also used : V1Pod(io.kubernetes.client.models.V1Pod) Test(org.junit.Test)

Aggregations

V1Pod (io.kubernetes.client.models.V1Pod)31 Type (java.lang.reflect.Type)14 Test (org.junit.Test)8 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)7 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)7 ApiException (io.kubernetes.client.ApiException)2 V1ObjectMeta (io.kubernetes.client.models.V1ObjectMeta)2 V1PodList (io.kubernetes.client.models.V1PodList)2 AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)2 DomainPresenceInfo (oracle.kubernetes.operator.helpers.DomainPresenceInfo)2 ServerKubernetesObjects (oracle.kubernetes.operator.helpers.ServerKubernetesObjects)2 HttpUserAgentTest (com.meterware.pseudoserver.HttpUserAgentTest)1 WorkerNetworkInfo (edu.iu.dsc.tws.rsched.bootstrap.WorkerNetworkInfo)1 JSON (io.kubernetes.client.JSON)1 V1ConfigMap (io.kubernetes.client.models.V1ConfigMap)1 V1DeleteOptions (io.kubernetes.client.models.V1DeleteOptions)1 V1EnvVar (io.kubernetes.client.models.V1EnvVar)1 V1PersistentVolumeClaimList (io.kubernetes.client.models.V1PersistentVolumeClaimList)1 V1Service (io.kubernetes.client.models.V1Service)1 V1ServiceList (io.kubernetes.client.models.V1ServiceList)1