checkIntegrityWithHttpInfo method

Future<Response> checkIntegrityWithHttpInfo()

Perform a database integrity check

Performs a database integrity check. Note: This check may temporarily harm system performance. Minimum server version: 5.28.0 Local mode only: This endpoint is only available through local mode.

Note: This method returns the HTTP Response.

Implementation

Future<Response> checkIntegrityWithHttpInfo() async {
  // ignore: prefer_const_declarations
  final path = r'/integrity';

  // ignore: prefer_final_locals
  Object? postBody;

  final queryParams = <MmQueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>[];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}