postTasksIDRunsWithHttpInfo method

Future<Response> postTasksIDRunsWithHttpInfo(
  1. String taskID, {
  2. String? zapTraceSpan,
  3. RunManually? runManually,
})

Manually start a task run, overriding the current schedule

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> postTasksIDRunsWithHttpInfo(
  String taskID, {
  String? zapTraceSpan,
  RunManually? runManually,
}) async {
  final path = r'/tasks/{taskID}/runs'.replaceAll('{taskID}', taskID);

  // ignore: prefer_final_locals
  Object? postBody = runManually;

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

  if (zapTraceSpan != null) {
    headerParams[r'Zap-Trace-Span'] = parameterToString(zapTraceSpan);
  }

  const authNames = <String>[
    'BasicAuthentication',
    'QuerystringAuthentication',
    'TokenAuthentication'
  ];
  const contentTypes = <String>['application/json'];

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