Search in sources :

Example 41 with V1Status

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

the class CoreV1ApiTest method deleteNamespacedEndpointsTest.

/**
 * delete Endpoints
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void deleteNamespacedEndpointsTest() throws ApiException {
    String name = null;
    String namespace = null;
    V1DeleteOptions body = null;
    String pretty = null;
    Integer gracePeriodSeconds = null;
    Boolean orphanDependents = null;
    String propagationPolicy = null;
    V1Status response = api.deleteNamespacedEndpoints(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Also used : V1DeleteOptions(io.kubernetes.client.models.V1DeleteOptions) V1Status(io.kubernetes.client.models.V1Status) Test(org.junit.Test)

Example 42 with V1Status

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

the class CoreV1ApiTest method deleteCollectionNamespacedServiceAccountTest.

/**
 * delete collection of ServiceAccount
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void deleteCollectionNamespacedServiceAccountTest() throws ApiException {
    String namespace = null;
    String pretty = null;
    String _continue = null;
    String fieldSelector = null;
    Boolean includeUninitialized = null;
    String labelSelector = null;
    Integer limit = null;
    String resourceVersion = null;
    Integer timeoutSeconds = null;
    Boolean watch = null;
    V1Status response = api.deleteCollectionNamespacedServiceAccount(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch);
// TODO: test validations
}
Also used : V1Status(io.kubernetes.client.models.V1Status) Test(org.junit.Test)

Example 43 with V1Status

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

the class CoreV1ApiTest method deleteCollectionNamespacedLimitRangeTest.

/**
 * delete collection of LimitRange
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void deleteCollectionNamespacedLimitRangeTest() throws ApiException {
    String namespace = null;
    String pretty = null;
    String _continue = null;
    String fieldSelector = null;
    Boolean includeUninitialized = null;
    String labelSelector = null;
    Integer limit = null;
    String resourceVersion = null;
    Integer timeoutSeconds = null;
    Boolean watch = null;
    V1Status response = api.deleteCollectionNamespacedLimitRange(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch);
// TODO: test validations
}
Also used : V1Status(io.kubernetes.client.models.V1Status) Test(org.junit.Test)

Example 44 with V1Status

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

the class CoreV1ApiTest method deleteNamespacedLimitRangeTest.

/**
 * delete a LimitRange
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void deleteNamespacedLimitRangeTest() throws ApiException {
    String name = null;
    String namespace = null;
    V1DeleteOptions body = null;
    String pretty = null;
    Integer gracePeriodSeconds = null;
    Boolean orphanDependents = null;
    String propagationPolicy = null;
    V1Status response = api.deleteNamespacedLimitRange(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Also used : V1DeleteOptions(io.kubernetes.client.models.V1DeleteOptions) V1Status(io.kubernetes.client.models.V1Status) Test(org.junit.Test)

Example 45 with V1Status

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

the class CoreV1ApiTest method deleteCollectionNamespacedReplicationControllerTest.

/**
 * delete collection of ReplicationController
 *
 * @throws ApiException
 *          if the Api call fails
 */
@Test
public void deleteCollectionNamespacedReplicationControllerTest() throws ApiException {
    String namespace = null;
    String pretty = null;
    String _continue = null;
    String fieldSelector = null;
    Boolean includeUninitialized = null;
    String labelSelector = null;
    Integer limit = null;
    String resourceVersion = null;
    Integer timeoutSeconds = null;
    Boolean watch = null;
    V1Status response = api.deleteCollectionNamespacedReplicationController(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch);
// TODO: test validations
}
Also used : V1Status(io.kubernetes.client.models.V1Status) Test(org.junit.Test)

Aggregations

V1Status (io.kubernetes.client.models.V1Status)336 Type (java.lang.reflect.Type)224 ProgressRequestBody (io.kubernetes.client.ProgressRequestBody)112 ProgressResponseBody (io.kubernetes.client.ProgressResponseBody)112 Test (org.junit.Test)112 V1DeleteOptions (io.kubernetes.client.models.V1DeleteOptions)56