Skip to content

Commit 1622ec3

Browse files
fix: PDNS - Added renamed-sdk and deprecation notice
1 parent ecdf0f7 commit 1622ec3

12 files changed

+9830
-10
lines changed

DEPRECATION-NOTICE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
## Deprecation Notice
2+
3+
The below table explains about deprecated methods or modules and instruction to use the new module or method can be used.
4+
5+
| Date | Deprecated Method/Module | New Method/Module to be used | Deprecated Version | Maintenance Removed Version | Comment |
6+
| ---- | ------------------------ | ------------------------------- | ------------------ | --------------------------- | --- |
7+
| 2-NOV-2020 | ResourceRecordsV1 | DnsResourceRecordsV1 | 0.4.0 | TBD | To ease module navigation |
8+
| 2-NOV-2020 | PermittedNetworksForDnsZonesV1 | DnsPermittedNetworksV1 | 0.4.0 | TBD | To ease module navigation |
9+
| 2-NOV-2020 | GlobalLoadBalancersV1 | DnsGlobalLoadBalancersV1 | 0.4.0 | TBD | To ease module navigation |

README.md

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,17 @@ IBM Cloud services:
7171
| [CIS: Zone Settings](https://cloud.ibm.com/apidocs/cis/zonesettings) | ZonesSettingsV1 |
7272
| [CIS: Zones](https://cloud.ibm.com/apidocs/cis/zones) | ZonesV1 |
7373

74-
| PDNS Service Name | Imported Class Name |
75-
| -------------------------------------------------------------------------------- | ------------------------------ |
76-
| [PDNS: Zones API](https://cloud.ibm.com/apidocs/dns-svcs) | DnsZonesV1 |
77-
| [PDNS: Resource Records API](https://cloud.ibm.com/apidocs/dns-svcs) | ResourceRecordsV1 |
78-
| [PDNS: Permitted Networks for Zones API](https://cloud.ibm.com/apidocs/dns-svcs) | PermittedNetworksForDnsZonesV1 |
79-
80-
| Direct Link Service | Imported Class Name |
81-
| -------------------------------------------------------- | ------------------- |
82-
| [Direct Link](https://cloud.ibm.com/apidocs/direct_link?code=python) | DirectLinkV1 |
83-
| [Direct Link Provider](https://cloud.ibm.com/apidocs/direct_link_provider_api?code=python) | DirectLinkProviderV2 |
74+
| PDNS Service Name | Imported Class Name |
75+
| -------------------------------------------------------------------------------- | ------------------------------------------------------- |
76+
| [PDNS: Zones API](https://cloud.ibm.com/apidocs/dns-svcs) | DnsZonesV1 |
77+
| [PDNS: Resource Records API](https://cloud.ibm.com/apidocs/dns-svcs) | ~ResourceRecordsV1~ DnsResourceRecordsV1 |
78+
| [PDNS: Permitted Networks for Zones API](https://cloud.ibm.com/apidocs/dns-svcs) | ~PermittedNetworksForDnsZonesV1~ DnsPermittedNetworksV1 |
79+
| [PDNS: Global Load Balancers API](https://cloud.ibm.com/apidocs/dns-svcs) | ~GlobalLoadBalancersV1~ DnsGlobalLoadBalancersV1 |
80+
81+
| Direct Link Service | Imported Class Name |
82+
| ------------------------------------------------------------------------------------------ | -------------------- |
83+
| [Direct Link](https://cloud.ibm.com/apidocs/direct_link?code=python) | DirectLinkV1 |
84+
| [Direct Link Provider](https://cloud.ibm.com/apidocs/direct_link_provider_api?code=python) | DirectLinkProviderV2 |
8485

8586
| Transit Service | Imported Class Name |
8687
| ---------------------------------------------------------------- | -------------------- |
@@ -124,6 +125,10 @@ If you encounter an issue with the project, you are welcome to submit a
124125
[bug report](<github-repo-url>/issues).
125126
Before that, please search for similar issues. It's possible that someone has already reported the problem.
126127

128+
## Deprecation Notice
129+
130+
For deprecation notice, please see [this link](https://github.com/IBM/networking-python-sdk/blob/master/DEPRECATION-NOTICE.md)
131+
127132
## Open source @ IBM
128133

129134
Find more open source projects on the [IBM Github Page](http://ibm.github.io/)

ibm_cloud_networking_services/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@
5353
from .resource_records_v1 import ResourceRecordsV1
5454
from .permitted_networks_for_dns_zones_v1 import PermittedNetworksForDnsZonesV1
5555
from .global_load_balancers_v1 import GlobalLoadBalancersV1
56+
from .dns_resource_records_v1 import DnsResourceRecordsV1
57+
from .dns_permitted_networks_v1 import DnsPermittedNetworksV1
58+
from .dns_global_load_balancers_v1 import DnsGlobalLoadBalancersV1
5659

5760
# Directlink Service Packages
5861
from .direct_link_v1 import DirectLinkV1

0 commit comments

Comments
 (0)