89 lines
2.8 KiB
JavaScript
89 lines
2.8 KiB
JavaScript
// Licensed to Elasticsearch B.V under one or more agreements.
|
|
// Elasticsearch B.V licenses this file to you under the Apache 2.0 License.
|
|
// See the LICENSE file in the project root for more information
|
|
|
|
'use strict'
|
|
|
|
/* eslint camelcase: 0 */
|
|
/* eslint no-unused-vars: 0 */
|
|
|
|
function buildMlDeleteCalendarEvent (opts) {
|
|
// eslint-disable-next-line no-unused-vars
|
|
const { makeRequest, ConfigurationError, handleError, snakeCaseKeys } = opts
|
|
|
|
const acceptedQuerystring = [
|
|
|
|
]
|
|
|
|
const snakeCase = {
|
|
|
|
}
|
|
|
|
/**
|
|
* Perform a ml.delete_calendar_event request
|
|
* Deletes scheduled events from a calendar.
|
|
* https://www.elastic.co/guide/en/elasticsearch/reference/current/ml-delete-calendar-event.html
|
|
*/
|
|
return function mlDeleteCalendarEvent (params, options, callback) {
|
|
options = options || {}
|
|
if (typeof options === 'function') {
|
|
callback = options
|
|
options = {}
|
|
}
|
|
if (typeof params === 'function' || params == null) {
|
|
callback = params
|
|
params = {}
|
|
options = {}
|
|
}
|
|
|
|
// check required parameters
|
|
if (params['calendar_id'] == null && params['calendarId'] == null) {
|
|
const err = new ConfigurationError('Missing required parameter: calendar_id or calendarId')
|
|
return handleError(err, callback)
|
|
}
|
|
if (params['event_id'] == null && params['eventId'] == null) {
|
|
const err = new ConfigurationError('Missing required parameter: event_id or eventId')
|
|
return handleError(err, callback)
|
|
}
|
|
|
|
// check required url components
|
|
if ((params['event_id'] != null || params['eventId'] != null) && ((params['calendar_id'] == null && params['calendarId'] == null))) {
|
|
const err = new ConfigurationError('Missing required parameter of the url: calendar_id')
|
|
return handleError(err, callback)
|
|
}
|
|
|
|
// validate headers object
|
|
if (options.headers != null && typeof options.headers !== 'object') {
|
|
const err = new ConfigurationError(`Headers should be an object, instead got: ${typeof options.headers}`)
|
|
return handleError(err, callback)
|
|
}
|
|
|
|
var warnings = []
|
|
var { method, body, calendarId, calendar_id, eventId, event_id, ...querystring } = params
|
|
querystring = snakeCaseKeys(acceptedQuerystring, snakeCase, querystring, warnings)
|
|
|
|
var ignore = options.ignore
|
|
if (typeof ignore === 'number') {
|
|
options.ignore = [ignore]
|
|
}
|
|
|
|
var path = ''
|
|
|
|
if (method == null) method = 'DELETE'
|
|
path = '/' + '_ml' + '/' + 'calendars' + '/' + encodeURIComponent(calendar_id || calendarId) + '/' + 'events' + '/' + encodeURIComponent(event_id || eventId)
|
|
|
|
// build request object
|
|
const request = {
|
|
method,
|
|
path,
|
|
body: body || '',
|
|
querystring
|
|
}
|
|
|
|
options.warnings = warnings.length === 0 ? null : warnings
|
|
return makeRequest(request, options, callback)
|
|
}
|
|
}
|
|
|
|
module.exports = buildMlDeleteCalendarEvent
|