5dc51d4b7f
* fix(security): move security api from plugins to clients Signed-off-by: florian <florian@harfanglab.fr> * chore(CHANGELOG): update CHANGELOG for the PR#442 Signed-off-by: florian <florian@harfanglab.fr> --------- Signed-off-by: florian <florian@harfanglab.fr>
19 lines
605 B
Python
19 lines
605 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# The OpenSearch Contributors require contributions made to
|
|
# this file be licensed under the Apache-2.0 license or a
|
|
# compatible open source license.
|
|
#
|
|
# Modifications Copyright OpenSearch Contributors. See
|
|
# GitHub history for details.
|
|
from typing import Any
|
|
|
|
from ..client import AsyncOpenSearch
|
|
from ..plugins.alerting import AlertingClient as AlertingClient
|
|
from .utils import NamespacedClient as NamespacedClient
|
|
|
|
class PluginsClient(NamespacedClient):
|
|
alerting: Any
|
|
index_management: Any
|
|
def __init__(self, client: AsyncOpenSearch) -> None: ...
|