You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2022/11/12 15:02:50 UTC

[incubator-streampipes] branch feature/STREAMPIPES-607 updated (f4f1b0410 -> 49830cae5)

This is an automated email from the ASF dual-hosted git repository.

bossenti pushed a change to branch feature/STREAMPIPES-607
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git


 discard f4f1b0410 tmp
 discard ce6cde834 tmp
 discard 79354a97f tmp
 discard e6151d277 tmp
 discard 37c67d015 tmp
 discard 2c1fe91f1 tmp

This update removed existing revisions from the reference, leaving the
reference pointing at a previous point in the repository history.

 * -- * -- N   refs/heads/feature/STREAMPIPES-607 (49830cae5)
            \
             O -- O -- O   (f4f1b0410)

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 streampipes-client-python/.pre-commit-config.yaml  |  27 ++-
 streampipes-client-python/DEVELOPMENT.md           |  68 -------
 streampipes-client-python/Makefile                 |   2 +-
 streampipes-client-python/README.md                |  24 ++-
 streampipes-client-python/setup.py                 |  10 +-
 .../streampipes_client/__init__.py                 |   6 +-
 .../streampipes_client/__version__.py              |   4 -
 .../streampipes_client/client/__init__.py          |  14 +-
 .../streampipes_client/client/client.py            | 149 +++-------------
 .../client/credential_provider.py                  | 111 ------------
 .../streampipes_client/client/credentials.py       |  50 ++++++
 .../streampipes_client/client/endpoint/__init__.py |  27 ---
 .../client/endpoint/data_lake_measure.py           |  89 ----------
 .../streampipes_client/client/endpoint/endpoint.py | 196 ---------------------
 .../streampipes_client/endpoint}/__init__.py       |   0
 .../endpoint/data_lake_measure.py                  |  13 ++
 .../streampipes_client/endpoint/endpoint.py        | 103 +++++++++++
 .../streampipes_client/model/__init__.py           |   2 +-
 .../streampipes_client/model/common.py             |  56 +++---
 .../streampipes_client/model/container/__init__.py |  14 +-
 .../model/container/data_lake_measures.py          |  57 +-----
 .../model/container/model_container.py             |  66 +++++++
 .../model/container/resource_container.py          | 151 ----------------
 .../streampipes_client/model/element}/__init__.py  |   2 +
 .../model/element/data_lake_measure.py             |  26 ++-
 .../streampipes_client/model/element/element.py    |   9 +-
 .../streampipes_client/model/exception.py          |  86 ---------
 .../streampipes_client/model/resource/__init__.py  |  24 ---
 .../model/resource/data_lake_measure.py            |  45 -----
 .../streampipes_client/model/resource/resource.py  |  38 ----
 30 files changed, 355 insertions(+), 1114 deletions(-)
 delete mode 100644 streampipes-client-python/DEVELOPMENT.md
 delete mode 100644 streampipes-client-python/streampipes_client/client/credential_provider.py
 create mode 100644 streampipes-client-python/streampipes_client/client/credentials.py
 delete mode 100644 streampipes-client-python/streampipes_client/client/endpoint/__init__.py
 delete mode 100644 streampipes-client-python/streampipes_client/client/endpoint/data_lake_measure.py
 delete mode 100644 streampipes-client-python/streampipes_client/client/endpoint/endpoint.py
 copy {streampipes-wrapper-python/streampipes/api => streampipes-client-python/streampipes_client/endpoint}/__init__.py (100%)
 create mode 100644 streampipes-client-python/streampipes_client/endpoint/data_lake_measure.py
 create mode 100644 streampipes-client-python/streampipes_client/endpoint/endpoint.py
 create mode 100644 streampipes-client-python/streampipes_client/model/container/model_container.py
 delete mode 100644 streampipes-client-python/streampipes_client/model/container/resource_container.py
 copy {streampipes-wrapper-python/streampipes/api/resources => streampipes-client-python/streampipes_client/model/element}/__init__.py (96%)
 copy streampipes-wrapper-python/streampipes/api/resources/processor.py => streampipes-client-python/streampipes_client/model/element/data_lake_measure.py (64%)
 copy streampipes-wrapper-python/streampipes/model/base/abstract_streampipes_entity.py => streampipes-client-python/streampipes_client/model/element/element.py (86%)
 delete mode 100644 streampipes-client-python/streampipes_client/model/exception.py
 delete mode 100644 streampipes-client-python/streampipes_client/model/resource/__init__.py
 delete mode 100644 streampipes-client-python/streampipes_client/model/resource/data_lake_measure.py
 delete mode 100644 streampipes-client-python/streampipes_client/model/resource/resource.py