You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by is...@apache.org on 2020/10/04 13:36:48 UTC

[airavata-custos] branch develop updated (9e269f9 -> fa0fdc4)

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

isjarana pushed a change to branch develop
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git.


    from 9e269f9  Merge pull request #105 from isururanawaka/develop
     new 670cbf4  Add sharing management client and resource secret methods
     new 18eafa2  python sdk improvements
     new fa0fdc4  Merge pull request #107 from isururanawaka/pythonSDK

The 294 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 custos-client-sdks/custos-python-sdk/README.md     |   13 +-
 .../custos/clients/group_management_client.py      |   79 +-
 .../clients/resource_secret_management_client.py   |   56 +-
 .../custos/clients/sharing_management_client.py    |  120 +
 .../custos/clients/user_management_client.py       |   14 +-
 .../custos/server/core/IamAdminService_pb2.py      |  980 +++++---
 .../custos/server/core/IamAdminService_pb2_grpc.py | 2354 +++++++++++++-------
 .../server/core/ResourceSecretService_pb2.py       |  731 +++++-
 .../server/core/ResourceSecretService_pb2_grpc.py  |  443 +++-
 .../custos/server/core/SharingService_pb2.py       | 1438 ++++++++++++
 .../custos/server/core/SharingService_pb2_grpc.py  |  858 +++++++
 .../custos/server/core/UserProfileService_pb2.py   |  572 ++++-
 .../server/core/UserProfileService_pb2_grpc.py     | 1066 ++++++---
 .../integration/GroupManagementService_pb2.py      |  107 +-
 .../integration/GroupManagementService_pb2_grpc.py |  651 ++++--
 .../ResourceSecretManagementService_pb2.py         |  122 +-
 .../ResourceSecretManagementService_pb2_grpc.py    |  495 +++-
 .../integration/SharingManagementService_pb2.py    |  300 +++
 .../SharingManagementService_pb2_grpc.py           |  858 +++++++
 .../integration/UserManagementService_pb2.py       |  157 +-
 .../integration/UserManagementService_pb2_grpc.py  | 1169 ++++++----
 .../custos_python_sdk.egg-info/SOURCES.txt         |    7 +
 .../iam-admin-core-service}/IamAdminService_pb2.py |  980 +++++---
 .../IamAdminService_pb2_grpc.py                    | 1585 +++++++++++++
 24 files changed, 12641 insertions(+), 2514 deletions(-)
 create mode 100644 custos-client-sdks/custos-python-sdk/custos/clients/sharing_management_client.py
 create mode 100644 custos-client-sdks/custos-python-sdk/custos/server/core/SharingService_pb2.py
 create mode 100644 custos-client-sdks/custos-python-sdk/custos/server/core/SharingService_pb2_grpc.py
 create mode 100644 custos-client-sdks/custos-python-sdk/custos/server/integration/SharingManagementService_pb2.py
 create mode 100644 custos-client-sdks/custos-python-sdk/custos/server/integration/SharingManagementService_pb2_grpc.py
 copy {custos-client-sdks/custos-python-sdk/custos/server/core => custos-core-services/iam-admin-core-service}/IamAdminService_pb2.py (70%)
 create mode 100644 custos-core-services/iam-admin-core-service/IamAdminService_pb2_grpc.py