Skip to content

Commit 907f141

Browse files
feat: DNS Services update
feat: DNS Services update
2 parents 31f322b + d7f23d0 commit 907f141

16 files changed

+9411
-8717
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ matrix:
1515
&& openssl aes-256-cbc -K $encrypted_16de86179301_key -iv $encrypted_16de86179301_iv -in .transit_env.enc -out .transit_env -d
1616
&& openssl aes-256-cbc -K $encrypted_b4d7fa377f59_key -iv $encrypted_b4d7fa377f59_iv -in .dl_env.enc -out .dl_env -d
1717
|| true
18+
[ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]
19+
&& openssl aes-256-cbc -K $encrypted_89a9eb4f9417_key -iv $encrypted_89a9eb4f9417_iv -in dns.env.enc -out dns.env -d || true
1820
- python: 3.6
1921
- python: 3.7
2022
- python: 3.8

DEPRECATION-NOTICE.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ The below table explains about deprecated methods or modules and instruction to
44

55
| Date | Deprecated Method/Module | New Method/Module to be used | Deprecated Version | Maintenance Removed Version | Comment |
66
| ---- | ------------------------ | ------------------------------- | ------------------ | --------------------------- | --- |
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 |
7+
| 13-NOV-2020 | DnsZonesV1 | DnsSvcsV1 | 0.4.0 | TBD | To ease module navigation |
8+
| 13-NOV-2020 | ResourceRecordsV1 | DnsSvcsV1 | 0.4.0 | TBD | To ease module navigation |
9+
| 13-NOV-2020 | PermittedNetworksForDnsZonesV1 | DnsSvcsV1 | 0.4.0 | TBD | To ease module navigation |
10+
| 13-NOV-2020 | GlobalLoadBalancersV1 | DnsSvcsV1 | 0.4.0 | TBD | To ease module navigation |

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,12 +71,12 @@ 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~ 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 |
74+
| PDNS Service Name | Imported Class Name |
75+
| -------------------------------------------------------------------------------- | ------------------------------------------ |
76+
| [PDNS: Zones API](https://cloud.ibm.com/apidocs/dns-svcs) | ~DnsZonesV1~ DnsSvcsV1 |
77+
| [PDNS: Resource Records API](https://cloud.ibm.com/apidocs/dns-svcs) | ~ResourceRecordsV1~ DnsSvcsV1 |
78+
| [PDNS: Permitted Networks for Zones API](https://cloud.ibm.com/apidocs/dns-svcs) | ~PermittedNetworksForDnsZonesV1~ DnsSvcsV1 |
79+
| [PDNS: Global Load Balancers API](https://cloud.ibm.com/apidocs/dns-svcs) | ~GlobalLoadBalancersV1~ DnsSvcsV1 |
8080

8181
| Direct Link Service | Imported Class Name |
8282
| ------------------------------------------------------------------------------------------ | -------------------- |

dns.env.enc

400 Bytes
Binary file not shown.

ibm_cloud_networking_services/__init__.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@
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
56+
from .dns_svcs_v1 import DnsSvcsV1
5957

6058
# Directlink Service Packages
6159
from .direct_link_v1 import DirectLinkV1

0 commit comments

Comments
 (0)