Search in sources :

Example 1 with V1beta1StatefulSet

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

the class AppsV1beta1ApiTest method patchNamespacedStatefulSetTest.

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

Example 2 with V1beta1StatefulSet

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

the class AppsV1beta1ApiTest method readNamespacedStatefulSetStatusTest.

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

Example 3 with V1beta1StatefulSet

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

the class AppsV1beta1ApiTest method createNamespacedStatefulSetTest.

/**
 * create a StatefulSet
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void createNamespacedStatefulSetTest() throws ApiException {
    String namespace = null;
    V1beta1StatefulSet body = null;
    String pretty = null;
    V1beta1StatefulSet response = api.createNamespacedStatefulSet(namespace, body, pretty);
// TODO: test validations
}
Also used : V1beta1StatefulSet(io.kubernetes.client.models.V1beta1StatefulSet) Test(org.junit.Test)

Example 4 with V1beta1StatefulSet

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

the class AppsV1beta1ApiTest method patchNamespacedStatefulSetStatusTest.

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

Example 5 with V1beta1StatefulSet

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

the class AppsV1beta1Api method readNamespacedStatefulSetStatusWithHttpInfo.

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

Aggregations

V1beta1StatefulSet (io.kubernetes.client.models.V1beta1StatefulSet)25 Type (java.lang.reflect.Type)14 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)7 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)7 Test (org.junit.Test)7 ApiException (io.kubernetes.client.ApiException)3 V1beta1StatefulSetSpec (io.kubernetes.client.models.V1beta1StatefulSetSpec)3 TopologyRuntimeManagementException (com.twitter.heron.scheduler.TopologyRuntimeManagementException)2 Response (com.squareup.okhttp.Response)1 TopologySubmissionException (com.twitter.heron.scheduler.TopologySubmissionException)1 Config (com.twitter.heron.spi.common.Config)1 PackingPlan (com.twitter.heron.spi.packing.PackingPlan)1 Resource (com.twitter.heron.spi.packing.Resource)1 V1LabelSelector (io.kubernetes.client.models.V1LabelSelector)1 V1ObjectMeta (io.kubernetes.client.models.V1ObjectMeta)1 V1PodTemplateSpec (io.kubernetes.client.models.V1PodTemplateSpec)1 IOException (java.io.IOException)1