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
}
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
}
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
}
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
}
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
}
Aggregations