use of io.kubernetes.client.models.V1DeleteOptions in project java by kubernetes-client.
the class ApiextensionsV1beta1ApiTest method deleteCustomResourceDefinitionTest.
/**
* delete a CustomResourceDefinition
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteCustomResourceDefinitionTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteCustomResourceDefinition(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 deleteNamespacedDeploymentTest.
/**
* delete a Deployment
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedDeploymentTest() 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.deleteNamespacedDeployment(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 AdmissionregistrationV1alpha1ApiTest method deleteInitializerConfigurationTest.
/**
* delete an InitializerConfiguration
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteInitializerConfigurationTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteInitializerConfiguration(name, 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 deleteNamespacedServiceAccountTest.
/**
* delete a ServiceAccount
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteNamespacedServiceAccountTest() 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.deleteNamespacedServiceAccount(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 CertificatesV1beta1ApiTest method deleteCertificateSigningRequestTest.
/**
* delete a CertificateSigningRequest
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void deleteCertificateSigningRequestTest() throws ApiException {
String name = null;
V1DeleteOptions body = null;
String pretty = null;
Integer gracePeriodSeconds = null;
Boolean orphanDependents = null;
String propagationPolicy = null;
V1Status response = api.deleteCertificateSigningRequest(name, body, pretty, gracePeriodSeconds, orphanDependents, propagationPolicy);
// TODO: test validations
}
Aggregations