/// <inheritdoc />
 public Task <IPostCalendarEventsResponse> PostCalendarEventsAsync(IPostCalendarEventsRequest request,
                                                                   CancellationToken cancellationToken = default(CancellationToken)
                                                                   ) =>
 Dispatcher.DispatchAsync <IPostCalendarEventsRequest, PostCalendarEventsRequestParameters, PostCalendarEventsResponse, IPostCalendarEventsResponse>(
     request,
     cancellationToken,
     LowLevelDispatch.XpackMlPostCalendarEventsDispatchAsync <PostCalendarEventsResponse>
     );
 public static Task <PostCalendarEventsResponse> PostCalendarEventsAsync(this IElasticClient client, IPostCalendarEventsRequest request,
                                                                         CancellationToken ct = default
                                                                         )
 => client.MachineLearning.PostCalendarEventsAsync(request, ct);
 public static PostCalendarEventsResponse PostCalendarEvents(this IElasticClient client, IPostCalendarEventsRequest request)
 => client.MachineLearning.PostCalendarEvents(request);
 /// <inheritdoc />
 public IPostCalendarEventsResponse PostCalendarEvents(IPostCalendarEventsRequest request) =>
 Dispatcher.Dispatch <IPostCalendarEventsRequest, PostCalendarEventsRequestParameters, PostCalendarEventsResponse>(
     request,
     LowLevelDispatch.XpackMlPostCalendarEventsDispatch <PostCalendarEventsResponse>
     );
 /// <inheritdoc />
 public Task <PostCalendarEventsResponse> PostCalendarEventsAsync(IPostCalendarEventsRequest request, CancellationToken ct = default) =>
 DoRequestAsync <IPostCalendarEventsRequest, PostCalendarEventsResponse>
     (request, request.RequestParameters, ct);
 /// <inheritdoc />
 public PostCalendarEventsResponse PostCalendarEvents(IPostCalendarEventsRequest request) =>
 DoRequest <IPostCalendarEventsRequest, PostCalendarEventsResponse>(request, request.RequestParameters);