mirror of https://github.com/apache/jclouds.git
dd73410d12
Refactors the Keystone Authentication and Service Catalog classes to a common model that can be used by V2 and V3 of Keystone. Each version will have their own Authentication APIs and Service Catalog Suppliers, and the higher level Keystone Authentication will transparently delegate to the right API based on the keystone-version property. OpenStack APIs will just have to define the default keystone-version property they work with, and declare the generic Keystone Authentication and Service Catalog modules. Co-authored-by: Andrea Turli <andreaturli@apache.org> |
||
---|---|---|
.. | ||
src | ||
README.md | ||
pom.xml |
README.md
Rackspace Cloud Files
The new Rackspace Cloud Files multi-region based service API.
This new "rackspace-cloudfiles" API supercedes the jclouds "cloudfiles" API, which will eventually be deprecated.
With this multi-region support, each BlobStore can be isolated to a specific region:
RegionScopedBlobStoreContext ctx =
contextBuilder.buildView(RegionScopedBlobStoreContext.class);
Set<String> regionIds = ctx.configuredRegions();
// isolated to a specific region
BlobStore dfwBlobStore = ctx.blobStoreInRegion("DFW");
BlobStore iadBlobStore = ctx.blobStoreInRegion("IAD");
Production ready? Beta
This API is new to jclouds and hence is in Beta. That means we need people to use it and give us feedback. Based on that feedback, minor changes to the interfaces may happen. This code will replace org.jclouds.openstack.swift.SwiftClient in jclouds 2.0 and it is recommended you adopt it sooner than later.