use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class AutoscalingV1ApiTest method deleteNamespacedHorizontalPodAutoscalerTest.
/**
* delete a HorizontalPodAutoscaler
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedHorizontalPodAutoscalerTest() 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.deleteNamespacedHorizontalPodAutoscaler(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 AutoscalingV2beta1ApiTest method deleteNamespacedHorizontalPodAutoscalerTest.
/**
* delete a HorizontalPodAutoscaler
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedHorizontalPodAutoscalerTest() 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.deleteNamespacedHorizontalPodAutoscaler(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 BatchV1beta1ApiTest method deleteNamespacedCronJobTest.
/**
* delete a CronJob
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedCronJobTest() 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.deleteNamespacedCronJob(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 PolicyV1beta1ApiTest method deleteNamespacedPodDisruptionBudgetTest.
/**
* delete a PodDisruptionBudget
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedPodDisruptionBudgetTest() 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.deleteNamespacedPodDisruptionBudget(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 RbacAuthorizationV1beta1ApiTest method deleteNamespacedRoleTest.
/**
* delete a Role
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedRoleTest() 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.deleteNamespacedRole(name, namespace, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Aggregations