ibm-platform-services 0.55.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ibm_platform_services/__init__.py +43 -0
- ibm_platform_services/case_management_v1.py +2414 -0
- ibm_platform_services/catalog_management_v1.py +10127 -0
- ibm_platform_services/common.py +56 -0
- ibm_platform_services/context_based_restrictions_v1.py +3633 -0
- ibm_platform_services/enterprise_billing_units_v1.py +1324 -0
- ibm_platform_services/enterprise_management_v1.py +2497 -0
- ibm_platform_services/enterprise_usage_reports_v1.py +978 -0
- ibm_platform_services/global_catalog_v1.py +5129 -0
- ibm_platform_services/global_search_v2.py +497 -0
- ibm_platform_services/global_tagging_v1.py +1601 -0
- ibm_platform_services/iam_access_groups_v2.py +7684 -0
- ibm_platform_services/iam_identity_v1.py +11525 -0
- ibm_platform_services/iam_policy_management_v1.py +9016 -0
- ibm_platform_services/ibm_cloud_shell_v1.py +480 -0
- ibm_platform_services/open_service_broker_v1.py +1774 -0
- ibm_platform_services/partner_billing_units_v1.py +1381 -0
- ibm_platform_services/partner_usage_reports_v1.py +1091 -0
- ibm_platform_services/resource_controller_v2.py +4868 -0
- ibm_platform_services/resource_manager_v2.py +986 -0
- ibm_platform_services/usage_metering_v4.py +470 -0
- ibm_platform_services/usage_reports_v4.py +5165 -0
- ibm_platform_services/user_management_v1.py +1639 -0
- ibm_platform_services/version.py +5 -0
- ibm_platform_services-0.55.3.dist-info/LICENSE +201 -0
- ibm_platform_services-0.55.3.dist-info/METADATA +165 -0
- ibm_platform_services-0.55.3.dist-info/RECORD +29 -0
- ibm_platform_services-0.55.3.dist-info/WHEEL +5 -0
- ibm_platform_services-0.55.3.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
# Copyright 2019, 2022. IBM All Rights Reserved.
|
|
3
|
+
#
|
|
4
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
# you may not use this file except in compliance with the License.
|
|
6
|
+
# You may obtain a copy of the License at
|
|
7
|
+
#
|
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
#
|
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
# See the License for the specific language governing permissions and
|
|
14
|
+
# limitations under the License.
|
|
15
|
+
"""
|
|
16
|
+
This package provides a client library for accessing the IBM Cloud Platform Services.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
from ibm_cloud_sdk_core import IAMTokenManager, DetailedResponse, BaseService, ApiException
|
|
20
|
+
|
|
21
|
+
from .common import get_sdk_headers
|
|
22
|
+
from .version import __version__
|
|
23
|
+
|
|
24
|
+
from .case_management_v1 import CaseManagementV1
|
|
25
|
+
from .catalog_management_v1 import CatalogManagementV1
|
|
26
|
+
from .enterprise_billing_units_v1 import EnterpriseBillingUnitsV1
|
|
27
|
+
from .enterprise_management_v1 import EnterpriseManagementV1
|
|
28
|
+
from .enterprise_usage_reports_v1 import EnterpriseUsageReportsV1
|
|
29
|
+
from .global_catalog_v1 import GlobalCatalogV1
|
|
30
|
+
from .global_search_v2 import GlobalSearchV2
|
|
31
|
+
from .global_tagging_v1 import GlobalTaggingV1
|
|
32
|
+
from .iam_access_groups_v2 import IamAccessGroupsV2
|
|
33
|
+
from .iam_identity_v1 import IamIdentityV1
|
|
34
|
+
from .iam_policy_management_v1 import IamPolicyManagementV1
|
|
35
|
+
from .ibm_cloud_shell_v1 import IbmCloudShellV1
|
|
36
|
+
from .open_service_broker_v1 import OpenServiceBrokerV1
|
|
37
|
+
from .partner_billing_units_v1 import PartnerBillingUnitsV1
|
|
38
|
+
from .partner_usage_reports_v1 import PartnerUsageReportsV1
|
|
39
|
+
from .resource_controller_v2 import ResourceControllerV2
|
|
40
|
+
from .resource_manager_v2 import ResourceManagerV2
|
|
41
|
+
from .usage_metering_v4 import UsageMeteringV4
|
|
42
|
+
from .usage_reports_v4 import UsageReportsV4
|
|
43
|
+
from .user_management_v1 import UserManagementV1
|