Skip to content

Commit 2789fdb

Browse files
feat(Resource Manager): add service to project (#15)
Co-authored-by: Apurva Inamdar <[email protected]>
1 parent c1cac55 commit 2789fdb

File tree

7 files changed

+1839
-0
lines changed

7 files changed

+1839
-0
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ matrix:
77
- '[ "${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'
88
- '[ "${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'
99
- '[ "${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'
10+
- '[ "${TRAVIS_PULL_REQUEST}" == "false" ] && openssl aes-256-cbc -K $encrypted_acd9ca9788e3_key -iv $encrypted_acd9ca9788e3_iv -in resource_manager.env.enc -out resource_manager.env -d || true'
1011
- python: 3.6
1112
- python: 3.7
1213
- python: 3.8

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ Service Name | Imported Class Name
5252
[Global Search](https://cloud.ibm.com/apidocs/search) | GlobalSearchV2
5353
[Global Tagging](https://cloud.ibm.com/apidocs/tagging) | GlobalTaggingV1
5454
[IAM Access Groups](https://cloud.ibm.com/apidocs/iam-access-groups) | IamAccessGroupsV2
55+
[Resource Manager](https://cloud.ibm.com/apidocs/resource-controller/resource-manager) | ResourceManagerV2
5556

5657
## Prerequisites
5758

ibm_platform_services/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@
2626
from .global_search_v2 import GlobalSearchV2
2727
from .global_tagging_v1 import GlobalTaggingV1
2828
from .iam_access_groups_v2 import IamAccessGroupsV2
29+
from .resource_manager_v2 import ResourceManagerV2

0 commit comments

Comments
 (0)