Skip to content

Instantly share code, notes, and snippets.

@underscorephil
Created June 20, 2014 15:32
Show Gist options
  • Save underscorephil/4f2cb1ed252bde7a40a8 to your computer and use it in GitHub Desktop.
Save underscorephil/4f2cb1ed252bde7a40a8 to your computer and use it in GitHub Desktop.
import SoftLayer.API
from pprint import pprint as pp
apiUsername = ''
apiKey = ''
client = SoftLayer.Client(
username=apiUsername,
api_key=apiKey,
)
result = client['SoftLayer_Network_Storage_Iscsi'].createSnapshot(id=1234)
pp(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment