Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.1.3: sphinx warnings reference target not found #1974

Open
kloczek opened this issue Apr 26, 2022 · 5 comments
Open

8.1.3: sphinx warnings reference target not found #1974

kloczek opened this issue Apr 26, 2022 · 5 comments
Labels

Comments

@kloczek
Copy link
Contributor

kloczek commented Apr 26, 2022

On building my packages I'm using sphinx-build command with -n switch which shows warmings about missing references. These are not critical issues.

First of all it is not possible now use straight sphinx-build.

+ /usr/bin/sphinx-build -n -T -b man docs/sphinx build/sphinx/man
Running Sphinx v4.5.0

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sphinx/config.py", line 332, in eval_config_file
    exec(code, namespace)
  File "/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/conf.py", line 22, in <module>
    import elasticsearch
ModuleNotFoundError: No module named 'elasticsearch'

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sphinx/cmd/build.py", line 272, in build_main
    app = Sphinx(args.sourcedir, args.confdir, args.outputdir,
  File "/usr/lib/python3.8/site-packages/sphinx/application.py", line 202, in __init__
    self.config = Config.read(self.confdir, confoverrides or {}, self.tags)
  File "/usr/lib/python3.8/site-packages/sphinx/config.py", line 165, in read
    namespace = eval_config_file(filename, tags)
  File "/usr/lib/python3.8/site-packages/sphinx/config.py", line 345, in eval_config_file
    raise ConfigError(msg % traceback.format_exc()) from exc
sphinx.errors.ConfigError: There is a programmable error in your configuration file:

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sphinx/config.py", line 332, in eval_config_file
    exec(code, namespace)
  File "/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/conf.py", line 22, in <module>
    import elasticsearch
ModuleNotFoundError: No module named 'elasticsearch'


Configuration error:
There is a programmable error in your configuration file:

Traceback (most recent call last):
  File "/usr/lib/python3.8/site-packages/sphinx/config.py", line 332, in eval_config_file
    exec(code, namespace)
  File "/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/conf.py", line 22, in <module>
    import elasticsearch
ModuleNotFoundError: No module named 'elasticsearch'

This can be fixed by use approach which is mentioned in sphisnx dosumentation https://www.sphinx-doc.org/en/master/usage/configuration.html#example-of-configuration-file

--- a/docs/sphinx/conf.py~      2022-04-26 19:26:16.000000000 +0000
+++ b/docs/sphinx/conf.py       2022-04-26 19:27:32.708018028 +0000
@@ -18,6 +18,8 @@

 import datetime
 import os
+import sys
+sys.path.insert(0, os.path.abspath('../..'))

 import elasticsearch

With that patch socumemtation will be always generated out os the module code from source tree.

@kloczek
Copy link
Contributor Author

kloczek commented Apr 26, 2022

After applu ttah patch `sphinx-build shows more than 500 warnings

+ /usr/bin/sphinx-build -n -T -b man docs/sphinx build/sphinx/man
Running Sphinx v4.5.0
making output directory... done
loading intersphinx inventory from https://docs.python.org/3/objects.inv...
loading intersphinx inventory from https://elastic-transport-python.readthedocs.io/en/latest/objects.inv...
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 5 added, 0 changed, 0 removed
reading sources... [100%] index
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.index:12: WARNING: Inline interpreted text or phrase reference start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.health:5: WARNING: Inline emphasis start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/async.rst:4: WARNING: duplicate object description of elasticsearch, other instance in api, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/async.rst:208: WARNING: duplicate object description of elasticsearch, other instance in async, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.index:12: WARNING: Inline interpreted text or phrase reference start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/exceptions.rst:6: WARNING: duplicate object description of elasticsearch, other instance in async, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/helpers.rst:117: WARNING: duplicate object description of elasticsearch.helpers, other instance in async, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/index.rst:97: WARNING: Duplicate explicit target name: "elasticsearch-dsl".
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/index.rst:71: ERROR: Duplicate target name, cannot be used as a unique reference: "elasticsearch-dsl".
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/index.rst:84: ERROR: Duplicate target name, cannot be used as a unique reference: "elasticsearch-dsl".
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/index.rst:88: ERROR: Duplicate target name, cannot be used as a unique reference: "elasticsearch-dsl".
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-elasticsearch-py.3 { api exceptions async helpers } /home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch:17: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.options
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.bulk:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.clear_scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.close_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.count:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.exists:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.exists_source:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.explain:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.field_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_script_context:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_script_languages:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_source:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.knn_search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.mget:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.msearch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.msearch_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.mtermvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.open_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.put_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.rank_eval:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.reindex:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.reindex_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.render_search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.scripts_painless_execute:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search_mvt:: WARNING: py:class reference target not found: elastic_transport.BinaryApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search_shards:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.terms_enum:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.termvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.update:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.update_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.update_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.submit:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.delete_autoscaling_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.get_autoscaling_capacity:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.get_autoscaling_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.put_autoscaling_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.aliases:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.aliases:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.allocation:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.allocation:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.count:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.count:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.fielddata:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.fielddata:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.health:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.health:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.help:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.indices:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.indices:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.master:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.master:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_datafeeds:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_datafeeds:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_jobs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_jobs:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_trained_models:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_trained_models:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodeattrs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodeattrs:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodes:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodes:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.pending_tasks:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.pending_tasks:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.plugins:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.plugins:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.recovery:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.recovery:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.repositories:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.repositories:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.segments:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.segments:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.shards:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.shards:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.snapshots:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.snapshots:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.tasks:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.tasks:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.templates:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.templates:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.thread_pool:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.thread_pool:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.transforms:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.transforms:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.delete_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.follow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.follow_info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.follow_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.forget_follower:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.get_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.pause_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.pause_follow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.put_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.resume_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.resume_follow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.unfollow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.allocation_explain:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.delete_component_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.delete_voting_config_exclusions:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.exists_component_template:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.get_component_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.get_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.health:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.pending_tasks:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.post_voting_config_exclusions:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.put_component_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.put_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.remote_info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.reroute:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.state:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient.delete_dangling_index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient.import_dangling_index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient.list_dangling_indices:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.delete_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.execute_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.get_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.put_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.get_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FeaturesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FeaturesClient.get_features:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FeaturesClient.reset_features:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient.global_checkpoints:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient.msearch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.GraphClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.GraphClient.explore:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.delete_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.explain_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.get_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.get_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.migrate_to_data_tiers:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.move_to_step:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.put_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.remove_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.retry:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.start:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.stop:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.add_block:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.analyze:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.clear_cache:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.clone:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.close:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.create_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.data_streams_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.disk_usage:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists_alias:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists_index_template:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists_template:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.field_usage_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.flush:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.forcemerge:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_field_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.migrate_to_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.modify_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.open:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.promote_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.recovery:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.refresh:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.reload_search_analyzers:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.resolve_index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.rollover:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.segments:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.shard_stores:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.shrink:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.simulate_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.simulate_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.split:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.unfreeze:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.update_aliases:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.validate_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.delete_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.geo_ip_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.get_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.processor_grok:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.put_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.simulate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.get_basic_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.get_trial_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.post:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.post_start_basic:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.post_start_trial:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient.delete_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient.get_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient.put_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MigrationClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MigrationClient.deprecations:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.close_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_calendar:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_calendar_event:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_calendar_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_expired_data:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_filter:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_forecast:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_model_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_trained_model:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_trained_model_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.estimate_model_memory:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.evaluate_data_frame:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.explain_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.flush_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.forecast:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_buckets:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_calendar_events:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_calendars:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_categories:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_data_frame_analytics_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_datafeed_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_datafeeds:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_filters:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_influencers:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_job_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_jobs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_model_snapshots:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_overall_buckets:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_records:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_trained_models:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_trained_models_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.infer_trained_model_deployment:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.open_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.post_calendar_events:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.post_data:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.preview_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.preview_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_calendar:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_calendar_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_filter:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model_definition_part:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model_vocabulary:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.reset_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.revert_model_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.set_upgrade_mode:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.start_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.start_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.start_trained_model_deployment:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.stop_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.stop_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.stop_trained_model_deployment:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_filter:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_model_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.upgrade_job_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.validate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.validate_detector:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MonitoringClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.MonitoringClient.bulk:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.clear_repositories_metering_archive:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.get_repositories_metering_info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.hot_threads:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.reload_secure_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.usage:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.delete_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.get_jobs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.get_rollup_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.get_rollup_index_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.put_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.rollup:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.rollup_search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.start_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.stop_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.cache_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.clear_cache:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.mount:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.authenticate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.change_password:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_api_key_cache:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_realms:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_roles:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_service_tokens:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.create_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.create_service_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_role:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_role_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_service_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.disable_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enable_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enroll_kibana:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enroll_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_builtin_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_role:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_role_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_service_accounts:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_service_credentials:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_user_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.grant_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.has_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.invalidate_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.invalidate_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_role:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_role_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.query_api_keys:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_authenticate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_complete_logout:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_invalidate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_logout:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_prepare_authentication:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_service_provider_metadata:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient.delete_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient.get_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient.put_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.delete_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.execute_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.execute_retention:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.get_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.get_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.get_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.put_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.start:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.stop:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.cleanup_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.clone:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.create_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.delete_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.get_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.restore:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.verify_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.clear_cursor:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.delete_async:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.get_async:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.get_async_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.translate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SslClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.SslClient.certificates:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient.cancel:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient.list:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TextStructureClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TextStructureClient.find_structure:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.delete_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.get_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.get_transform_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.preview_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.put_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.reset_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.start_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.stop_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.update_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.upgrade_transforms:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.ack_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.activate_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.deactivate_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.delete_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.execute_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.get_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.put_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.query_watches:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.start:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.stop:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.XPackClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.XPackClient.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/client.py:docstring of elasticsearch.client.XPackClient.usage:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.ApiError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.NotFoundError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.ConflictError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
<unknown>:1: WARNING: py:class reference target not found: elasticsearch.BadRequestError
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AuthenticationException:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AuthorizationException:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.UnsupportedProductError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch:17: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.options
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.bulk:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.clear_scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.close_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.count:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.exists:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.exists_source:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.explain:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.field_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_script_context:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_script_languages:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_source:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.knn_search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.mget:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.msearch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.msearch_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.mtermvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.open_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.put_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.rank_eval:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.reindex:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.reindex_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.render_search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.scripts_painless_execute:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search_mvt:: WARNING: py:class reference target not found: elastic_transport.BinaryApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search_shards:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.terms_enum:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.termvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.update:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.update_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.update_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/helpers.rst:91: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.parallel_bulk
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.1.3/docs/sphinx/helpers.rst:91: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.parallel_bulk
done
build succeeded, 513 warnings.

@kloczek
Copy link
Contributor Author

kloczek commented Jun 1, 2022

Just tested 5.2.2 and looks like this issue is not resolved

+ /usr/bin/sphinx-build -n -T -b man docs/sphinx build/sphinx/man
Running Sphinx v4.5.0
making output directory... done
loading intersphinx inventory from https://docs.python.org/3/objects.inv...
loading intersphinx inventory from https://elastic-transport-python.readthedocs.io/en/latest/objects.inv...
building [mo]: targets for 0 po files that are out of date
building [man]: all manpages
updating environment: [new config] 5 added, 0 changed, 0 removed
reading sources... [100%] index
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.index:12: WARNING: Inline interpreted text or phrase reference start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.health:5: WARNING: Inline emphasis start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/async.rst:4: WARNING: duplicate object description of elasticsearch, other instance in api, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/async.rst:208: WARNING: duplicate object description of elasticsearch, other instance in async, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.index:12: WARNING: Inline interpreted text or phrase reference start-string without end-string.
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/exceptions.rst:6: WARNING: duplicate object description of elasticsearch, other instance in async, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/helpers.rst:117: WARNING: duplicate object description of elasticsearch.helpers, other instance in async, use :noindex: for one of them
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/index.rst:97: WARNING: Duplicate explicit target name: "elasticsearch-dsl".
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/index.rst:71: ERROR: Duplicate target name, cannot be used as a unique reference: "elasticsearch-dsl".
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/index.rst:84: ERROR: Duplicate target name, cannot be used as a unique reference: "elasticsearch-dsl".
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/index.rst:88: ERROR: Duplicate target name, cannot be used as a unique reference: "elasticsearch-dsl".
looking for now-outdated files... none found
pickling environment... done
checking consistency... done
writing... python-elasticsearch-py.3 { api exceptions async helpers } /home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch:17: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.options
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.bulk:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.clear_scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.close_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.count:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.delete_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.exists:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.exists_source:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.explain:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.field_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_script_context:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_script_languages:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.get_source:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.knn_search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.mget:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.msearch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.msearch_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.mtermvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.open_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.put_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.rank_eval:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.reindex:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.reindex_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.render_search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.scripts_painless_execute:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search_mvt:: WARNING: py:class reference target not found: elastic_transport.BinaryApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search_shards:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.terms_enum:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.termvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.update:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.update_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.Elasticsearch.update_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AsyncSearchClient.submit:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.delete_autoscaling_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.get_autoscaling_capacity:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.get_autoscaling_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.AutoscalingClient.put_autoscaling_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.aliases:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.aliases:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.allocation:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.allocation:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.count:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.count:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.fielddata:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.fielddata:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.health:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.health:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.help:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.indices:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.indices:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.master:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.master:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_datafeeds:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_datafeeds:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_jobs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_jobs:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_trained_models:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.ml_trained_models:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodeattrs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodeattrs:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodes:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.nodes:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.pending_tasks:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.pending_tasks:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.plugins:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.plugins:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.recovery:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.recovery:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.repositories:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.repositories:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.segments:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.segments:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.shards:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.shards:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.snapshots:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.snapshots:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.tasks:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.tasks:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.templates:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.templates:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.thread_pool:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.thread_pool:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.transforms:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CatClient.transforms:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.delete_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.follow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.follow_info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.follow_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.forget_follower:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.get_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.pause_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.pause_follow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.put_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.resume_auto_follow_pattern:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.resume_follow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.CcrClient.unfollow:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.allocation_explain:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.delete_component_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.delete_voting_config_exclusions:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.exists_component_template:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.get_component_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.get_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.health:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.pending_tasks:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.post_voting_config_exclusions:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.put_component_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.put_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.remote_info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.reroute:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.state:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ClusterClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient.delete_dangling_index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient.import_dangling_index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.DanglingIndicesClient.list_dangling_indices:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.delete_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.execute_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.get_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.put_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EnrichClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.get_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.EqlClient.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FeaturesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FeaturesClient.get_features:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FeaturesClient.reset_features:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient.global_checkpoints:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient.msearch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.FleetClient.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.GraphClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.GraphClient.explore:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.delete_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.explain_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.get_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.get_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.migrate_to_data_tiers:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.move_to_step:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.put_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.remove_policy:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.retry:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.start:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IlmClient.stop:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.add_block:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.analyze:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.clear_cache:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.clone:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.close:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.create_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.data_streams_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.delete_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.disk_usage:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists_alias:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists_index_template:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.exists_template:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.field_usage_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.flush:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.forcemerge:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_field_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.get_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.migrate_to_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.modify_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.open:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.promote_data_stream:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.put_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.recovery:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.refresh:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.reload_search_analyzers:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.resolve_index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.rollover:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.segments:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.shard_stores:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.shrink:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.simulate_index_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.simulate_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.split:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.unfreeze:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.update_aliases:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IndicesClient.validate_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.delete_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.geo_ip_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.get_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.processor_grok:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.put_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.IngestClient.simulate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.get_basic_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.get_trial_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.post:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.post_start_basic:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LicenseClient.post_start_trial:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient.delete_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient.get_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.LogstashClient.put_pipeline:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MigrationClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MigrationClient.deprecations:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MigrationClient.get_feature_upgrade_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MigrationClient.post_feature_upgrade:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.close_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_calendar:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_calendar_event:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_calendar_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_expired_data:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_filter:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_forecast:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_model_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_trained_model:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.delete_trained_model_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.estimate_model_memory:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.evaluate_data_frame:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.explain_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.flush_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.forecast:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_buckets:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_calendar_events:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_calendars:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_categories:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_data_frame_analytics_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_datafeed_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_datafeeds:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_filters:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_influencers:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_job_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_jobs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_memory_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_model_snapshots:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_overall_buckets:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_records:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_trained_models:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.get_trained_models_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.infer_trained_model_deployment:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.open_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.post_calendar_events:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.post_data:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.preview_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.preview_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_calendar:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_calendar_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_filter:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model_alias:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model_definition_part:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.put_trained_model_vocabulary:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.reset_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.revert_model_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.set_upgrade_mode:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.start_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.start_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.start_trained_model_deployment:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.stop_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.stop_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.stop_trained_model_deployment:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_data_frame_analytics:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_datafeed:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_filter:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.update_model_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.upgrade_job_snapshot:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.validate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MlClient.validate_detector:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MonitoringClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.MonitoringClient.bulk:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.clear_repositories_metering_archive:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.get_repositories_metering_info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.hot_threads:: WARNING: py:class reference target not found: elastic_transport.TextApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.reload_secure_settings:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.NodesClient.usage:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.delete_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.get_jobs:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.get_rollup_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.get_rollup_index_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.put_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.rollup:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.rollup_search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.start_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.RollupClient.stop_job:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.cache_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.clear_cache:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.mount:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SearchableSnapshotsClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.activate_user_profile:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.authenticate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.change_password:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_api_key_cache:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_realms:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_roles:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.clear_cached_service_tokens:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.create_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.create_service_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_role:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_role_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_service_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.delete_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.disable_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.disable_user_profile:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enable_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enable_user_profile:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enroll_kibana:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.enroll_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_builtin_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_role:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_role_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_service_accounts:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_service_credentials:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_user_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.get_user_profile:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.grant_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.has_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.invalidate_api_key:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.invalidate_token:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_privileges:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_role:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_role_mapping:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.put_user:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.query_api_keys:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_authenticate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_complete_logout:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_invalidate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_logout:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_prepare_authentication:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.saml_service_provider_metadata:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.suggest_user_profiles:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SecurityClient.update_user_profile_data:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient.delete_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient.get_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.ShutdownClient.put_node:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.delete_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.execute_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.execute_retention:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.get_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.get_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.get_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.put_lifecycle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.start:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SlmClient.stop:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.cleanup_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.clone:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.create_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.delete_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.get_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.restore:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SnapshotClient.verify_repository:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.clear_cursor:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.delete_async:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.get_async:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.get_async_status:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SqlClient.translate:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SslClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.SslClient.certificates:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient.cancel:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TasksClient.list:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TextStructureClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TextStructureClient.find_structure:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.delete_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.get_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.get_transform_stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.preview_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.put_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.reset_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.start_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.stop_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.update_transform:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.TransformClient.upgrade_transforms:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.ack_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.activate_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.deactivate_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.delete_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.execute_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.get_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.put_watch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.query_watches:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.start:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.stats:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.WatcherClient.stop:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.XPackClient:: WARNING: py:class reference target not found: elasticsearch._sync.client._base.BaseClient
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.XPackClient.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/client.py:docstring of elasticsearch.client.XPackClient.usage:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.ApiError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.NotFoundError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.ConflictError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
<unknown>:1: WARNING: py:class reference target not found: elasticsearch.BadRequestError
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AuthenticationException:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AuthorizationException:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.UnsupportedProductError:: WARNING: py:class reference target not found: elastic_transport.ApiResponseMeta
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch:17: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.options
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.bulk:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.clear_scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.close_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.count:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.create:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.delete_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.exists:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.exists_source:: WARNING: py:class reference target not found: elastic_transport.HeadApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.explain:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.field_caps:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_script_context:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_script_languages:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.get_source:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.index:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.info:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.knn_search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.mget:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.msearch:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.msearch_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.mtermvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.open_point_in_time:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.put_script:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.rank_eval:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.reindex:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.reindex_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.render_search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.scripts_painless_execute:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.scroll:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search_mvt:: WARNING: py:class reference target not found: elastic_transport.BinaryApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search_shards:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.search_template:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.terms_enum:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.termvectors:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.update:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.update_by_query:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/elasticsearch/__init__.py:docstring of elasticsearch.AsyncElasticsearch.update_by_query_rethrottle:: WARNING: py:class reference target not found: elastic_transport.ObjectApiResponse
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/helpers.rst:91: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.parallel_bulk
/home/tkloczko/rpmbuild/BUILD/elasticsearch-py-8.2.2/docs/sphinx/helpers.rst:91: WARNING: py:meth reference target not found: elasticsearch.Elasticsearch.parallel_bulk
done
build succeeded, 522 warnings.

You can peak on fixes that kind of issues in other projects
latchset/jwcrypto#289
click-contrib/sphinx-click@abc31069
latchset/jwcrypto#289
RDFLib/rdflib-sqlalchemy#95
sissaschool/elementpath@bf869d9e

@kloczek
Copy link
Contributor Author

kloczek commented May 17, 2024

Looks like in 8.13.1 number of these warnings went up.
Do you want me to open again tercet for those warnings? 🤔

@kloczek
Copy link
Contributor Author

kloczek commented May 26, 2024

gentle ping 🤔

@pquentin
Copy link
Member

We would like to fix those warnings as long as we can reproduce them using nox -rs docs or with a Read the Docs build, yes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants