Search in sources :

Example 1 with WeblogicApi

use of oracle.kubernetes.weblogic.domain.v1.api.WeblogicApi in project weblogic-kubernetes-operator by oracle.

the class CallBuilder method listDomain.

/* Domains */
/**
 * List domains
 * @param namespace Namespace
 * @return Domain list
 * @throws ApiException API exception
 */
public DomainList listDomain(String namespace) throws ApiException {
    String _continue = "";
    ApiClient client = helper.take();
    try {
        return new WeblogicApi(client).listWebLogicOracleV1NamespacedDomain(namespace, pretty, _continue, fieldSelector, includeUninitialized, labelSelector, limit, resourceVersion, timeoutSeconds, watch);
    } finally {
        helper.recycle(client);
    }
}
Also used : WeblogicApi(oracle.kubernetes.weblogic.domain.v1.api.WeblogicApi) ApiClient(io.kubernetes.client.ApiClient)

Aggregations

ApiClient (io.kubernetes.client.ApiClient)1 WeblogicApi (oracle.kubernetes.weblogic.domain.v1.api.WeblogicApi)1