use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method deleteNamespacedIngressTest.
/**
* delete an Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedIngressTest() 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.deleteNamespacedIngress(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
use of io.kubernetes.client.models.V1DeleteOptions 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.V1DeleteOptions 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
}
use of io.kubernetes.client.models.V1DeleteOptions 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.V1DeleteOptions 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
}
Aggregations