为 Cloud Storage 存储桶停用对象版本控制。
深入探索
如需查看包含此代码示例的详细文档,请参阅以下内容:
代码示例
C#
如需了解详情,请参阅 Cloud Storage C# API 参考文档。
using Google.Apis.Storage.v1.Data;
using Google.Cloud.Storage.V1;
using System;
public class BucketDisableVersioningSample
{
public Bucket BucketDisableVersioning(string bucketName = "your-bucket-name")
{
var storage = StorageClient.Create();
var bucket = storage.GetBucket(bucketName);
if (bucket.Versioning?.Enabled != true)
{
Console.WriteLine($"Versioning already disabled for bucket {bucketName}.");
}
else
{
bucket.Versioning.Enabled = false;
bucket = storage.UpdateBucket(bucket);
Console.WriteLine($"Versioning is now disabled for bucket {bucketName}.");
}
return bucket;
}
}
C++
如需了解详情,请参阅 Cloud Storage C++ API 参考文档。
namespace gcs = ::google::cloud::storage;
using ::google::cloud::StatusOr;
[](gcs::Client client, std::string const& bucket_name) {
StatusOr<gcs::BucketMetadata> original =
client.GetBucketMetadata(bucket_name);
if (!original) throw std::runtime_error(original.status().message());
StatusOr<gcs::BucketMetadata> patched = client.PatchBucket(
bucket_name,
gcs::BucketMetadataPatchBuilder().SetVersioning(
gcs::BucketVersioning{false}),
gcs::IfMetagenerationMatch(original->metageneration()));
if (!patched) throw std::runtime_error(patched.status().message());
auto versioning =
patched->versioning().value_or(gcs::BucketVersioning{false});
std::cout << "Object versioning for bucket " << bucket_name << " is "
<< (versioning.enabled ? "enabled" : "disabled") << "\n";
}
Go
如需了解详情,请参阅 Cloud Storage Go API 参考文档。
import (
"context"
"fmt"
"io"
"time"
"cloud.google.com/go/storage"
)
// disableVersioning disables object versioning on a bucket.
func disableVersioning(w io.Writer, bucketName string) error {
// bucketName := "bucket-name"
ctx := context.Background()
client, err := storage.NewClient(ctx)
if err != nil {
return fmt.Errorf("storage.NewClient: %v", err)
}
defer client.Close()
ctx, cancel := context.WithTimeout(ctx, time.Second*10)
defer cancel()
bucket := client.Bucket(bucketName)
bucketAttrsToUpdate := storage.BucketAttrsToUpdate{
VersioningEnabled: false,
}
if _, err := bucket.Update(ctx, bucketAttrsToUpdate); err != nil {
return fmt.Errorf("Bucket(%q).Update: %v", bucketName, err)
}
fmt.Fprintf(w, "Versioning was disabled for %v\n", bucketName)
return nil
}
Java
如需了解详情,请参阅 Cloud Storage Java API 参考文档。
import com.google.cloud.storage.Bucket;
import com.google.cloud.storage.Storage;
import com.google.cloud.storage.StorageOptions;
public class DisableBucketVersioning {
public static void disableBucketVersioning(String projectId, String bucketName) {
// The ID of your GCP project
// String projectId = "your-project-id";
// The ID of your GCS bucket
// String bucketName = "your-unique-bucket-name";
Storage storage = StorageOptions.newBuilder().setProjectId(projectId).build().getService();
Bucket bucket = storage.get(bucketName);
bucket.toBuilder().setVersioningEnabled(false).build().update();
System.out.println("Versioning is now disabled for bucket " + bucketName);
}
}
Node.js
如需了解详情,请参阅 Cloud Storage Node.js API 参考文档。
/**
* TODO(developer): Uncomment the following lines before running the sample.
*/
// The ID of your GCS bucket
// const bucketName = 'your-unique-bucket-name';
// Imports the Google Cloud client library
const {Storage} = require('@google-cloud/storage');
// Creates a client
const storage = new Storage();
async function disableBucketVersioning() {
await storage.bucket(bucketName).setMetadata({
versioning: {
enabled: false,
},
});
console.log(`Versioning is disabled for bucket ${bucketName}`);
}
disableBucketVersioning().catch(console.error);
PHP
如需了解详情,请参阅 Cloud Storage PHP API 参考文档。
use Google\Cloud\Storage\StorageClient;
/**
* Disable versioning of the given bucket.
*
* @param string $bucketName The name of your Cloud Storage bucket.
*/
function disable_versioning($bucketName)
{
// $bucketName = 'my-bucket';
$storage = new StorageClient();
$bucket = $storage->bucket($bucketName);
$bucket->update([
'versioning' => [
'enabled' => false,
]
]);
printf('Versioning is now disabled for bucket %s', $bucketName);
}
Python
如需了解详情,请参阅 Cloud Storage Python API 参考文档。
from google.cloud import storage
def disable_versioning(bucket_name):
"""Disable versioning for this bucket."""
# bucket_name = "my-bucket"
storage_client = storage.Client()
bucket = storage_client.get_bucket(bucket_name)
bucket.versioning_enabled = False
bucket.patch()
print(f"Versioning was disabled for bucket {bucket}")
return bucket
Ruby
如需了解详情,请参阅 Cloud Storage Ruby API 参考文档。
def disable_versioning bucket_name:
# The ID of your GCS bucket
# bucket_name = "your-unique-bucket-name"
require "google/cloud/storage"
storage = Google::Cloud::Storage.new
bucket = storage.bucket bucket_name
bucket.versioning = false
puts "Versioning was disabled for bucket #{bucket_name}"
end
后续步骤
如需搜索和过滤其他 Google Cloud 产品的代码示例,请参阅 Google Cloud 示例浏览器。