我使用 jclouds 作为 Rackspace Cloud Files 的 api。
Api 允许我使用BlobStore.createContainerInLocation在不同位置创建容器
现在,拥有已经存在的容器,我如何获得它的位置?
我使用 jclouds 作为 Rackspace Cloud Files 的 api。
Api 允许我使用BlobStore.createContainerInLocation在不同位置创建容器
现在,拥有已经存在的容器,我如何获得它的位置?
您可以遍历 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]' )。
jclouds 没有为此提供直接的机制。相反,您可以调用BlobStore.list
,比较容器名称,然后使用StorageMetadata.getLocation
:
for (StorageMetadata resourceMd : blobStore.list()) {
if (containerName.equals(resourceMd.getName())) {
System.out.println(resourceMd.getLocation().getId());
}
}