OpenSearch/docs/en/rest-api/ml/put-calendar.asciidoc

57 lines
1.1 KiB
Plaintext

[role="xpack"]
[[ml-put-calendar]]
=== Create Calendar API
++++
<titleabbrev>Create Calendar</titleabbrev>
++++
This API enables you to instantiate a calendar.
==== Request
`PUT _xpack/ml/calendars/<calendar_id>`
===== Description
For more information, see
{xpack-ref}/ml-calendars.html[Calendars and Scheduled Events].
==== Path Parameters
`calendar_id` (required)::
(string) Identifier for the calendar.
==== Request Body
`description`::
(string) A description of the calendar.
==== Authorization
You must have `manage_ml`, or `manage` cluster privileges to use this API.
For more information, see
{xpack-ref}/security-privileges.html[Security Privileges].
==== Examples
The following example creates the `planned-outages` calendar:
[source,js]
--------------------------------------------------
PUT _xpack/ml/calendars/planned-outages
--------------------------------------------------
// CONSOLE
When the calendar is created, you receive the following results:
[source,js]
----
{
"calendar_id": "planned-outages",
"job_ids": []
}
----
//TESTRESPONSE