OpenSearch/docs/java-rest/high-level/ml/get-calendars.asciidoc

53 lines
1.8 KiB
Plaintext
Raw Normal View History

--
:api: get-calendars
:request: GetCalendarsRequest
:response: GetCalendarsResponse
--
[id="{upid}-{api}"]
2018-09-18 06:51:11 -04:00
=== Get Calendars API
Retrieves one or more calendar objects.
It accepts a +{request}+ and responds
with a +{response}+ object.
2018-09-18 06:51:11 -04:00
[id="{upid}-{api}-request"]
2018-09-18 06:51:11 -04:00
==== Get Calendars Request
By default a +{request}+ with no calendar Id set will return all
2018-09-18 06:51:11 -04:00
calendars. Using the literal `_all` also returns all calendars.
["source","java",subs="attributes,callouts,macros"]
--------------------------------------------------
include-tagged::{doc-tests-file}[{api}-request]
2018-09-18 06:51:11 -04:00
--------------------------------------------------
<1> Constructing a new request for all calendars
==== Optional Arguments
The following arguments are optional:
["source","java",subs="attributes,callouts,macros"]
--------------------------------------------------
include-tagged::{doc-tests-file}[{api}-id]
2018-09-18 06:51:11 -04:00
--------------------------------------------------
<1> Construct a request for the single calendar `holidays`
["source","java",subs="attributes,callouts,macros"]
--------------------------------------------------
include-tagged::{doc-tests-file}[{api}-page]
2018-09-18 06:51:11 -04:00
--------------------------------------------------
<1> The page parameters `from` and `size`. `from` specifies the number of calendars to skip.
`size` specifies the maximum number of calendars to get. Defaults to `0` and `100` respectively.
include::../execution.asciidoc[]
2018-09-18 06:51:11 -04:00
[id="{upid}-{api}-response"]
2018-09-18 06:51:11 -04:00
==== Get calendars Response
The returned +{response}+ contains the requested calendars:
2018-09-18 06:51:11 -04:00
["source","java",subs="attributes,callouts,macros"]
--------------------------------------------------
include-tagged::{doc-tests-file}[{api}-response]
2018-09-18 06:51:11 -04:00
--------------------------------------------------
<1> The count of calendars that were matched
<2> The calendars retrieved