本文整理了Java中com.google.api.services.storage.model.Bucket.getStorageClass()
方法的一些代码示例,展示了Bucket.getStorageClass()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Bucket.getStorageClass()
方法的具体详情如下:
包路径:com.google.api.services.storage.model.Bucket
类名称:Bucket
方法名:getStorageClass
暂无
代码示例来源:origin: googleapis/google-cloud-java
builder.setLocation(bucketPb.getLocation());
if (bucketPb.getStorageClass() != null) {
builder.setStorageClass(StorageClass.valueOf(bucketPb.getStorageClass()));
代码示例来源:origin: com.google.cloud.bigdataoss/gcsio
/** Helper for converting a StorageResourceId + Bucket into a GoogleCloudStorageItemInfo. */
public static GoogleCloudStorageItemInfo createItemInfoForBucket(
StorageResourceId resourceId, Bucket bucket) {
Preconditions.checkArgument(resourceId != null, "resourceId must not be null");
Preconditions.checkArgument(bucket != null, "bucket must not be null");
Preconditions.checkArgument(
resourceId.isBucket(), "resourceId must be a Bucket. resourceId: %s", resourceId);
Preconditions.checkArgument(
resourceId.getBucketName().equals(bucket.getName()),
"resourceId.getBucketName() must equal bucket.getName(): '%s' vs '%s'",
resourceId.getBucketName(), bucket.getName());
// For buckets, size is 0.
return new GoogleCloudStorageItemInfo(resourceId, bucket.getTimeCreated().getValue(),
0, bucket.getLocation(), bucket.getStorageClass());
}
代码示例来源:origin: com.google.cloud.bigdataoss/gcsio
/**
* See {@link GoogleCloudStorage#listBucketInfo()} for details about expected behavior.
*/
@Override
public List<GoogleCloudStorageItemInfo> listBucketInfo()
throws IOException {
logger.atFine().log("listBucketInfo()");
List<Bucket> allBuckets = listBucketsInternal();
List<GoogleCloudStorageItemInfo> bucketInfos = new ArrayList<>(allBuckets.size());
for (Bucket bucket : allBuckets) {
bucketInfos.add(new GoogleCloudStorageItemInfo(
new StorageResourceId(bucket.getName()), bucket.getTimeCreated().getValue(), 0,
bucket.getLocation(), bucket.getStorageClass()));
}
return bucketInfos;
}
代码示例来源:origin: com.google.gcloud/gcloud-java-storage
builder.location(bucketPb.getLocation());
if (bucketPb.getStorageClass() != null) {
builder.storageClass(bucketPb.getStorageClass());
代码示例来源:origin: com.google.cloud/google-cloud-storage
builder.setLocation(bucketPb.getLocation());
if (bucketPb.getStorageClass() != null) {
builder.setStorageClass(StorageClass.valueOf(bucketPb.getStorageClass()));
内容来源于网络,如有侵权,请联系作者删除!