Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* TileDB Storage Platform API
* TileDB Storage Platform REST API
*
* The version of the OpenAPI document: 2.2.19
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package io.tiledb.cloud.rest_api.api;
import io.tiledb.cloud.rest_api.ApiCallback;
import io.tiledb.cloud.rest_api.ApiClient;
import io.tiledb.cloud.rest_api.ApiException;
import io.tiledb.cloud.rest_api.ApiResponse;
import io.tiledb.cloud.rest_api.Configuration;
import io.tiledb.cloud.rest_api.Pair;
import com.google.gson.reflect.TypeToken;
import io.tiledb.cloud.rest_api.model.ArrayInfoUpdate;
import java.io.File;
import io.tiledb.cloud.rest_api.model.FileUploaded;
import io.tiledb.cloud.rest_api.model.NotebookCopied;
import io.tiledb.cloud.rest_api.model.NotebookCopy;
import io.tiledb.cloud.rest_api.model.NotebookStatus;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class NotebookApi {
private ApiClient localVarApiClient;
private int localHostIndex;
private String localCustomBaseUrl;
public NotebookApi() {
this(Configuration.getDefaultApiClient());
}
public NotebookApi(ApiClient apiClient) {
this.localVarApiClient = apiClient;
}
public ApiClient getApiClient() {
return localVarApiClient;
}
public void setApiClient(ApiClient apiClient) {
this.localVarApiClient = apiClient;
}
public int getHostIndex() {
return localHostIndex;
}
public void setHostIndex(int hostIndex) {
this.localHostIndex = hostIndex;
}
public String getCustomBaseUrl() {
return localCustomBaseUrl;
}
public void setCustomBaseUrl(String customBaseUrl) {
this.localCustomBaseUrl = customBaseUrl;
}
/**
* Build call for getNotebookServerStatus
* @param namespace namespace notebook is in (an organization name or user's username) (required)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
200
status of running notebook
-
202
Notebook server is pending
-
402
Payment required
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call getNotebookServerStatusCall(String namespace, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/notebooks/server/{namespace}/status"
.replaceAll("\\{" + "namespace" + "\\}", localVarApiClient.escapeString(namespace.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "ApiKeyAuth", "BasicAuth" };
return localVarApiClient.buildCall(basePath, localVarPath, "GET", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call getNotebookServerStatusValidateBeforeCall(String namespace, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'namespace' is set
if (namespace == null) {
throw new ApiException("Missing the required parameter 'namespace' when calling getNotebookServerStatus(Async)");
}
okhttp3.Call localVarCall = getNotebookServerStatusCall(namespace, _callback);
return localVarCall;
}
/**
*
* Get status of the notebook server
* @param namespace namespace notebook is in (an organization name or user's username) (required)
* @return NotebookStatus
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
status of running notebook
-
202
Notebook server is pending
-
402
Payment required
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public NotebookStatus getNotebookServerStatus(String namespace) throws ApiException {
ApiResponse localVarResp = getNotebookServerStatusWithHttpInfo(namespace);
return localVarResp.getData();
}
/**
*
* Get status of the notebook server
* @param namespace namespace notebook is in (an organization name or user's username) (required)
* @return ApiResponse<NotebookStatus>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
200
status of running notebook
-
202
Notebook server is pending
-
402
Payment required
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public ApiResponse getNotebookServerStatusWithHttpInfo(String namespace) throws ApiException {
okhttp3.Call localVarCall = getNotebookServerStatusValidateBeforeCall(namespace, null);
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously)
* Get status of the notebook server
* @param namespace namespace notebook is in (an organization name or user's username) (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
* @http.response.details
Status Code
Description
Response Headers
200
status of running notebook
-
202
Notebook server is pending
-
402
Payment required
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call getNotebookServerStatusAsync(String namespace, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = getNotebookServerStatusValidateBeforeCall(namespace, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
/**
* Build call for handleCopyNotebook
* @param namespace The namespace of the notebook (required)
* @param array The name of the notebook (required)
* @param notebookCopy Input/Output information to create a new TileDB file (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param endTimestamp Milliseconds since Unix epoch, copy will use open_at functionality to copy notebook created at the specific timestamp (optional)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
201
Notebook copied
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call handleCopyNotebookCall(String namespace, String array, NotebookCopy notebookCopy, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, Integer endTimestamp, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = notebookCopy;
// create path and map variables
String localVarPath = "/notebooks/{namespace}/{array}/copy"
.replaceAll("\\{" + "namespace" + "\\}", localVarApiClient.escapeString(namespace.toString()))
.replaceAll("\\{" + "array" + "\\}", localVarApiClient.escapeString(array.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
if (endTimestamp != null) {
localVarQueryParams.addAll(localVarApiClient.parameterToPair("end_timestamp", endTimestamp));
}
if (X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME != null) {
localVarHeaderParams.put("X-TILEDB-CLOUD-ACCESS-CREDENTIALS-NAME", localVarApiClient.parameterToString(X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME));
}
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "ApiKeyAuth", "BasicAuth" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call handleCopyNotebookValidateBeforeCall(String namespace, String array, NotebookCopy notebookCopy, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, Integer endTimestamp, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'namespace' is set
if (namespace == null) {
throw new ApiException("Missing the required parameter 'namespace' when calling handleCopyNotebook(Async)");
}
// verify the required parameter 'array' is set
if (array == null) {
throw new ApiException("Missing the required parameter 'array' when calling handleCopyNotebook(Async)");
}
// verify the required parameter 'notebookCopy' is set
if (notebookCopy == null) {
throw new ApiException("Missing the required parameter 'notebookCopy' when calling handleCopyNotebook(Async)");
}
okhttp3.Call localVarCall = handleCopyNotebookCall(namespace, array, notebookCopy, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, endTimestamp, _callback);
return localVarCall;
}
/**
*
* Copy a tiledb notebook at the specified location
* @param namespace The namespace of the notebook (required)
* @param array The name of the notebook (required)
* @param notebookCopy Input/Output information to create a new TileDB file (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param endTimestamp Milliseconds since Unix epoch, copy will use open_at functionality to copy notebook created at the specific timestamp (optional)
* @return NotebookCopied
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
201
Notebook copied
-
502
Bad Gateway
-
0
error response
-
*/
public NotebookCopied handleCopyNotebook(String namespace, String array, NotebookCopy notebookCopy, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, Integer endTimestamp) throws ApiException {
ApiResponse localVarResp = handleCopyNotebookWithHttpInfo(namespace, array, notebookCopy, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, endTimestamp);
return localVarResp.getData();
}
/**
*
* Copy a tiledb notebook at the specified location
* @param namespace The namespace of the notebook (required)
* @param array The name of the notebook (required)
* @param notebookCopy Input/Output information to create a new TileDB file (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param endTimestamp Milliseconds since Unix epoch, copy will use open_at functionality to copy notebook created at the specific timestamp (optional)
* @return ApiResponse<NotebookCopied>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
201
Notebook copied
-
502
Bad Gateway
-
0
error response
-
*/
public ApiResponse handleCopyNotebookWithHttpInfo(String namespace, String array, NotebookCopy notebookCopy, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, Integer endTimestamp) throws ApiException {
okhttp3.Call localVarCall = handleCopyNotebookValidateBeforeCall(namespace, array, notebookCopy, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, endTimestamp, null);
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously)
* Copy a tiledb notebook at the specified location
* @param namespace The namespace of the notebook (required)
* @param array The name of the notebook (required)
* @param notebookCopy Input/Output information to create a new TileDB file (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param endTimestamp Milliseconds since Unix epoch, copy will use open_at functionality to copy notebook created at the specific timestamp (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
* @http.response.details
Status Code
Description
Response Headers
201
Notebook copied
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call handleCopyNotebookAsync(String namespace, String array, NotebookCopy notebookCopy, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, Integer endTimestamp, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = handleCopyNotebookValidateBeforeCall(namespace, array, notebookCopy, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, endTimestamp, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
/**
* Build call for handleUploadNotebook
* @param namespace The namespace of the notebook (required)
* @param inputFile the notebook to upload (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param outputUri output location of the TileDB File (optional)
* @param name name to set for registered file (optional)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
201
File uploaded
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call handleUploadNotebookCall(String namespace, File inputFile, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, String outputUri, String name, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/notebooks/{namespace}/upload"
.replaceAll("\\{" + "namespace" + "\\}", localVarApiClient.escapeString(namespace.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
if (inputFile != null) {
localVarFormParams.put("input_file", inputFile);
}
if (outputUri != null) {
localVarFormParams.put("output_uri", outputUri);
}
if (name != null) {
localVarFormParams.put("name", name);
}
if (X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME != null) {
localVarHeaderParams.put("X-TILEDB-CLOUD-ACCESS-CREDENTIALS-NAME", localVarApiClient.parameterToString(X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME));
}
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
"multipart/form-data"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "ApiKeyAuth", "BasicAuth" };
return localVarApiClient.buildCall(basePath, localVarPath, "POST", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call handleUploadNotebookValidateBeforeCall(String namespace, File inputFile, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, String outputUri, String name, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'namespace' is set
if (namespace == null) {
throw new ApiException("Missing the required parameter 'namespace' when calling handleUploadNotebook(Async)");
}
// verify the required parameter 'inputFile' is set
if (inputFile == null) {
throw new ApiException("Missing the required parameter 'inputFile' when calling handleUploadNotebook(Async)");
}
okhttp3.Call localVarCall = handleUploadNotebookCall(namespace, inputFile, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, outputUri, name, _callback);
return localVarCall;
}
/**
*
* Upload a notebook at the specified location
* @param namespace The namespace of the notebook (required)
* @param inputFile the notebook to upload (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param outputUri output location of the TileDB File (optional)
* @param name name to set for registered file (optional)
* @return FileUploaded
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
201
File uploaded
-
502
Bad Gateway
-
0
error response
-
*/
public FileUploaded handleUploadNotebook(String namespace, File inputFile, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, String outputUri, String name) throws ApiException {
ApiResponse localVarResp = handleUploadNotebookWithHttpInfo(namespace, inputFile, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, outputUri, name);
return localVarResp.getData();
}
/**
*
* Upload a notebook at the specified location
* @param namespace The namespace of the notebook (required)
* @param inputFile the notebook to upload (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param outputUri output location of the TileDB File (optional)
* @param name name to set for registered file (optional)
* @return ApiResponse<FileUploaded>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
201
File uploaded
-
502
Bad Gateway
-
0
error response
-
*/
public ApiResponse handleUploadNotebookWithHttpInfo(String namespace, File inputFile, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, String outputUri, String name) throws ApiException {
okhttp3.Call localVarCall = handleUploadNotebookValidateBeforeCall(namespace, inputFile, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, outputUri, name, null);
Type localVarReturnType = new TypeToken(){}.getType();
return localVarApiClient.execute(localVarCall, localVarReturnType);
}
/**
* (asynchronously)
* Upload a notebook at the specified location
* @param namespace The namespace of the notebook (required)
* @param inputFile the notebook to upload (required)
* @param X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME Optional registered access credentials to use for creation (optional)
* @param outputUri output location of the TileDB File (optional)
* @param name name to set for registered file (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
* @http.response.details
Status Code
Description
Response Headers
201
File uploaded
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call handleUploadNotebookAsync(String namespace, File inputFile, String X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, String outputUri, String name, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = handleUploadNotebookValidateBeforeCall(namespace, inputFile, X_TILEDB_CLOUD_ACCESS_CREDENTIALS_NAME, outputUri, name, _callback);
Type localVarReturnType = new TypeToken(){}.getType();
localVarApiClient.executeAsync(localVarCall, localVarReturnType, _callback);
return localVarCall;
}
/**
* Build call for shutdownNotebookServer
* @param namespace namespace notebook is in (an organization name or user's username) (required)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
204
Notebook shutdown successfully
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call shutdownNotebookServerCall(String namespace, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = null;
// create path and map variables
String localVarPath = "/notebooks/server/{namespace}"
.replaceAll("\\{" + "namespace" + "\\}", localVarApiClient.escapeString(namespace.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "ApiKeyAuth", "BasicAuth" };
return localVarApiClient.buildCall(basePath, localVarPath, "DELETE", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call shutdownNotebookServerValidateBeforeCall(String namespace, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'namespace' is set
if (namespace == null) {
throw new ApiException("Missing the required parameter 'namespace' when calling shutdownNotebookServer(Async)");
}
okhttp3.Call localVarCall = shutdownNotebookServerCall(namespace, _callback);
return localVarCall;
}
/**
*
* Shutdown a notebook server
* @param namespace namespace notebook is in (an organization name or user's username) (required)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
204
Notebook shutdown successfully
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public void shutdownNotebookServer(String namespace) throws ApiException {
shutdownNotebookServerWithHttpInfo(namespace);
}
/**
*
* Shutdown a notebook server
* @param namespace namespace notebook is in (an organization name or user's username) (required)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
204
Notebook shutdown successfully
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public ApiResponse shutdownNotebookServerWithHttpInfo(String namespace) throws ApiException {
okhttp3.Call localVarCall = shutdownNotebookServerValidateBeforeCall(namespace, null);
return localVarApiClient.execute(localVarCall);
}
/**
* (asynchronously)
* Shutdown a notebook server
* @param namespace namespace notebook is in (an organization name or user's username) (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
* @http.response.details
Status Code
Description
Response Headers
204
Notebook shutdown successfully
-
404
Notebook is not running
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call shutdownNotebookServerAsync(String namespace, final ApiCallback _callback) throws ApiException {
okhttp3.Call localVarCall = shutdownNotebookServerValidateBeforeCall(namespace, _callback);
localVarApiClient.executeAsync(localVarCall, _callback);
return localVarCall;
}
/**
* Build call for updateNotebookName
* @param namespace namespace array is in (an organization name or user's username) (required)
* @param array name/uri of notebook (array) that is url-encoded (required)
* @param notebookMetadata notebook (array) metadata to update (required)
* @param _callback Callback for upload/download progress
* @return Call to execute
* @throws ApiException If fail to serialize the request body object
* @http.response.details
Status Code
Description
Response Headers
204
notebook name updated successfully
-
502
Bad Gateway
-
0
error response
-
*/
public okhttp3.Call updateNotebookNameCall(String namespace, String array, ArrayInfoUpdate notebookMetadata, final ApiCallback _callback) throws ApiException {
String basePath = null;
// Operation Servers
String[] localBasePaths = new String[] { };
// Determine Base Path to Use
if (localCustomBaseUrl != null){
basePath = localCustomBaseUrl;
} else if ( localBasePaths.length > 0 ) {
basePath = localBasePaths[localHostIndex];
} else {
basePath = null;
}
Object localVarPostBody = notebookMetadata;
// create path and map variables
String localVarPath = "/notebooks/{namespace}/{array}/rename"
.replaceAll("\\{" + "namespace" + "\\}", localVarApiClient.escapeString(namespace.toString()))
.replaceAll("\\{" + "array" + "\\}", localVarApiClient.escapeString(array.toString()));
List localVarQueryParams = new ArrayList();
List localVarCollectionQueryParams = new ArrayList();
Map localVarHeaderParams = new HashMap();
Map localVarCookieParams = new HashMap();
Map localVarFormParams = new HashMap();
final String[] localVarAccepts = {
"application/json"
};
final String localVarAccept = localVarApiClient.selectHeaderAccept(localVarAccepts);
if (localVarAccept != null) {
localVarHeaderParams.put("Accept", localVarAccept);
}
final String[] localVarContentTypes = {
"application/json"
};
final String localVarContentType = localVarApiClient.selectHeaderContentType(localVarContentTypes);
if (localVarContentType != null) {
localVarHeaderParams.put("Content-Type", localVarContentType);
}
String[] localVarAuthNames = new String[] { "ApiKeyAuth", "BasicAuth" };
return localVarApiClient.buildCall(basePath, localVarPath, "PATCH", localVarQueryParams, localVarCollectionQueryParams, localVarPostBody, localVarHeaderParams, localVarCookieParams, localVarFormParams, localVarAuthNames, _callback);
}
@SuppressWarnings("rawtypes")
private okhttp3.Call updateNotebookNameValidateBeforeCall(String namespace, String array, ArrayInfoUpdate notebookMetadata, final ApiCallback _callback) throws ApiException {
// verify the required parameter 'namespace' is set
if (namespace == null) {
throw new ApiException("Missing the required parameter 'namespace' when calling updateNotebookName(Async)");
}
// verify the required parameter 'array' is set
if (array == null) {
throw new ApiException("Missing the required parameter 'array' when calling updateNotebookName(Async)");
}
// verify the required parameter 'notebookMetadata' is set
if (notebookMetadata == null) {
throw new ApiException("Missing the required parameter 'notebookMetadata' when calling updateNotebookName(Async)");
}
okhttp3.Call localVarCall = updateNotebookNameCall(namespace, array, notebookMetadata, _callback);
return localVarCall;
}
/**
*
* update name on a notebok, moving related S3 object to new location
* @param namespace namespace array is in (an organization name or user's username) (required)
* @param array name/uri of notebook (array) that is url-encoded (required)
* @param notebookMetadata notebook (array) metadata to update (required)
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
204
notebook name updated successfully
-
502
Bad Gateway
-
0
error response
-
*/
public void updateNotebookName(String namespace, String array, ArrayInfoUpdate notebookMetadata) throws ApiException {
updateNotebookNameWithHttpInfo(namespace, array, notebookMetadata);
}
/**
*
* update name on a notebok, moving related S3 object to new location
* @param namespace namespace array is in (an organization name or user's username) (required)
* @param array name/uri of notebook (array) that is url-encoded (required)
* @param notebookMetadata notebook (array) metadata to update (required)
* @return ApiResponse<Void>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* @http.response.details
Status Code
Description
Response Headers
204
notebook name updated successfully
-
502
Bad Gateway
-
0
error response
-
*/
public ApiResponse updateNotebookNameWithHttpInfo(String namespace, String array, ArrayInfoUpdate notebookMetadata) throws ApiException {
okhttp3.Call localVarCall = updateNotebookNameValidateBeforeCall(namespace, array, notebookMetadata, null);
return localVarApiClient.execute(localVarCall);
}
/**
* (asynchronously)
* update name on a notebok, moving related S3 object to new location
* @param namespace namespace array is in (an organization name or user's username) (required)
* @param array name/uri of notebook (array) that is url-encoded (required)
* @param notebookMetadata notebook (array) metadata to update (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
* @http.response.details