trevorflanagan commented on this pull request.


> +### Terms
+Like any cloud provider, Dimension Data CloudControl has its own set of terms 
in cloud computing. To abstract this into jclouds' Compute interface, these 
terms were associated:
+
+- Node - a `Server`
+- Image - both *user-uploaded* and *provided* `CustomerImage` and `OSImage`
+- Location - `Geographic Region` equates to a jclouds Region (AU, NA, EU etc) 
and `Datacenter` equates to a jclouds Zone (NA9, NA12 etc). There is further 
information on the Geographic Regions 
[here](https://docs.mcp-services.net/display/CCD/Introduction+to+Geographic+Regions).
+- Hardware - number of cores, RAM size and storage size for a given Image
+
+### Getting Started
+
+{% highlight java %}
+    ComputeService compute = ContextBuilder.newBuilder( 
"dimensiondata-cloudcontrol" )
+                             .credentials( "username", "password" )
+                             .buildView( ComputeServiceContext.class )
+                             .getComputeService();
+{% endhighlight %}                             

This is not yet implemented. I am going to leave a note instead to use the 
unrwapped version of the API for now.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-site/pull/220#discussion_r224142592

Reply via email to