com.oracle.bdcs.bdm.client.api.Clusters.java Source code

Java tutorial

Introduction

Here is the source code for com.oracle.bdcs.bdm.client.api.Clusters.java

Source

/**
 * SDK for Bigdata Manager
 * Bigdata manager java SDK
 *
 * OpenAPI spec version: 1
 * 
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.oracle.bdcs.bdm.client.api;

import com.oracle.bdcs.bdm.client.model.ClusterCollectionResponse;
import com.oracle.bdcs.bdm.client.model.RestClusterResponse;
import com.oracle.bdcs.bdm.client.ApiCallback;
import com.oracle.bdcs.bdm.client.ApiClient;
import com.oracle.bdcs.bdm.client.ApiException;
import com.oracle.bdcs.bdm.client.ApiResponse;
import com.oracle.bdcs.bdm.client.Configuration;
import com.oracle.bdcs.bdm.client.Pair;
import com.oracle.bdcs.bdm.client.ProgressRequestBody;
import com.oracle.bdcs.bdm.client.ProgressResponseBody;

import com.google.gson.reflect.TypeToken;

import java.io.IOException;

import com.oracle.bdcs.bdm.client.model.DataSourceCollectionResponse;
import com.oracle.bdcs.bdm.client.model.Cluster;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class Clusters {
    private ApiClient apiClient;

    public Clusters() {
        this(Configuration.getDefaultApiClient());
    }

    public Clusters(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    public ApiClient getApiClient() {
        return apiClient;
    }

    public void setApiClient(ApiClient apiClient) {
        this.apiClient = apiClient;
    }

    /* Build call for getCluster */
    private com.squareup.okhttp.Call getClusterCall(String clusterName, String tenantName,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // verify the required parameter 'clusterName' is set
        if (clusterName == null) {
            throw new ApiException("Missing the required parameter 'clusterName' when calling getCluster(Async)");
        }

        // verify the required parameter 'tenantName' is set
        if (tenantName == null) {
            throw new ApiException("Missing the required parameter 'tenantName' when calling getCluster(Async)");
        }

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/clusters/{clusterName}".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "clusterName" + "\\}", apiClient.escapeString(clusterName.toString()))
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();

        Map<String, String> localVarHeaderParams = new HashMap<String, String>();

        Map<String, Object> localVarFormParams = new HashMap<String, Object>();

        final String[] localVarAccepts = {

        };
        final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
        if (localVarAccept != null)
            localVarHeaderParams.put("Accept", localVarAccept);

        final String[] localVarContentTypes = {

        };
        final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
        localVarHeaderParams.put("Content-Type", localVarContentType);

        if (progressListener != null) {
            apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
                @Override
                public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                        throws IOException {
                    com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                    return originalResponse.newBuilder()
                            .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
                }
            });
        }

        String[] localVarAuthNames = new String[] {};
        return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
                localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Get cluster by its name.
     * 
     * @param clusterName name of the data source (required)
     * @param tenantName  (required)
     * @return RestClusterResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestClusterResponse getCluster(String clusterName, String tenantName) throws ApiException {
        ApiResponse<RestClusterResponse> resp = getClusterWithHttpInfo(clusterName, tenantName);
        return resp.getData();
    }

    /**
     * Get cluster by its name.
     * 
     * @param clusterName name of the data source (required)
     * @param tenantName  (required)
     * @return ApiResponse&lt;RestClusterResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestClusterResponse> getClusterWithHttpInfo(String clusterName, String tenantName)
            throws ApiException {
        com.squareup.okhttp.Call call = getClusterCall(clusterName, tenantName, null, null);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Get cluster by its name. (asynchronously)
     * 
     * @param clusterName name of the data source (required)
     * @param tenantName  (required)
     * @param callback The callback to be executed when the API call finishes
     * @return The request call
     * @throws ApiException If fail to process the API call, e.g. serializing the request body object
     */
    public com.squareup.okhttp.Call getClusterAsync(String clusterName, String tenantName,
            final ApiCallback<RestClusterResponse> callback) throws ApiException {

        ProgressResponseBody.ProgressListener progressListener = null;
        ProgressRequestBody.ProgressRequestListener progressRequestListener = null;

        if (callback != null) {
            progressListener = new ProgressResponseBody.ProgressListener() {
                @Override
                public void update(long bytesRead, long contentLength, boolean done) {
                    callback.onDownloadProgress(bytesRead, contentLength, done);
                }
            };

            progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
                @Override
                public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
                    callback.onUploadProgress(bytesWritten, contentLength, done);
                }
            };
        }

        com.squareup.okhttp.Call call = getClusterCall(clusterName, tenantName, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for listAllClusters */
    private com.squareup.okhttp.Call listAllClustersCall(String tenantName, Integer offset, Integer limit,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // verify the required parameter 'tenantName' is set
        if (tenantName == null) {
            throw new ApiException(
                    "Missing the required parameter 'tenantName' when calling listAllClusters(Async)");
        }

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/clusters".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();
        if (offset != null)
            localVarQueryParams.addAll(apiClient.parameterToPairs("", "offset", offset));
        if (limit != null)
            localVarQueryParams.addAll(apiClient.parameterToPairs("", "limit", limit));

        Map<String, String> localVarHeaderParams = new HashMap<String, String>();

        Map<String, Object> localVarFormParams = new HashMap<String, Object>();

        final String[] localVarAccepts = {

        };
        final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
        if (localVarAccept != null)
            localVarHeaderParams.put("Accept", localVarAccept);

        final String[] localVarContentTypes = {

        };
        final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
        localVarHeaderParams.put("Content-Type", localVarContentType);

        if (progressListener != null) {
            apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
                @Override
                public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                        throws IOException {
                    com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                    return originalResponse.newBuilder()
                            .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
                }
            });
        }

        String[] localVarAuthNames = new String[] {};
        return apiClient.buildCall(localVarPath, "GET", localVarQueryParams, localVarPostBody, localVarHeaderParams,
                localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * List all registered clusters.
     * 
     * @param tenantName  (required)
     * @param offset  (optional)
     * @param limit  (optional)
     * @return ClusterCollectionResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ClusterCollectionResponse listAllClusters(String tenantName, Integer offset, Integer limit)
            throws ApiException {
        ApiResponse<ClusterCollectionResponse> resp = listAllClustersWithHttpInfo(tenantName, offset, limit);
        return resp.getData();
    }

    /**
     * List all registered clusters.
     * 
     * @param tenantName  (required)
     * @param offset  (optional)
     * @param limit  (optional)
     * @return ApiResponse&lt;CollectionResourceResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<ClusterCollectionResponse> listAllClustersWithHttpInfo(String tenantName, Integer offset,
            Integer limit) throws ApiException {
        com.squareup.okhttp.Call call = listAllClustersCall(tenantName, offset, limit, null, null);
        Type localVarReturnType = new TypeToken<ClusterCollectionResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * List all registered clusters. (asynchronously)
     * 
     * @param tenantName  (required)
     * @param offset  (optional)
     * @param limit  (optional)
     * @param callback The callback to be executed when the API call finishes
     * @return The request call
     * @throws ApiException If fail to process the API call, e.g. serializing the request body object
     */
    public com.squareup.okhttp.Call listAllClustersAsync(String tenantName, Integer offset, Integer limit,
            final ApiCallback<ClusterCollectionResponse> callback) throws ApiException {

        ProgressResponseBody.ProgressListener progressListener = null;
        ProgressRequestBody.ProgressRequestListener progressRequestListener = null;

        if (callback != null) {
            progressListener = new ProgressResponseBody.ProgressListener() {
                @Override
                public void update(long bytesRead, long contentLength, boolean done) {
                    callback.onDownloadProgress(bytesRead, contentLength, done);
                }
            };

            progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
                @Override
                public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
                    callback.onUploadProgress(bytesWritten, contentLength, done);
                }
            };
        }

        com.squareup.okhttp.Call call = listAllClustersCall(tenantName, offset, limit, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<ClusterCollectionResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for registerNewCluster */
    private com.squareup.okhttp.Call registerNewClusterCall(Cluster body, String tenantName,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = body;

        // verify the required parameter 'body' is set
        if (body == null) {
            throw new ApiException("Missing the required parameter 'body' when calling registerNewCluster(Async)");
        }

        // verify the required parameter 'tenantName' is set
        if (tenantName == null) {
            throw new ApiException(
                    "Missing the required parameter 'tenantName' when calling registerNewCluster(Async)");
        }

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/clusters".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();

        Map<String, String> localVarHeaderParams = new HashMap<String, String>();

        Map<String, Object> localVarFormParams = new HashMap<String, Object>();

        final String[] localVarAccepts = {

        };
        final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
        if (localVarAccept != null)
            localVarHeaderParams.put("Accept", localVarAccept);

        final String[] localVarContentTypes = {

        };
        final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
        localVarHeaderParams.put("Content-Type", localVarContentType);

        if (progressListener != null) {
            apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
                @Override
                public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                        throws IOException {
                    com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                    return originalResponse.newBuilder()
                            .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
                }
            });
        }

        String[] localVarAuthNames = new String[] {};
        return apiClient.buildCall(localVarPath, "POST", localVarQueryParams, localVarPostBody,
                localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Register new cluster.
     * 
     * @param body serialization of the data source entity to be created. See {@link Cluster}. (required)
     * @param tenantName  (required)
     * @return RestClusterResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestClusterResponse registerNewCluster(Cluster body, String tenantName) throws ApiException {
        ApiResponse<RestClusterResponse> resp = registerNewClusterWithHttpInfo(body, tenantName);
        return resp.getData();
    }

    /**
     * Register new cluster.
     * 
     * @param body serialization of the data source entity to be created. See {@link Cluster}. (required)
     * @param tenantName  (required)
     * @return ApiResponse&lt;RestClusterResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestClusterResponse> registerNewClusterWithHttpInfo(Cluster body, String tenantName)
            throws ApiException {
        com.squareup.okhttp.Call call = registerNewClusterCall(body, tenantName, null, null);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Register new cluster. (asynchronously)
     * 
     * @param body serialization of the data source entity to be created. See {@link Cluster}. (required)
     * @param tenantName  (required)
     * @param callback The callback to be executed when the API call finishes
     * @return The request call
     * @throws ApiException If fail to process the API call, e.g. serializing the request body object
     */
    public com.squareup.okhttp.Call registerNewClusterAsync(Cluster body, String tenantName,
            final ApiCallback<RestClusterResponse> callback) throws ApiException {

        ProgressResponseBody.ProgressListener progressListener = null;
        ProgressRequestBody.ProgressRequestListener progressRequestListener = null;

        if (callback != null) {
            progressListener = new ProgressResponseBody.ProgressListener() {
                @Override
                public void update(long bytesRead, long contentLength, boolean done) {
                    callback.onDownloadProgress(bytesRead, contentLength, done);
                }
            };

            progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
                @Override
                public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
                    callback.onUploadProgress(bytesWritten, contentLength, done);
                }
            };
        }

        com.squareup.okhttp.Call call = registerNewClusterCall(body, tenantName, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for unregisterCluster */
    private com.squareup.okhttp.Call unregisterClusterCall(String clusterName, String tenantName,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = null;

        // verify the required parameter 'clusterName' is set
        if (clusterName == null) {
            throw new ApiException(
                    "Missing the required parameter 'clusterName' when calling unregisterCluster(Async)");
        }

        // verify the required parameter 'tenantName' is set
        if (tenantName == null) {
            throw new ApiException(
                    "Missing the required parameter 'tenantName' when calling unregisterCluster(Async)");
        }

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/clusters/{clusterName}".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "clusterName" + "\\}", apiClient.escapeString(clusterName.toString()))
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();

        Map<String, String> localVarHeaderParams = new HashMap<String, String>();

        Map<String, Object> localVarFormParams = new HashMap<String, Object>();

        final String[] localVarAccepts = {

        };
        final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
        if (localVarAccept != null)
            localVarHeaderParams.put("Accept", localVarAccept);

        final String[] localVarContentTypes = {

        };
        final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
        localVarHeaderParams.put("Content-Type", localVarContentType);

        if (progressListener != null) {
            apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
                @Override
                public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                        throws IOException {
                    com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                    return originalResponse.newBuilder()
                            .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
                }
            });
        }

        String[] localVarAuthNames = new String[] {};
        return apiClient.buildCall(localVarPath, "DELETE", localVarQueryParams, localVarPostBody,
                localVarHeaderParams, localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Unregister cluster.
     * 
     * @param clusterName name or UUID (see {@link Uuid}) of the data source to be deleted (required)
     * @param tenantName  (required)
     * @return RestClusterResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestClusterResponse unregisterCluster(String clusterName, String tenantName) throws ApiException {
        ApiResponse<RestClusterResponse> resp = unregisterClusterWithHttpInfo(clusterName, tenantName);
        return resp.getData();
    }

    /**
     * Unregister cluster.
     * 
     * @param clusterName name or UUID (see {@link Uuid}) of the data source to be deleted (required)
     * @param tenantName  (required)
     * @return ApiResponse&lt;RestClusterResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestClusterResponse> unregisterClusterWithHttpInfo(String clusterName, String tenantName)
            throws ApiException {
        com.squareup.okhttp.Call call = unregisterClusterCall(clusterName, tenantName, null, null);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Unregister cluster. (asynchronously)
     * 
     * @param clusterName name or UUID (see {@link Uuid}) of the data source to be deleted (required)
     * @param tenantName  (required)
     * @param callback The callback to be executed when the API call finishes
     * @return The request call
     * @throws ApiException If fail to process the API call, e.g. serializing the request body object
     */
    public com.squareup.okhttp.Call unregisterClusterAsync(String clusterName, String tenantName,
            final ApiCallback<RestClusterResponse> callback) throws ApiException {

        ProgressResponseBody.ProgressListener progressListener = null;
        ProgressRequestBody.ProgressRequestListener progressRequestListener = null;

        if (callback != null) {
            progressListener = new ProgressResponseBody.ProgressListener() {
                @Override
                public void update(long bytesRead, long contentLength, boolean done) {
                    callback.onDownloadProgress(bytesRead, contentLength, done);
                }
            };

            progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
                @Override
                public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
                    callback.onUploadProgress(bytesWritten, contentLength, done);
                }
            };
        }

        com.squareup.okhttp.Call call = unregisterClusterCall(clusterName, tenantName, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }

    /* Build call for updateCluster */
    private com.squareup.okhttp.Call updateClusterCall(String clusterName, Cluster body, String tenantName,
            final ProgressResponseBody.ProgressListener progressListener,
            final ProgressRequestBody.ProgressRequestListener progressRequestListener) throws ApiException {
        Object localVarPostBody = body;

        // verify the required parameter 'clusterName' is set
        if (clusterName == null) {
            throw new ApiException(
                    "Missing the required parameter 'clusterName' when calling updateCluster(Async)");
        }

        // verify the required parameter 'body' is set
        if (body == null) {
            throw new ApiException("Missing the required parameter 'body' when calling updateCluster(Async)");
        }

        // verify the required parameter 'tenantName' is set
        if (tenantName == null) {
            throw new ApiException("Missing the required parameter 'tenantName' when calling updateCluster(Async)");
        }

        // create path and map variables
        String localVarPath = "/v1.0/tenants/{tenantName}/clusters/{clusterName}".replaceAll("\\{format\\}", "json")
                .replaceAll("\\{" + "clusterName" + "\\}", apiClient.escapeString(clusterName.toString()))
                .replaceAll("\\{" + "tenantName" + "\\}", apiClient.escapeString(tenantName.toString()));

        List<Pair> localVarQueryParams = new ArrayList<Pair>();

        Map<String, String> localVarHeaderParams = new HashMap<String, String>();

        Map<String, Object> localVarFormParams = new HashMap<String, Object>();

        final String[] localVarAccepts = {

        };
        final String localVarAccept = apiClient.selectHeaderAccept(localVarAccepts);
        if (localVarAccept != null)
            localVarHeaderParams.put("Accept", localVarAccept);

        final String[] localVarContentTypes = {

        };
        final String localVarContentType = apiClient.selectHeaderContentType(localVarContentTypes);
        localVarHeaderParams.put("Content-Type", localVarContentType);

        if (progressListener != null) {
            apiClient.getHttpClient().networkInterceptors().add(new com.squareup.okhttp.Interceptor() {
                @Override
                public com.squareup.okhttp.Response intercept(com.squareup.okhttp.Interceptor.Chain chain)
                        throws IOException {
                    com.squareup.okhttp.Response originalResponse = chain.proceed(chain.request());
                    return originalResponse.newBuilder()
                            .body(new ProgressResponseBody(originalResponse.body(), progressListener)).build();
                }
            });
        }

        String[] localVarAuthNames = new String[] {};
        return apiClient.buildCall(localVarPath, "PUT", localVarQueryParams, localVarPostBody, localVarHeaderParams,
                localVarFormParams, localVarAuthNames, progressRequestListener);
    }

    /**
     * Update an existing cluster.
     * 
     * @param clusterName name or UUID (see {@link Uuid}) of the data source (required)
     * @param body serialization of the data source entity to be created. See {@link Cluster}. (required)
     * @param tenantName  (required)
     * @return RestClusterResponse
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public RestClusterResponse updateCluster(String clusterName, Cluster body, String tenantName)
            throws ApiException {
        ApiResponse<RestClusterResponse> resp = updateClusterWithHttpInfo(clusterName, body, tenantName);
        return resp.getData();
    }

    /**
     * Update an existing cluster.
     * 
     * @param clusterName name or UUID (see {@link Uuid}) of the data source (required)
     * @param body serialization of the data source entity to be created. See {@link Cluster}. (required)
     * @param tenantName  (required)
     * @return ApiResponse&lt;RestClusterResponse&gt;
     * @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
     */
    public ApiResponse<RestClusterResponse> updateClusterWithHttpInfo(String clusterName, Cluster body,
            String tenantName) throws ApiException {
        com.squareup.okhttp.Call call = updateClusterCall(clusterName, body, tenantName, null, null);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        return apiClient.execute(call, localVarReturnType);
    }

    /**
     * Update an existing cluster. (asynchronously)
     * 
     * @param clusterName name or UUID (see {@link Uuid}) of the data source (required)
     * @param body serialization of the data source entity to be created. See {@link Cluster}. (required)
     * @param tenantName  (required)
     * @param callback The callback to be executed when the API call finishes
     * @return The request call
     * @throws ApiException If fail to process the API call, e.g. serializing the request body object
     */
    public com.squareup.okhttp.Call updateClusterAsync(String clusterName, Cluster body, String tenantName,
            final ApiCallback<RestClusterResponse> callback) throws ApiException {

        ProgressResponseBody.ProgressListener progressListener = null;
        ProgressRequestBody.ProgressRequestListener progressRequestListener = null;

        if (callback != null) {
            progressListener = new ProgressResponseBody.ProgressListener() {
                @Override
                public void update(long bytesRead, long contentLength, boolean done) {
                    callback.onDownloadProgress(bytesRead, contentLength, done);
                }
            };

            progressRequestListener = new ProgressRequestBody.ProgressRequestListener() {
                @Override
                public void onRequestProgress(long bytesWritten, long contentLength, boolean done) {
                    callback.onUploadProgress(bytesWritten, contentLength, done);
                }
            };
        }

        com.squareup.okhttp.Call call = updateClusterCall(clusterName, body, tenantName, progressListener,
                progressRequestListener);
        Type localVarReturnType = new TypeToken<RestClusterResponse>() {
        }.getType();
        apiClient.executeAsync(call, localVarReturnType, callback);
        return call;
    }
}