use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method createNamespacedIngressTest.
/**
* create an Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void createNamespacedIngressTest() throws ApiException {
String namespace = null;
V1beta1Ingress body = null;
String pretty = null;
V1beta1Ingress response = api.createNamespacedIngress(namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method replaceNamespacedIngressTest.
/**
* replace the specified Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void replaceNamespacedIngressTest() throws ApiException {
String name = null;
String namespace = null;
V1beta1Ingress body = null;
String pretty = null;
V1beta1Ingress response = api.replaceNamespacedIngress(name, namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method patchNamespacedIngressTest.
/**
* partially update the specified Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void patchNamespacedIngressTest() throws ApiException {
String name = null;
String namespace = null;
Object body = null;
String pretty = null;
V1beta1Ingress response = api.patchNamespacedIngress(name, namespace, body, pretty);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method readNamespacedIngressTest.
/**
* read the specified Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void readNamespacedIngressTest() throws ApiException {
String name = null;
String namespace = null;
String pretty = null;
Boolean exact = null;
Boolean export = null;
V1beta1Ingress response = api.readNamespacedIngress(name, namespace, pretty, exact, export);
// TODO: test validations
}
use of io.kubernetes.client.models.V1beta1Ingress in project java by kubernetes-client.
the class ExtensionsV1beta1ApiTest method patchNamespacedIngressStatusTest.
/**
* partially update status of the specified Ingress
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void patchNamespacedIngressStatusTest() throws ApiException {
String name = null;
String namespace = null;
Object body = null;
String pretty = null;
V1beta1Ingress response = api.patchNamespacedIngressStatus(name, namespace, body, pretty);
// TODO: test validations
}
Aggregations