November 23, 2017


route_global_ip.py

route_global_ip.py
"""
Route Global IP. This function is used to create a new transaction
to modify a global IP route

Important manual pages:
http://sldn.softlayer.com/reference/services/SoftLayer_Network_Subnet_IpAddress_Global/route
License: http://sldn.softlayer.com/article/License
Author: SoftLayer Technologies, Inc. <sldn@softlayer.com>
"""
import SoftLayer
# For nice debug output:
from pprint import pprint as pp

# Your SoftLayer API username and key.
API_USERNAME = 'set me'

# Generate one at https://control.softlayer.com/account/users
API_KEY = 'set me'

subnetId = 880579

newEndPointIpAddress = '50.97.102.211'

client = SoftLayer.Client(
    username=API_USERNAME,
    api_key=API_KEY
)

try:
    # Get the Global IP record
    globalIpRecord = client['SoftLayer_Network_Subnet'].getGlobalIpRecord(
        id=subnetId)
    globalIpRecordId = globalIpRecord['id']

    try:
        # Route a global IP address
        pp(newEndPointIpAddress)
        result = client['SoftLayer_Network_Subnet_IpAddress_Global'].route(
            newEndPointIpAddress, id=globalIpRecordId)
        pp(result)
    except SoftLayer.SoftLayerAPIError as e:
        pp('Unable to route the global IP address faultCode=%s, faultString=%s'
            % (e.faultCode, e.faultString))

except SoftLayer.SoftLayerAPIError as e:
    pp('Failed ... Unable to get Global IP record faultCode=%s, faultString=%s'
        % (e.faultCode, e.faultString))

Feedback?

If this article contains any error, or leaves any of your questions unanswered, please help us out by opening up a github issue.
Open an issue