Skip to content

Commit 2dc4c73

Browse files
authored
feat(transit/directlink): initial commit for Transit and DL services
* feat(transit/directlink): initial commit for Transit and DL services * feat(Transit/DirectLink): update __init__.py * travis.yml update
1 parent 988458e commit 2dc4c73

11 files changed

+9208
-2
lines changed

.dl_env.enc

544 Bytes
Binary file not shown.

.transit_env.enc

512 Bytes
Binary file not shown.

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ matrix:
1111
- >-
1212
[ -z "${TRAVIS_TAG}" ] && [ "${TRAVIS_PULL_REQUEST}" == "false" ]
1313
&& openssl aes-256-cbc -K $encrypted_3c84dcdc6bbe_key -iv $encrypted_3c84dcdc6bbe_iv -in .env.enc -out .env -d
14+
&& openssl aes-256-cbc -K $encrypted_16de86179301_key -iv $encrypted_16de86179301_iv -in .transit_env.enc -out .transit_env -d
15+
&& openssl aes-256-cbc -K $encrypted_b4d7fa377f59_key -iv $encrypted_b4d7fa377f59_iv -in .dl_env.enc -out .dl_env -d
1416
|| true
15-
- openssl aes-256-cbc -K $encrypted_16de86179301_key -iv $encrypted_16de86179301_iv -in .transit_env.enc -out .transit_env -d || true
16-
- openssl aes-256-cbc -K $encrypted_b4d7fa377f59_key -iv $encrypted_b4d7fa377f59_iv -in .dl_env.enc -out .dl_env -d || true
1717
1818
before_install:
1919
- npm install npm@latest -g

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ IBM Cloud services:
6868
| [CIS: Zone Settings](https://cloud.ibm.com/apidocs/cis/zonesettings) | ZonesSettingsV1 |
6969
| [CIS: Zones](https://cloud.ibm.com/apidocs/cis/zones) | ZonesV1 |
7070

71+
| Direct Link Service | Imported Class Name |
72+
| ---------------------------------------------------------| ------------------------------ |
73+
| [Direct Link](https://cloud.ibm.com/apidocs/direct_link) | DirectLinkApisV1 |
74+
75+
| Transit Service | Imported Class Name |
76+
| ---------------------------------------------------------------- | ------------------------------ |
77+
| [Transit Gateway](https://cloud.ibm.com/apidocs/transit-gateway) | TransitGatewayApisV1 |
7178
## Prerequisites
7279

7380
[ibm-cloud-onboarding]: https://cloud.ibm.com/registration

ibm_cloud_networking_services/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
from .custom_pages_v1 import CustomPagesV1
2727
from .dns_record_bulk_v1 import DnsRecordBulkV1
2828
from .dns_records_v1 import DnsRecordsV1
29+
from .direct_link_apis_v1 import DirectLinkApisV1
2930
from .firewall_access_rules_v1 import FirewallAccessRulesV1
3031
from .firewall_api_v1 import FirewallApiV1
3132
from .global_load_balancer_events_v1 import GlobalLoadBalancerEventsV1
@@ -37,6 +38,7 @@
3738
from .routing_v1 import RoutingV1
3839
from .security_events_api_v1 import SecurityEventsApiV1
3940
from .ssl_certificate_api_v1 import SslCertificateApiV1
41+
from .transit_gateway_apis_v1 import TransitGatewayApisV1
4042
from .user_agent_blocking_rules_v1 import UserAgentBlockingRulesV1
4143
from .waf_api_v1 import WafApiV1
4244
from .waf_rule_groups_api_v1 import WafRuleGroupsApiV1

0 commit comments

Comments
 (0)