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

org.openmetadata.client.api.TestDefinitionsApi 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.CreateTestDefinition;
import org.openmetadata.client.model.EntityHistory;
import org.openmetadata.client.model.RestoreEntity;
import org.openmetadata.client.model.TestDefinition;
import org.openmetadata.client.model.TestDefinitionList;
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 = "2023-08-29T10:43:32.398952Z[Etc/UTC]")
public interface TestDefinitionsApi extends ApiClient.Api {


  /**
   * Update test definition
   * Create a test definition, if it does not exist, or update an existing test definition.
   * @param createTestDefinition  (optional)
   * @return TestDefinition
   */
  @RequestLine("PUT /v1/dataQuality/testDefinitions")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  TestDefinition createOrUpdateTestDefinition(CreateTestDefinition createTestDefinition);

  /**
   * Update test definition
   * Similar to createOrUpdateTestDefinition but it also returns the http response headers .
   * Create a test definition, if it does not exist, or update an existing test definition.
   * @param createTestDefinition  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("PUT /v1/dataQuality/testDefinitions")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse createOrUpdateTestDefinitionWithHttpInfo(CreateTestDefinition createTestDefinition);



  /**
   * Create a test definition
   * Create a Test definition.
   * @param createTestDefinition  (optional)
   * @return TestDefinition
   */
  @RequestLine("POST /v1/dataQuality/testDefinitions")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  TestDefinition createTestDefinition(CreateTestDefinition createTestDefinition);

  /**
   * Create a test definition
   * Similar to createTestDefinition but it also returns the http response headers .
   * Create a Test definition.
   * @param createTestDefinition  (optional)
   * @return A ApiResponse that wraps the response boyd and the http headers.
   */
  @RequestLine("POST /v1/dataQuality/testDefinitions")
  @Headers({
    "Content-Type: application/json",
    "Accept: application/json",
  })
  ApiResponse createTestDefinitionWithHttpInfo(CreateTestDefinition createTestDefinition);



  /**
   * Delete a test definition
   * Delete a test definition by `id`.
   * @param id Id of the test definition (required)
   * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false)
   */
  @RequestLine("DELETE /v1/dataQuality/testDefinitions/{id}?hardDelete={hardDelete}")
  @Headers({
    "Accept: application/json",
  })
  void deleteTestDefinition(@Param("id") UUID id, @Param("hardDelete") Boolean hardDelete);

  /**
   * Delete a test definition
   * Similar to deleteTestDefinition but it also returns the http response headers .
   * Delete a test definition by `id`.
   * @param id Id of the test definition (required)
   * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false)
   */
  @RequestLine("DELETE /v1/dataQuality/testDefinitions/{id}?hardDelete={hardDelete}")
  @Headers({
    "Accept: application/json",
  })
  ApiResponse deleteTestDefinitionWithHttpInfo(@Param("id") UUID id, @Param("hardDelete") Boolean hardDelete);


