All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openmetadata.client.api.ObjectStoreServicesApi Maven / Gradle / Ivy

There is a newer version: 1.5.4
Show newest version
package org.openmetadata.client.api;

import org.openmetadata.client.ApiClient;
import org.openmetadata.client.EncodingUtils;
import org.openmetadata.client.model.ApiResponse;

import org.openmetadata.client.model.CreateStorageService;
import org.openmetadata.client.model.DatabaseService;
import org.openmetadata.client.model.EntityHistory;
import org.openmetadata.client.model.RestoreEntity;
import org.openmetadata.client.model.StorageService;
import org.openmetadata.client.model.StorageServiceList;
import org.openmetadata.client.model.TestConnectionResult;
import java.util.UUID;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import feign.*;

@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2024-08-22T14:05:58.429779152Z[Etc/UTC]")
public interface ObjectStoreServicesApi extends ApiClient.Api {


  /**
   * Add test connection result
   * Add test connection result to the service.
   * @param id Id of the service (required)
   * @param testConnectionResult  (optional)
   * @return DatabaseService
   */
  @RequestLine("PUT /v1/services/storageServices/{id}/testConnectionResult")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  DatabaseService addTestConnectionResult8(@Param("id") UUID id, TestConnectionResult testConnectionResult);

  /**
   * Add test connection result
   * Similar to addTestConnectionResult8 but it also returns the http response headers .
   * Add test connection result to the service.
   * @param id Id of the service (required)
   * @param testConnectionResult  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("PUT /v1/services/storageServices/{id}/testConnectionResult")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse addTestConnectionResult8WithHttpInfo(@Param("id") UUID id, TestConnectionResult testConnectionResult);



  /**
   * Update storage service
   * Update an existing or create a new storage service.
   * @param createStorageService  (optional)
   * @return StorageService
   */
  @RequestLine("PUT /v1/services/storageServices")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  StorageService createOrUpdateStorageService(CreateStorageService createStorageService);

  /**
   * Update storage service
   * Similar to createOrUpdateStorageService but it also returns the http response headers .
   * Update an existing or create a new storage service.
   * @param createStorageService  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("PUT /v1/services/storageServices")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse createOrUpdateStorageServiceWithHttpInfo(CreateStorageService createStorageService);



  /**
   * Create storage service
   * Create a new storage service.
   * @param createStorageService  (optional)
   * @return StorageService
   */
  @RequestLine("POST /v1/services/storageServices")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  StorageService createStorageService(CreateStorageService createStorageService);

  /**
   * Create storage service
   * Similar to createStorageService but it also returns the http response headers .
   * Create a new storage service.
   * @param createStorageService  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("POST /v1/services/storageServices")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse createStorageServiceWithHttpInfo(CreateStorageService createStorageService);



  /**
   * Delete an storage service
   * Delete an storage services. If containers belong the service, it can't be deleted.
   * @param id Id of the storage service (required)
   * @param recursive Recursively delete this entity and it's children. (Default `false`) (optional, default to false)
   * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false)
   */
  @RequestLine("DELETE /v1/services/storageServices/{id}?recursive={recursive}&hardDelete={hardDelete}")
  @Headers({
    "Accept: application/json",
  })
  void deleteStorageService(@Param("id") String id, @Param("recursive") Boolean recursive, @Param("hardDelete") Boolean hardDelete);

  /**
   * Delete an storage service
   * Similar to deleteStorageService but it also returns the http response headers .
   * Delete an storage services. If containers belong the service, it can't be deleted.
   * @param id Id of the storage service (required)
   * @param recursive Recursively delete this entity and it's children. (Default `false`) (optional, default to false)
   * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false)
   */
  @RequestLine("DELETE /v1/services/storageServices/{id}?recursive={recursive}&hardDelete={hardDelete}")
  @Headers({
    "Accept: application/json",
  })
  ApiResponse deleteStorageServiceWithHttpInfo(@Param("id") String id, @Param("recursive") Boolean recursive, @Param("hardDelete") Boolean hardDelete);


