|
Project Information
Members
Featured
Downloads
Wiki pages
Links
|
Client API library for the Fujitsu Global Cloud Platform (FGCP)using XML-RPC API Version 2011-01-31 Using this libraryIf you already have access to the Fujitsu Global Cloud Platform (FGCP), have a look at the demo script: Usage: fgcp_demo.py [pem_file] [region] If not, register on one of the Service Portals from the list below. Afterwards, you can access your resources via command-line scripts, web interfaces etc. as you prefer. # Connect with your client certificate to region 'uk'
from fgcp.resource import FGCPVDataCenter
vdc = FGCPVDataCenter('client.pem', 'uk')
# Do typical actions on resources
vsystem = vdc.get_vsystem('Demo System')
vsystem.show_status()
#for vserver in vsystem.vservers:
# result = vserver.backup(wait=True)
#...
# See tests/test_resource.py for more examplesNote: this client API library provides higher-level Client Methods, intermediate Resource Actions and lower-level API Commands. Fujitsu Global Cloud Platform (FGCP)
Service Portal
RequirementsThis module uses gdata.tlslite.utils to create the key signature, see http://code.google.com/p/gdata-python-client/ for download and installation Note: to convert your .p12 or .pfx file to unencrypted PEM format, you can use the following 'openssl' command: openssl pkcs12 -in UserCert.p12 -out client.pem -nodes |