Files
opensearch-pyd/elasticsearch/_async/client/watcher.py
T

204 lines
7.2 KiB
Python
Raw Normal View History

# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
2020-05-15 09:36:47 -05:00
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
class WatcherClient(NamespacedClient):
@query_params()
2020-05-20 12:34:29 -05:00
async def ack_watch(self, watch_id, action_id=None, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Acknowledges a watch, manually throttling the execution of the watch's actions.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-ack-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg watch_id: Watch ID
:arg action_id: A comma-separated list of the action ids to be
acked
"""
if watch_id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'watch_id'.")
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"PUT",
_make_path("_watcher", "watch", watch_id, "_ack", action_id),
params=params,
headers=headers,
)
@query_params()
2020-05-20 12:34:29 -05:00
async def activate_watch(self, watch_id, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Activates a currently inactive watch.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-activate-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg watch_id: Watch ID
"""
if watch_id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'watch_id'.")
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"PUT",
_make_path("_watcher", "watch", watch_id, "_activate"),
params=params,
headers=headers,
)
@query_params()
2020-05-20 12:34:29 -05:00
async def deactivate_watch(self, watch_id, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Deactivates a currently active watch.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-deactivate-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg watch_id: Watch ID
"""
if watch_id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'watch_id'.")
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"PUT",
_make_path("_watcher", "watch", watch_id, "_deactivate"),
params=params,
headers=headers,
)
@query_params()
2020-05-20 12:34:29 -05:00
async def delete_watch(self, id, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Removes a watch from Watcher.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-delete-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg id: Watch ID
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"DELETE",
_make_path("_watcher", "watch", id),
params=params,
headers=headers,
)
@query_params("debug")
2020-05-20 12:34:29 -05:00
async def execute_watch(self, body=None, id=None, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Forces the execution of a stored watch.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-execute-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg body: Execution control
:arg id: Watch ID
:arg debug: indicates whether the watch should execute in debug
mode
"""
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"PUT",
_make_path("_watcher", "watch", id, "_execute"),
params=params,
headers=headers,
body=body,
)
@query_params()
2020-05-20 12:34:29 -05:00
async def get_watch(self, id, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Retrieves a watch by its ID.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-get-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg id: Watch ID
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"GET", _make_path("_watcher", "watch", id), params=params, headers=headers
)
@query_params("active", "if_primary_term", "if_seq_no", "version")
2020-05-20 12:34:29 -05:00
async def put_watch(self, id, body=None, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Creates a new watch, or updates an existing one.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-put-watch.html>`_
2020-05-15 09:36:47 -05:00
:arg id: Watch ID
:arg body: The watch
:arg active: Specify whether the watch is in/active by default
:arg if_primary_term: only update the watch if the last
operation that has changed the watch has the specified primary term
:arg if_seq_no: only update the watch if the last operation that
has changed the watch has the specified sequence number
:arg version: Explicit version number for concurrency control
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"PUT",
_make_path("_watcher", "watch", id),
params=params,
headers=headers,
body=body,
)
@query_params()
2020-05-20 12:34:29 -05:00
async def start(self, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Starts Watcher if it is not already running.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-start.html>`_
2020-05-15 09:36:47 -05:00
"""
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"POST", "/_watcher/_start", params=params, headers=headers
)
@query_params("emit_stacktraces")
2020-05-20 12:34:29 -05:00
async def stats(self, metric=None, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Retrieves the current Watcher metrics.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-stats.html>`_
2020-05-15 09:36:47 -05:00
:arg metric: Controls what additional stat metrics should be
include in the response Valid choices: _all, queued_watches,
current_watches, pending_watches
:arg emit_stacktraces: Emits stack traces of currently running
watches
"""
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"GET",
_make_path("_watcher", "stats", metric),
params=params,
headers=headers,
)
@query_params()
2020-05-20 12:34:29 -05:00
async def stop(self, params=None, headers=None):
2020-05-15 09:36:47 -05:00
"""
Stops Watcher if it is running.
2020-10-20 13:02:15 -05:00
2020-05-20 12:34:29 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-stop.html>`_
2020-05-15 09:36:47 -05:00
"""
2020-05-20 12:34:29 -05:00
return await self.transport.perform_request(
2020-05-15 09:36:47 -05:00
"POST", "/_watcher/_stop", params=params, headers=headers
)