我使用jclouds作为Rackspace Cloud Files的api。
Api允许我使用BlobStore.createContainerInLocation
在不同位置创建容器现在,拥有已经存在的容器,我该如何获取它的位置?
答案 0 :(得分:2)
您可以遍历Rackspace区域以获取Cloud Files端点,然后您可以查询每个端点以查看容器是否存在。如下所示:
package org.jclouds.examples.rackspace.cloudfiles;
import static org.jclouds.examples.rackspace.cloudfiles.Constants.PROVIDER;
import java.io.IOException; import java.util.Set;
import org.jclouds.ContextBuilder;
import org.jclouds.openstack.swift.v1.blobstore.RegionScopedBlobStoreContext;
import org.jclouds.blobstore.BlobStore;
public class GetRegion{
private final RegionScopedBlobStoreContext ctx;
private final String YOUR_CONTAINER = "YOUR_CONTAINER_HERE";
public static void main(String[] args) throws IOException {
GetRegion getRegion = new GetRegion(args[0], args[1]);
try {
getRegion.getRegion();
}
catch (Exception e) {
e.printStackTrace();
}
}
public GetRegion(String username, String apiKey) {
ctx = ContextBuilder.newBuilder(PROVIDER)
.credentials(username, apiKey)
.buildView(RegionScopedBlobStoreContext.class);
}
private void getRegion() {
Set<String> regions = ctx.configuredRegions();
for(String region:regions){
BlobStore store = ctx.blobStoreInRegion(region);
if(store.containerExists(YOUR_CONTAINER)) {
System.out.format("Container is in %s region\n", region);
}
}
}
}
要运行,请将“YOUR_CONTAINER_HERE”替换为容器名称,并将Rackspace用户名和API密钥作为命令行参数传递(或者,将它们硬编码为'args [0]'和'args [1] ',分别)。
答案 1 :(得分:0)
jclouds没有为此提供直接机制。相反,您可以调用BlobStore.list
,比较容器名称,然后使用StorageMetadata.getLocation
:
for (StorageMetadata resourceMd : blobStore.list()) {
if (containerName.equals(resourceMd.getName())) {
System.out.println(resourceMd.getLocation().getId());
}
}