use of io.kubernetes.client.models.V1Status in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method deleteNamespacedReplicaSetTest.
/**
* delete a ReplicaSet
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedReplicaSetTest() 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.deleteNamespacedReplicaSet(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 ExtensionsV1beta1ApiTest method deleteCollectionNamespacedDaemonSetTest.
/**
* delete collection of DaemonSet
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteCollectionNamespacedDaemonSetTest() 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.deleteCollectionNamespacedDaemonSet(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 ExtensionsV1beta1ApiTest method deleteCollectionNamespacedDeploymentTest.
/**
* delete collection of Deployment
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteCollectionNamespacedDeploymentTest() 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.deleteCollectionNamespacedDeployment(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 ExtensionsV1beta1ApiTest method deleteCollectionNamespacedReplicaSetTest.
/**
* delete collection of ReplicaSet
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteCollectionNamespacedReplicaSetTest() 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.deleteCollectionNamespacedReplicaSet(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 deleteNamespacedPodTemplateTest.
/**
* delete a PodTemplate
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedPodTemplateTest() 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.deleteNamespacedPodTemplate(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Aggregations