The dummy Test Server can be used for local library tests, without needing access or registration to the Fujitsu Global Cloud Platform. You will not be able to update any resources though...
Example: [see tests/test_*.py for more examples] # Connect without client certificate to region 'test' from fgcp.resource import FGCPVDataCenter vdc = FGCPVDataCenter('client.pem', 'test') # Do typical resource actions - updates are not supported here vsystem = vdc.get_vsystem('Demo System') vsystem.show_status() for vserver in vsystem.vservers: #result = vserver.backup(wait=True) ...
Note: this client API library provides higher-level Client Methods, intermediate Resource Actions and lower-level API Commands.
Content: index ClientMethods ResourceActions APICommands TestServer pydoc fgcp pydoc tests