use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class SchedulingV1alpha1ApiTest method deletePriorityClassTest.
/**
* delete a PriorityClass
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deletePriorityClassTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deletePriorityClass(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class SettingsV1alpha1ApiTest method deleteNamespacedPodPresetTest.
/**
* delete a PodPreset
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedPodPresetTest() 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.deleteNamespacedPodPreset(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 StorageV1ApiTest method deleteStorageClassTest.
/**
* delete a StorageClass
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteStorageClassTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteStorageClass(name, 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 deleteClusterRoleBindingTest.
/**
* delete a ClusterRoleBinding
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteClusterRoleBindingTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteClusterRoleBinding(name, 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 deleteClusterRoleTest.
/**
* delete a ClusterRole
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteClusterRoleTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteClusterRole(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Aggregations