createMachineWithHttpInfo method

Future<Response> createMachineWithHttpInfo({
  1. CreateMachineRequest? createMachineRequest,
})

Create a machine

Creates a new machine.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<http.Response> createMachineWithHttpInfo({
  CreateMachineRequest? createMachineRequest,
}) async {
  // ignore: prefer_const_declarations
  final path = r'/machines';

  // ignore: prefer_final_locals
  Object? postBody = createMachineRequest;

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

  const contentTypes = <String>['application/json'];

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