Skip to content

Commit

Permalink
feat(Catalog Management): add Catalog Management service to project (#33
Browse files Browse the repository at this point in the history
)

* feat(Catalog Management): add Catalog Management service to project

Co-authored-by: dubeejw <jwdubee@us.ibm.com>
  • Loading branch information
padamstx and dubee authored Jun 18, 2020
1 parent 07f943c commit 12bbbec
Show file tree
Hide file tree
Showing 7 changed files with 20,535 additions and 0 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ matrix:
&& openssl aes-256-cbc -K $encrypted_66f264007c0d_key -iv $encrypted_66f264007c0d_iv -in iam_access_groups.env.enc -out iam_access_groups.env -d
&& openssl aes-256-cbc -K $encrypted_94fa7fdf4df9_key -iv $encrypted_94fa7fdf4df9_iv -in global_catalog.env.enc -out global_catalog.env -d
&& openssl aes-256-cbc -K $encrypted_a72454cfb42f_key -iv $encrypted_a72454cfb42f_iv -in iam_policy_management.env.enc -out iam_policy_management.env -d
&& openssl aes-256-cbc -K $encrypted_6eaa1fc94541_key -iv $encrypted_6eaa1fc94541_iv -in catalog_mgmt.env.enc -out catalog_mgmt.env -d
|| true
- python: 3.6
- python: 3.7
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ IBM Cloud services:
Service Name | Imported Class Name
--- | ---
[Case Management](https://cloud.ibm.com/apidocs/case-management) | CaseManagementV1
[Catalog Management](https://cloud.ibm.com/apidocs/resource-catalog/private-catalog) | CatalogManagementV1
[Enterprise Management](https://cloud.ibm.com/apidocs/enterprise-apis/enterprise) | EnterpriseManagementV1
[Global Catalog](https://cloud.ibm.com/apidocs/resource-catalog/global-catalog) | GlobalCatalogV1
[Global Search](https://cloud.ibm.com/apidocs/search) | GlobalSearchV2
Expand Down
Binary file added catalog_mgmt.env.enc
Binary file not shown.
1 change: 1 addition & 0 deletions ibm_platform_services/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
from .version import __version__

from .case_management_v1 import CaseManagementV1
from .catalog_management_v1 import CatalogManagementV1
from .enterprise_management_v1 import EnterpriseManagementV1
from .global_catalog_v1 import GlobalCatalogV1
from .global_search_v2 import GlobalSearchV2
Expand Down
Loading

0 comments on commit 12bbbec

Please sign in to comment.