  /**
   * Delete an storage service
   * Delete an storage services. If containers belong the service, it can't be deleted.
   * Note, this is equivalent to the other deleteStorageService method,
   * but with the query parameters collected into a single Map parameter. This
   * is convenient for services with optional query parameters, especially when
   * used with the {@link DeleteStorageServiceQueryParams} class that allows for
   * building up this map in a fluent style.
   * @param id Id of the storage service (required)
   * @param queryParams Map of query parameters as name-value pairs
   *   

The following elements may be specified in the query map:

*
    *
  • recursive - Recursively delete this entity and it's children. (Default `false`) (optional, default to false)
  • *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/services/storageServices/{id}?recursive={recursive}&hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) void deleteStorageService(@Param("id") String id, @QueryMap(encoded=true) DeleteStorageServiceQueryParams queryParams); /** * Delete an storage service * Delete an storage services. If containers belong the service, it can't be deleted. * Note, this is equivalent to the other deleteStorageService that receives the query parameters as a map, * but this one also exposes the Http response headers * @param id Id of the storage service (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • recursive - Recursively delete this entity and it's children. (Default `false`) (optional, default to false)
  • *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/services/storageServices/{id}?recursive={recursive}&hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) ApiResponse deleteStorageServiceWithHttpInfo(@Param("id") String id, @QueryMap(encoded=true) DeleteStorageServiceQueryParams queryParams); /** * A convenience class for generating query parameters for the * deleteStorageService method in a fluent style. */ public static class DeleteStorageServiceQueryParams extends HashMap { public DeleteStorageServiceQueryParams recursive(final Boolean value) { put("recursive", EncodingUtils.encode(value)); return this; } public DeleteStorageServiceQueryParams hardDelete(final Boolean value) { put("hardDelete", EncodingUtils.encode(value)); return this; } } /** * Delete an StorageService by fully qualified name * Delete an StorageService by `fullyQualifiedName`. * @param fqn Name of the StorageService (required) * @param recursive Recursively delete this entity and it's children. (Default `false`) (optional, default to false) * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false) */ @RequestLine("DELETE /v1/services/storageServices/name/{fqn}?recursive={recursive}&hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) void deleteStorageServiceByFQN(@Param("fqn") String fqn, @Param("recursive") Boolean recursive, @Param("hardDelete") Boolean hardDelete); /** * Delete an StorageService by fully qualified name * Similar to deleteStorageServiceByFQN but it also returns the http response headers . * Delete an StorageService by `fullyQualifiedName`. * @param fqn Name of the StorageService (required) * @param recursive Recursively delete this entity and it's children. (Default `false`) (optional, default to false) * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false) */ @RequestLine("DELETE /v1/services/storageServices/name/{fqn}?recursive={recursive}&hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) ApiResponse deleteStorageServiceByFQNWithHttpInfo(@Param("fqn") String fqn, @Param("recursive") Boolean recursive, @Param("hardDelete") Boolean hardDelete); /** * Delete an StorageService by fully qualified name * Delete an StorageService by `fullyQualifiedName`. * Note, this is equivalent to the other deleteStorageServiceByFQN method, * but with the query parameters collected into a single Map parameter. This * is convenient for services with optional query parameters, especially when * used with the {@link DeleteStorageServiceByFQNQueryParams} class that allows for * building up this map in a fluent style. * @param fqn Name of the StorageService (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • recursive - Recursively delete this entity and it's children. (Default `false`) (optional, default to false)
  • *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/services/storageServices/name/{fqn}?recursive={recursive}&hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) void deleteStorageServiceByFQN(@Param("fqn") String fqn, @QueryMap(encoded=true) DeleteStorageServiceByFQNQueryParams queryParams); /** * Delete an StorageService by fully qualified name * Delete an StorageService by `fullyQualifiedName`. * Note, this is equivalent to the other deleteStorageServiceByFQN that receives the query parameters as a map, * but this one also exposes the Http response headers * @param fqn Name of the StorageService (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • recursive - Recursively delete this entity and it's children. (Default `false`) (optional, default to false)
  • *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/services/storageServices/name/{fqn}?recursive={recursive}&hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) ApiResponse deleteStorageServiceByFQNWithHttpInfo(@Param("fqn") String fqn, @QueryMap(encoded=true) DeleteStorageServiceByFQNQueryParams queryParams); /** * A convenience class for generating query parameters for the * deleteStorageServiceByFQN method in a fluent style. */ public static class DeleteStorageServiceByFQNQueryParams extends HashMap { public DeleteStorageServiceByFQNQueryParams recursive(final Boolean value) { put("recursive", EncodingUtils.encode(value)); return this; } public DeleteStorageServiceByFQNQueryParams hardDelete(final Boolean value) { put("hardDelete", EncodingUtils.encode(value)); return this; } } /** * Get a version of the storage service * Get a version of the storage service by given `id` * @param id storage service Id (required) * @param version storage service version number in the form `major`.`minor` (required) * @return StorageService */ @RequestLine("GET /v1/services/storageServices/{id}/versions/{version}") @Headers({ "Accept: application/json", }) StorageService getSpecificStorageServiceVersion(@Param("id") String id, @Param("version") String version); /** * Get a version of the storage service * Similar to getSpecificStorageServiceVersion but it also returns the http response headers . * Get a version of the storage service by given `id` * @param id storage service Id (required) * @param version storage service version number in the form `major`.`minor` (required) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/services/storageServices/{id}/versions/{version}") @Headers({ "Accept: application/json", }) ApiResponse getSpecificStorageServiceVersionWithHttpInfo(@Param("id") String id, @Param("version") String version); /** * Get storage service by name * Get a storage service by the service `name`. * @param name (required) * @param fields Fields requested in the returned resource (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return StorageService */ @RequestLine("GET /v1/services/storageServices/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) StorageService getStorageServiceByFQN(@Param("name") String name, @Param("fields") String fields, @Param("include") String include); /** * Get storage service by name * Similar to getStorageServiceByFQN but it also returns the http response headers . * Get a storage service by the service `name`. * @param name (required) * @param fields Fields requested in the returned resource (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/services/storageServices/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getStorageServiceByFQNWithHttpInfo(@Param("name") String name, @Param("fields") String fields, @Param("include") String include); /** * Get storage service by name * Get a storage service by the service `name`. * Note, this is equivalent to the other getStorageServiceByFQN method, * but with the query parameters collected into a single Map parameter. This * is convenient for services with optional query parameters, especially when * used with the {@link GetStorageServiceByFQNQueryParams} class that allows for * building up this map in a fluent style. * @param name (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return StorageService */ @RequestLine("GET /v1/services/storageServices/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) StorageService getStorageServiceByFQN(@Param("name") String name, @QueryMap(encoded=true) GetStorageServiceByFQNQueryParams queryParams); /** * Get storage service by name * Get a storage service by the service `name`. * Note, this is equivalent to the other getStorageServiceByFQN that receives the query parameters as a map, * but this one also exposes the Http response headers * @param name (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return StorageService */ @RequestLine("GET /v1/services/storageServices/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getStorageServiceByFQNWithHttpInfo(@Param("name") String name, @QueryMap(encoded=true) GetStorageServiceByFQNQueryParams queryParams); /** * A convenience class for generating query parameters for the * getStorageServiceByFQN method in a fluent style. */ public static class GetStorageServiceByFQNQueryParams extends HashMap { public GetStorageServiceByFQNQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public GetStorageServiceByFQNQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * Get an storage service * Get an storage service by `id`. * @param id (required) * @param fields Fields requested in the returned resource (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return StorageService */ @RequestLine("GET /v1/services/storageServices/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) StorageService getStorageServiceByID(@Param("id") UUID id, @Param("fields") String fields, @Param("include") String include); /** * Get an storage service * Similar to getStorageServiceByID but it also returns the http response headers . * Get an storage service by `id`. * @param id (required) * @param fields Fields requested in the returned resource (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/services/storageServices/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getStorageServiceByIDWithHttpInfo(@Param("id") UUID id, @Param("fields") String fields, @Param("include") String include); /** * Get an storage service * Get an storage service by `id`. * Note, this is equivalent to the other getStorageServiceByID method, * but with the query parameters collected into a single Map parameter. This * is convenient for services with optional query parameters, especially when * used with the {@link GetStorageServiceByIDQueryParams} class that allows for * building up this map in a fluent style. * @param id (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return StorageService */ @RequestLine("GET /v1/services/storageServices/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) StorageService getStorageServiceByID(@Param("id") UUID id, @QueryMap(encoded=true) GetStorageServiceByIDQueryParams queryParams); /** * Get an storage service * Get an storage service by `id`. * Note, this is equivalent to the other getStorageServiceByID that receives the query parameters as a map, * but this one also exposes the Http response headers * @param id (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return StorageService */ @RequestLine("GET /v1/services/storageServices/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getStorageServiceByIDWithHttpInfo(@Param("id") UUID id, @QueryMap(encoded=true) GetStorageServiceByIDQueryParams queryParams); /** * A convenience class for generating query parameters for the * getStorageServiceByID method in a fluent style. */ public static class GetStorageServiceByIDQueryParams extends HashMap { public GetStorageServiceByIDQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public GetStorageServiceByIDQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * List storage service versions * Get a list of all the versions of an storage service identified by `id` * @param id storage service Id (required) * @return EntityHistory */ @RequestLine("GET /v1/services/storageServices/{id}/versions") @Headers({ "Accept: application/json", }) EntityHistory listAllStorageServiceVersion(@Param("id") String id); /** * List storage service versions * Similar to listAllStorageServiceVersion but it also returns the http response headers . * Get a list of all the versions of an storage service identified by `id` * @param id storage service Id (required) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/services/storageServices/{id}/versions") @Headers({ "Accept: application/json", }) ApiResponse listAllStorageServiceVersionWithHttpInfo(@Param("id") String id); /** * List storage services * Get a list of storage services. * @param fields Fields requested in the returned resource (optional) * @param domain Filter services by domain (optional) * @param limit (optional, default to 10) * @param before Returns list of storage services before this cursor (optional) * @param after Returns list of storage services after this cursor (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return StorageServiceList */ @RequestLine("GET /v1/services/storageServices?fields={fields}&domain={domain}&limit={limit}&before={before}&after={after}&include={include}") @Headers({ "Accept: application/json", }) StorageServiceList listStorageServices(@Param("fields") String fields, @Param("domain") String domain, @Param("limit") Integer limit, @Param("before") String before, @Param("after") String after, @Param("include") String include); /** * List storage services * Similar to listStorageServices but it also returns the http response headers . * Get a list of storage services. * @param fields Fields requested in the returned resource (optional) * @param domain Filter services by domain (optional) * @param limit (optional, default to 10) * @param before Returns list of storage services before this cursor (optional) * @param after Returns list of storage services after this cursor (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/services/storageServices?fields={fields}&domain={domain}&limit={limit}&before={before}&after={after}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse listStorageServicesWithHttpInfo(@Param("fields") String fields, @Param("domain") String domain, @Param("limit") Integer limit, @Param("before") String before, @Param("after") String after, @Param("include") String include); /** * List storage services * Get a list of storage services. * Note, this is equivalent to the other listStorageServices method, * but with the query parameters collected into a single Map parameter. This * is convenient for services with optional query parameters, especially when * used with the {@link ListStorageServicesQueryParams} class that allows for * building up this map in a fluent style. * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • domain - Filter services by domain (optional)
  • *
  • limit - (optional, default to 10)
  • *
  • before - Returns list of storage services before this cursor (optional)
  • *
  • after - Returns list of storage services after this cursor (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return StorageServiceList */ @RequestLine("GET /v1/services/storageServices?fields={fields}&domain={domain}&limit={limit}&before={before}&after={after}&include={include}") @Headers({ "Accept: application/json", }) StorageServiceList listStorageServices(@QueryMap(encoded=true) ListStorageServicesQueryParams queryParams); /** * List storage services * Get a list of storage services. * Note, this is equivalent to the other listStorageServices that receives the query parameters as a map, * but this one also exposes the Http response headers * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • fields - Fields requested in the returned resource (optional)
  • *
  • domain - Filter services by domain (optional)
  • *
  • limit - (optional, default to 10)
  • *
  • before - Returns list of storage services before this cursor (optional)
  • *
  • after - Returns list of storage services after this cursor (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
* @return StorageServiceList */ @RequestLine("GET /v1/services/storageServices?fields={fields}&domain={domain}&limit={limit}&before={before}&after={after}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse listStorageServicesWithHttpInfo(@QueryMap(encoded=true) ListStorageServicesQueryParams queryParams); /** * A convenience class for generating query parameters for the * listStorageServices method in a fluent style. */ public static class ListStorageServicesQueryParams extends HashMap { public ListStorageServicesQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public ListStorageServicesQueryParams domain(final String value) { put("domain", EncodingUtils.encode(value)); return this; } public ListStorageServicesQueryParams limit(final Integer value) { put("limit", EncodingUtils.encode(value)); return this; } public ListStorageServicesQueryParams before(final String value) { put("before", EncodingUtils.encode(value)); return this; } public ListStorageServicesQueryParams after(final String value) { put("after", EncodingUtils.encode(value)); return this; } public ListStorageServicesQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * Update an storage service * Update an existing storage service using JsonPatch. * @param id (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update an storage service Documentation */ @RequestLine("PATCH /v1/services/storageServices/{id}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) void patchStorageService(@Param("id") UUID id, Object body); /** * Update an storage service * Similar to patchStorageService but it also returns the http response headers . * Update an existing storage service using JsonPatch. * @param id (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update an storage service Documentation */ @RequestLine("PATCH /v1/services/storageServices/{id}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) ApiResponse patchStorageServiceWithHttpInfo(@Param("id") UUID id, Object body); /** * Restore a soft deleted StorageService. * Restore a soft deleted StorageService. * @param restoreEntity (optional) * @return StorageService */ @RequestLine("PUT /v1/services/storageServices/restore") @Headers({ "Content-Type: application/json", "Accept: application/json", }) StorageService restore30(RestoreEntity restoreEntity); /** * Restore a soft deleted StorageService. * Similar to restore30 but it also returns the http response headers . * Restore a soft deleted StorageService. * @param restoreEntity (optional) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("PUT /v1/services/storageServices/restore") @Headers({ "Content-Type: application/json", "Accept: application/json", }) ApiResponse restore30WithHttpInfo(RestoreEntity restoreEntity); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy