Skip to content

feat(Global Catalog): add service and unit test code to project #6

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

Merged
merged 7 commits into from
Apr 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ venv/
# python 3 virtual env
python3/

.env
# plain-text credentials files
*.env

# resources
Expand Down
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ before_install:
- sudo apt-get install pandoc
- pip install pypandoc
- '[ "${TRAVIS_PULL_REQUEST}" == "false" ] && openssl aes-256-cbc -K $encrypted_3058bc69cb40_key -iv $encrypted_3058bc69cb40_iv -in ghost.env.enc -out ghost.env -d || true'
- '[ "${TRAVIS_PULL_REQUEST}" == "false" ] && openssl aes-256-cbc -K $encrypted_66f264007c0d_key -iv $encrypted_66f264007c0d_iv -in iam_access_groups.env.enc -out iam_access_groups.env -d -d || true'
- '[ "${TRAVIS_PULL_REQUEST}" == "false" ] && openssl aes-256-cbc -K $encrypted_94fa7fdf4df9_key -iv $encrypted_94fa7fdf4df9_iv -in global_catalog.env.enc -out global_catalog.env -d || true'
- '[ "${TRAVIS_PULL_REQUEST}" == "false" ] && openssl aes-256-cbc -K $encrypted_66f264007c0d_key -iv $encrypted_66f264007c0d_iv -in iam_access_groups.env.enc -out iam_access_groups.env -d || true'

install:
- pip install tox-travis
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ IBM Cloud services:

Service Name | Imported Class Name
--- | ---
[Global Catalog](https://cloud.ibm.com/apidocs/resource-catalog/global-catalog) | GlobalCatalogV1
[Global Search](https://cloud.ibm.com/apidocs/search) | GlobalSearchV2
[Global Tagging](https://cloud.ibm.com/apidocs/tagging) | GlobalTaggingV1
[IAM Access Groups](https://cloud.ibm.com/apidocs/iam-access-groups) | IamAccessGroupsV2
Expand Down
1 change: 1 addition & 0 deletions global_catalog.env.enc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
�5Ł��x�8��'[�#��K��&��G�'�WƧy���l��}Gٺ� /u�!�̄P�3���Ӣ{�z���{W̎Md�yGt���{�N��=����i���!��������K�L7��)�,�/����k�17���V @gsG1���ĞʆV�S!S��;�-�#C�x�$�cy��$����!(�!���P?t�2���}���-�ۋ���}zO6p��, z�a�� �J|H�����
Expand Down
1 change: 1 addition & 0 deletions ibm_platform_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@
from .common import get_sdk_headers
from .version import __version__

from .global_catalog_v1 import GlobalCatalogV1
from .global_search_v2 import GlobalSearchV2
from .global_tagging_v1 import GlobalTaggingV1
4,125 changes: 4,125 additions & 0 deletions ibm_platform_services/global_catalog_v1.py

Large diffs are not rendered by default.

Loading