use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class ApiregistrationV1beta1ApiTest method deleteAPIServiceTest.
/**
* delete an APIService
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteAPIServiceTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteAPIService(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class AppsV1beta1ApiTest method deleteNamespacedStatefulSetTest.
/**
* delete a StatefulSet
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedStatefulSetTest() 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.deleteNamespacedStatefulSet(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 AppsV1beta2ApiTest 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 deleteNamespacedPersistentVolumeClaimTest.
/**
* delete a PersistentVolumeClaim
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedPersistentVolumeClaimTest() 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.deleteNamespacedPersistentVolumeClaim(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 BatchV1ApiTest method deleteNamespacedJobTest.
/**
* delete a Job
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedJobTest() 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.deleteNamespacedJob(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Aggregations