initDesignDocsWithHttpInfo method

Future<Response> initDesignDocsWithHttpInfo(
  1. String id, {
  2. String? clazz,
  3. bool? warmup,
})

Init design docs

Init design docs for provided group

Note: This method returns the HTTP Response.

Parameters:

  • String id (required): The id of the group

  • String clazz: The class of the design doc

  • bool warmup: Warmup the design doc

Implementation

Future<Response> initDesignDocsWithHttpInfo(String id, { String? clazz, bool? warmup, }) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/group/{id}/dd'.replaceAll('{id}', id);

  // ignore: prefer_final_locals
  Object? postBody;

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

  if (clazz != null) {
    queryParams.addAll(_queryParams('', 'clazz', clazz));
  }
  if (warmup != null) {
    queryParams.addAll(_queryParams('', 'warmup', warmup));
  }

  const authNames = <String>[r'basicSchema'];
  const contentTypes = <String>[];


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