  /**
   * Delete a test definition
   * Delete a test definition by `id`.
   * Note, this is equivalent to the other deleteTestDefinition 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 DeleteTestDefinitionQueryParams} class that allows for
   * building up this map in a fluent style.
   * @param id Id of the test definition (required)
   * @param queryParams Map of query parameters as name-value pairs
   *   

The following elements may be specified in the query map:

*
    *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/dataQuality/testDefinitions/{id}?hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) void deleteTestDefinition(@Param("id") UUID id, @QueryMap(encoded=true) Map queryParams); /** * Delete a test definition * Delete a test definition by `id`. * Note, this is equivalent to the other deleteTestDefinition that receives the query parameters as a map, * but this one also exposes the Http response headers * @param id Id of the test definition (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/dataQuality/testDefinitions/{id}?hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) ApiResponse deleteTestDefinitionWithHttpInfo(@Param("id") UUID id, @QueryMap(encoded=true) Map queryParams); /** * A convenience class for generating query parameters for the * deleteTestDefinition method in a fluent style. */ public static class DeleteTestDefinitionQueryParams extends HashMap { public DeleteTestDefinitionQueryParams hardDelete(final Boolean value) { put("hardDelete", EncodingUtils.encode(value)); return this; } } /** * Delete a test definition * Delete a test definition by `name`. * @param name Name of the test definition (required) * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false) */ @RequestLine("DELETE /v1/dataQuality/testDefinitions/name/{name}?hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) void deleteTestDefinitionByName(@Param("name") String name, @Param("hardDelete") Boolean hardDelete); /** * Delete a test definition * Similar to deleteTestDefinitionByName but it also returns the http response headers . * Delete a test definition by `name`. * @param name Name of the test definition (required) * @param hardDelete Hard delete the entity. (Default = `false`) (optional, default to false) */ @RequestLine("DELETE /v1/dataQuality/testDefinitions/name/{name}?hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) ApiResponse deleteTestDefinitionByNameWithHttpInfo(@Param("name") String name, @Param("hardDelete") Boolean hardDelete); /** * Delete a test definition * Delete a test definition by `name`. * Note, this is equivalent to the other deleteTestDefinitionByName 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 DeleteTestDefinitionByNameQueryParams} class that allows for * building up this map in a fluent style. * @param name Name of the test definition (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/dataQuality/testDefinitions/name/{name}?hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) void deleteTestDefinitionByName(@Param("name") String name, @QueryMap(encoded=true) Map queryParams); /** * Delete a test definition * Delete a test definition by `name`. * Note, this is equivalent to the other deleteTestDefinitionByName that receives the query parameters as a map, * but this one also exposes the Http response headers * @param name Name of the test definition (required) * @param queryParams Map of query parameters as name-value pairs *

The following elements may be specified in the query map:

*
    *
  • hardDelete - Hard delete the entity. (Default = `false`) (optional, default to false)
  • *
*/ @RequestLine("DELETE /v1/dataQuality/testDefinitions/name/{name}?hardDelete={hardDelete}") @Headers({ "Accept: application/json", }) ApiResponse deleteTestDefinitionByNameWithHttpInfo(@Param("name") String name, @QueryMap(encoded=true) Map queryParams); /** * A convenience class for generating query parameters for the * deleteTestDefinitionByName method in a fluent style. */ public static class DeleteTestDefinitionByNameQueryParams extends HashMap { public DeleteTestDefinitionByNameQueryParams hardDelete(final Boolean value) { put("hardDelete", EncodingUtils.encode(value)); return this; } } /** * Get a test definition by Id * Get a Test Definition by `Id`. * @param id Id of the test definition (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 TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) TestDefinition get1(@Param("id") UUID id, @Param("fields") String fields, @Param("include") String include); /** * Get a test definition by Id * Similar to get1 but it also returns the http response headers . * Get a Test Definition by `Id`. * @param id Id of the test definition (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/dataQuality/testDefinitions/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse get1WithHttpInfo(@Param("id") UUID id, @Param("fields") String fields, @Param("include") String include); /** * Get a test definition by Id * Get a Test Definition by `Id`. * Note, this is equivalent to the other get1 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 Get1QueryParams} class that allows for * building up this map in a fluent style. * @param id Id of the test definition (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 TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) TestDefinition get1(@Param("id") UUID id, @QueryMap(encoded=true) Map queryParams); /** * Get a test definition by Id * Get a Test Definition by `Id`. * Note, this is equivalent to the other get1 that receives the query parameters as a map, * but this one also exposes the Http response headers * @param id Id of the test definition (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 TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse get1WithHttpInfo(@Param("id") UUID id, @QueryMap(encoded=true) Map queryParams); /** * A convenience class for generating query parameters for the * get1 method in a fluent style. */ public static class Get1QueryParams extends HashMap { public Get1QueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public Get1QueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * Get a version of the test definition * Get a version of the test definition by given `Id` * @param id Id of the test definition (required) * @param version Test Definition version number in the form `major`.`minor` (required) * @return TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}/versions/{version}") @Headers({ "Accept: application/json", }) TestDefinition getSpecificTestDefinitionVersion(@Param("id") UUID id, @Param("version") String version); /** * Get a version of the test definition * Similar to getSpecificTestDefinitionVersion but it also returns the http response headers . * Get a version of the test definition by given `Id` * @param id Id of the test definition (required) * @param version Test Definition version number in the form `major`.`minor` (required) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}/versions/{version}") @Headers({ "Accept: application/json", }) ApiResponse getSpecificTestDefinitionVersionWithHttpInfo(@Param("id") UUID id, @Param("version") String version); /** * Get a test definition by name * Get a test definition by `name`. * @param name Name of the test definition (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 TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) TestDefinition getTestDefinitionByName(@Param("name") String name, @Param("fields") String fields, @Param("include") String include); /** * Get a test definition by name * Similar to getTestDefinitionByName but it also returns the http response headers . * Get a test definition by `name`. * @param name Name of the test definition (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/dataQuality/testDefinitions/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getTestDefinitionByNameWithHttpInfo(@Param("name") String name, @Param("fields") String fields, @Param("include") String include); /** * Get a test definition by name * Get a test definition by `name`. * Note, this is equivalent to the other getTestDefinitionByName 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 GetTestDefinitionByNameQueryParams} class that allows for * building up this map in a fluent style. * @param name Name of the test definition (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 TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) TestDefinition getTestDefinitionByName(@Param("name") String name, @QueryMap(encoded=true) Map queryParams); /** * Get a test definition by name * Get a test definition by `name`. * Note, this is equivalent to the other getTestDefinitionByName that receives the query parameters as a map, * but this one also exposes the Http response headers * @param name Name of the test definition (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 TestDefinition */ @RequestLine("GET /v1/dataQuality/testDefinitions/name/{name}?fields={fields}&include={include}") @Headers({ "Accept: application/json", }) ApiResponse getTestDefinitionByNameWithHttpInfo(@Param("name") String name, @QueryMap(encoded=true) Map queryParams); /** * A convenience class for generating query parameters for the * getTestDefinitionByName method in a fluent style. */ public static class GetTestDefinitionByNameQueryParams extends HashMap { public GetTestDefinitionByNameQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public GetTestDefinitionByNameQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } } /** * List test definition versions * Get a list of all the versions of a test definition identified by `Id` * @param id Id of the test definition (required) * @return EntityHistory */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}/versions") @Headers({ "Accept: application/json", }) EntityHistory listAllTestDefinitionVersion(@Param("id") UUID id); /** * List test definition versions * Similar to listAllTestDefinitionVersion but it also returns the http response headers . * Get a list of all the versions of a test definition identified by `Id` * @param id Id of the test definition (required) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/dataQuality/testDefinitions/{id}/versions") @Headers({ "Accept: application/json", }) ApiResponse listAllTestDefinitionVersionWithHttpInfo(@Param("id") UUID id); /** * List test definitions * Get a list of test definitions, optionally filtered by `service` it belongs to. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * @param fields Fields requested in the returned resource (optional) * @param limit Limit the number test definitions returned. (1 to 1000000, default = 10) (optional, default to 10) * @param before Returns list of test definitions before this cursor (optional) * @param after Returns list of test definitions after this cursor (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @param entityType Filter by entityType. (optional) * @param testPlatform Filter by a test platform (optional) * @param supportedDataType Filter tests definition by supported data type (optional) * @return TestDefinitionList */ @RequestLine("GET /v1/dataQuality/testDefinitions?fields={fields}&limit={limit}&before={before}&after={after}&include={include}&entityType={entityType}&testPlatform={testPlatform}&supportedDataType={supportedDataType}") @Headers({ "Accept: application/json", }) TestDefinitionList listTestDefinitions(@Param("fields") String fields, @Param("limit") Integer limit, @Param("before") String before, @Param("after") String after, @Param("include") String include, @Param("entityType") String entityType, @Param("testPlatform") String testPlatform, @Param("supportedDataType") String supportedDataType); /** * List test definitions * Similar to listTestDefinitions but it also returns the http response headers . * Get a list of test definitions, optionally filtered by `service` it belongs to. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * @param fields Fields requested in the returned resource (optional) * @param limit Limit the number test definitions returned. (1 to 1000000, default = 10) (optional, default to 10) * @param before Returns list of test definitions before this cursor (optional) * @param after Returns list of test definitions after this cursor (optional) * @param include Include all, deleted, or non-deleted entities. (optional, default to non-deleted) * @param entityType Filter by entityType. (optional) * @param testPlatform Filter by a test platform (optional) * @param supportedDataType Filter tests definition by supported data type (optional) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("GET /v1/dataQuality/testDefinitions?fields={fields}&limit={limit}&before={before}&after={after}&include={include}&entityType={entityType}&testPlatform={testPlatform}&supportedDataType={supportedDataType}") @Headers({ "Accept: application/json", }) ApiResponse listTestDefinitionsWithHttpInfo(@Param("fields") String fields, @Param("limit") Integer limit, @Param("before") String before, @Param("after") String after, @Param("include") String include, @Param("entityType") String entityType, @Param("testPlatform") String testPlatform, @Param("supportedDataType") String supportedDataType); /** * List test definitions * Get a list of test definitions, optionally filtered by `service` it belongs to. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * Note, this is equivalent to the other listTestDefinitions 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 ListTestDefinitionsQueryParams} 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)
  • *
  • limit - Limit the number test definitions returned. (1 to 1000000, default = 10) (optional, default to 10)
  • *
  • before - Returns list of test definitions before this cursor (optional)
  • *
  • after - Returns list of test definitions after this cursor (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
  • entityType - Filter by entityType. (optional)
  • *
  • testPlatform - Filter by a test platform (optional)
  • *
  • supportedDataType - Filter tests definition by supported data type (optional)
  • *
* @return TestDefinitionList */ @RequestLine("GET /v1/dataQuality/testDefinitions?fields={fields}&limit={limit}&before={before}&after={after}&include={include}&entityType={entityType}&testPlatform={testPlatform}&supportedDataType={supportedDataType}") @Headers({ "Accept: application/json", }) TestDefinitionList listTestDefinitions(@QueryMap(encoded=true) Map queryParams); /** * List test definitions * Get a list of test definitions, optionally filtered by `service` it belongs to. Use `fields` parameter to get only necessary fields. Use cursor-based pagination to limit the number entries in the list using `limit` and `before` or `after` query params. * Note, this is equivalent to the other listTestDefinitions 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)
  • *
  • limit - Limit the number test definitions returned. (1 to 1000000, default = 10) (optional, default to 10)
  • *
  • before - Returns list of test definitions before this cursor (optional)
  • *
  • after - Returns list of test definitions after this cursor (optional)
  • *
  • include - Include all, deleted, or non-deleted entities. (optional, default to non-deleted)
  • *
  • entityType - Filter by entityType. (optional)
  • *
  • testPlatform - Filter by a test platform (optional)
  • *
  • supportedDataType - Filter tests definition by supported data type (optional)
  • *
* @return TestDefinitionList */ @RequestLine("GET /v1/dataQuality/testDefinitions?fields={fields}&limit={limit}&before={before}&after={after}&include={include}&entityType={entityType}&testPlatform={testPlatform}&supportedDataType={supportedDataType}") @Headers({ "Accept: application/json", }) ApiResponse listTestDefinitionsWithHttpInfo(@QueryMap(encoded=true) Map queryParams); /** * A convenience class for generating query parameters for the * listTestDefinitions method in a fluent style. */ public static class ListTestDefinitionsQueryParams extends HashMap { public ListTestDefinitionsQueryParams fields(final String value) { put("fields", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams limit(final Integer value) { put("limit", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams before(final String value) { put("before", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams after(final String value) { put("after", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams include(final String value) { put("include", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams entityType(final String value) { put("entityType", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams testPlatform(final String value) { put("testPlatform", EncodingUtils.encode(value)); return this; } public ListTestDefinitionsQueryParams supportedDataType(final String value) { put("supportedDataType", EncodingUtils.encode(value)); return this; } } /** * Update a test definition * Update an existing Test Definition using JsonPatch. * @param id Id of the test definition (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update a test definition Documentation */ @RequestLine("PATCH /v1/dataQuality/testDefinitions/{id}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) void patchTestDefinition(@Param("id") UUID id, Object body); /** * Update a test definition * Similar to patchTestDefinition but it also returns the http response headers . * Update an existing Test Definition using JsonPatch. * @param id Id of the test definition (required) * @param body JsonPatch with array of operations (optional) * JsonPatch RFC * @see Update a test definition Documentation */ @RequestLine("PATCH /v1/dataQuality/testDefinitions/{id}") @Headers({ "Content-Type: application/json-patch+json", "Accept: application/json", }) ApiResponse patchTestDefinitionWithHttpInfo(@Param("id") UUID id, Object body); /** * Restore a soft deleted test definition * Restore a soft deleted TestDefinition. * @param restoreEntity (optional) * @return TestDefinition */ @RequestLine("PUT /v1/dataQuality/testDefinitions/restore") @Headers({ "Content-Type: application/json", "Accept: application/json", }) TestDefinition restore8(RestoreEntity restoreEntity); /** * Restore a soft deleted test definition * Similar to restore8 but it also returns the http response headers . * Restore a soft deleted TestDefinition. * @param restoreEntity (optional) * @return A ApiResponse that wraps the response boyd and the http headers. */ @RequestLine("PUT /v1/dataQuality/testDefinitions/restore") @Headers({ "Content-Type: application/json", "Accept: application/json", }) ApiResponse restore8WithHttpInfo(RestoreEntity restoreEntity); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy