113543b47c2ec8090ec1ba1dcb1b12fd8efb8925
				
			
			
		
	 Brian Curtin
		
	
	113543b47c
	
	
	Adjust some proxy method names in bare_metal
			Brian Curtin
		
	
	113543b47c
	
	
	Adjust some proxy method names in bare_metal
		
			
			The method names for PortGroup are wrong. They were named properly in the resource module name (port_group) but are imported under a different name in the proxy (_portgroup) and then the proxy removes the underscore from the method names. They are now correct and will be removed at 1.0. Change-Id: I98e040e1b3185723d08d0cde7fe56e07a0b84470
OpenStack Python SDK
The python-openstacksdk is a collection of libraries for
building applications to work with OpenStack clouds. The project aims to
provide a consistent and complete set of interactions with OpenStack's
many services, along with complete documentation, examples, and
tools.
This SDK is under active development, and in the interests of providing a high-quality interface, the APIs provided in this release may differ from those provided in future release.
Usage
The following example simply connects to an OpenStack cloud and lists the containers in the Object Store service.:
from openstack import connection
conn = connection.Connection(auth_url="http://openstack:5000/v3",
                             project_name="big_project",
                             username="SDK_user",
                             password="Super5ecretPassw0rd")
for container in conn.object_store.containers():
   print(container.name)Documentation
Documentation is available at http://developer.openstack.org/sdks/python/openstacksdk/
License
Apache 2.0
Description