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

194 lines
7.1 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-04-23 11:22:08 -05:00
from .utils import NamespacedClient, query_params, _make_path, SKIP_IN_PATH
2018-03-20 12:36:13 -06:00
2019-03-29 09:25:23 -06:00
2018-03-20 12:36:13 -06:00
class WatcherClient(NamespacedClient):
@query_params()
2020-03-11 16:33:15 -05:00
def ack_watch(self, watch_id, action_id=None, params=None, headers=None):
2018-03-20 12:36:13 -06:00
"""
2020-04-03 12:52:11 -05:00
Acknowledges a watch, manually throttling the execution of the watch's actions.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-ack-watch.html>`_
2018-03-20 12:36:13 -06:00
:arg watch_id: Watch ID
2019-12-17 22:31:35 +01:00
:arg action_id: A comma-separated list of the action ids to be
acked
2018-03-20 12:36:13 -06:00
"""
if watch_id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'watch_id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
"PUT",
_make_path("_watcher", "watch", watch_id, "_ack", action_id),
params=params,
2020-03-11 16:33:15 -05:00
headers=headers,
2019-03-29 09:25:23 -06:00
)
2018-03-20 12:36:13 -06:00
2019-03-29 09:25:23 -06:00
@query_params()
2020-03-11 16:33:15 -05:00
def activate_watch(self, watch_id, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2020-04-03 12:52:11 -05:00
Activates a currently inactive watch.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-activate-watch.html>`_
2019-03-29 09:25:23 -06:00
:arg watch_id: Watch ID
"""
if watch_id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'watch_id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"PUT",
_make_path("_watcher", "watch", watch_id, "_activate"),
params=params,
headers=headers,
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def deactivate_watch(self, watch_id, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2020-04-03 12:52:11 -05:00
Deactivates a currently active watch.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-deactivate-watch.html>`_
2019-03-29 09:25:23 -06:00
:arg watch_id: Watch ID
"""
if watch_id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'watch_id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
"PUT",
_make_path("_watcher", "watch", watch_id, "_deactivate"),
params=params,
2020-03-11 16:33:15 -05:00
headers=headers,
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def delete_watch(self, id, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2020-04-03 12:52:11 -05:00
Removes a watch from Watcher.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-delete-watch.html>`_
2019-03-29 09:25:23 -06:00
:arg id: Watch ID
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"DELETE",
_make_path("_watcher", "watch", id),
params=params,
headers=headers,
2019-03-29 09:25:23 -06:00
)
@query_params("debug")
2020-03-11 16:33:15 -05:00
def execute_watch(self, body=None, id=None, params=None, headers=None):
2018-03-20 12:36:13 -06:00
"""
2020-04-03 12:52:11 -05:00
Forces the execution of a stored watch.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-execute-watch.html>`_
2018-03-20 12:36:13 -06:00
:arg body: Execution control
2019-12-17 22:31:35 +01:00
:arg id: Watch ID
:arg debug: indicates whether the watch should execute in debug
mode
2018-03-20 12:36:13 -06:00
"""
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
"PUT",
_make_path("_watcher", "watch", id, "_execute"),
params=params,
2020-03-11 16:33:15 -05:00
headers=headers,
2019-03-29 09:25:23 -06:00
body=body,
)
2018-03-20 12:36:13 -06:00
@query_params()
2020-03-11 16:33:15 -05:00
def get_watch(self, id, params=None, headers=None):
2018-03-20 12:36:13 -06:00
"""
2020-04-03 12:52:11 -05:00
Retrieves a watch by its ID.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-get-watch.html>`_
2018-03-20 12:36:13 -06:00
:arg id: Watch ID
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"GET", _make_path("_watcher", "watch", id), params=params, headers=headers
2019-03-29 09:25:23 -06:00
)
2018-03-20 12:36:13 -06:00
2019-03-29 09:25:23 -06:00
@query_params("active", "if_primary_term", "if_seq_no", "version")
2020-03-11 16:33:15 -05:00
def put_watch(self, id, body=None, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2020-04-03 12:52:11 -05:00
Creates a new watch, or updates an existing one.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-put-watch.html>`_
2019-03-29 09:25:23 -06:00
:arg id: Watch ID
:arg body: The watch
:arg active: Specify whether the watch is in/active by default
2019-12-17 22:31:35 +01:00
: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
2019-03-29 09:25:23 -06:00
:arg version: Explicit version number for concurrency control
"""
if id in SKIP_IN_PATH:
raise ValueError("Empty value passed for a required argument 'id'.")
2019-12-17 22:31:35 +01:00
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"PUT",
_make_path("_watcher", "watch", id),
params=params,
headers=headers,
body=body,
2019-03-29 09:25:23 -06:00
)
@query_params()
2020-03-11 16:33:15 -05:00
def start(self, params=None, headers=None):
2019-03-29 09:25:23 -06:00
"""
2020-04-03 12:52:11 -05:00
Starts Watcher if it is not already running.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-start.html>`_
2019-03-29 09:25:23 -06:00
"""
2020-03-11 16:33:15 -05:00
return self.transport.perform_request(
"POST", "/_watcher/_start", params=params, headers=headers
)
2019-03-29 09:25:23 -06:00
2019-12-17 23:23:56 +01:00
@query_params("emit_stacktraces")
2020-03-11 16:33:15 -05:00
def stats(self, metric=None, params=None, headers=None):
2018-03-20 12:36:13 -06:00
"""
2020-04-03 12:52:11 -05:00
Retrieves the current Watcher metrics.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-stats.html>`_
2018-03-20 12:36:13 -06:00
2019-12-17 22:31:35 +01:00
:arg metric: Controls what additional stat metrics should be
include in the response Valid choices: _all, queued_watches,
2019-12-17 22:31:35 +01:00
current_watches, pending_watches
:arg emit_stacktraces: Emits stack traces of currently running
watches
2018-03-20 12:36:13 -06:00
"""
2019-03-29 09:25:23 -06:00
return self.transport.perform_request(
2020-03-11 16:33:15 -05:00
"GET",
_make_path("_watcher", "stats", metric),
params=params,
headers=headers,
2019-03-29 09:25:23 -06:00
)
2018-03-20 12:36:13 -06:00
@query_params()
2020-03-11 16:33:15 -05:00
def stop(self, params=None, headers=None):
2018-03-20 12:36:13 -06:00
"""
2020-04-03 12:52:11 -05:00
Stops Watcher if it is running.
2020-04-23 11:22:08 -05:00
`<https://www.elastic.co/guide/en/elasticsearch/reference/7.x/watcher-api-stop.html>`_
2018-03-20 12:36:13 -06:00
"""
2020-03-11 16:33:15 -05:00
return self.transport.perform_request(
"POST", "/_watcher/_stop", params=params, headers=headers
)