すべてのプロダクト
Search
ドキュメントセンター

Object Storage Service:バージョン管理

最終更新日:Nov 14, 2024

バケットのバージョン管理設定は、バケット内のすべてのオブジェクトに適用されます。 バケットのバージョン管理を有効にすると、誤ってオブジェクトを上書きまたは削除したときに、バケット内のオブジェクトの以前のバージョンを復元できます。

使用上の注意

  • このトピックでは、中国 (杭州) リージョンのパブリックエンドポイントを使用します。 OSSと同じリージョンにある他のAlibaba CloudサービスからOSSにアクセスする場合は、内部エンドポイントを使用します。 OSSリージョンとエンドポイントの詳細については、「リージョン、エンドポイント、オープンポート」をご参照ください。

  • このトピックでは、アクセス資格情報は環境変数から取得します。 アクセス資格情報の設定方法の詳細については、「アクセス資格情報の設定」をご参照ください。

  • このトピックでは、OSSエンドポイントを使用してOSSClientインスタンスを作成します。 カスタムドメイン名またはSTS (Security Token Service) を使用してOSSClientインスタンスを作成する場合は、「初期化」をご参照ください。

  • バケットのバージョン管理を構成するには、oss:PutBucketVersioning権限が必要です。 バケットのバージョン管理状態を照会するには、oss:GetBucketVersioning権限が必要です。 詳細については、「RAMユーザーへのカスタムポリシーのアタッチ」をご参照ください。

サンプルコード

バケットのバージョン管理の構成

次のコードは、バケットを作成するときにバージョン管理を有効にする方法の例を示しています。

package main

import (
	"log"

	"github.com/aliyun/aliyun-oss-go-sdk/oss"
)

func main() {
    // Obtain access credentials from environment variables. Before you run the sample code, make sure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are configured. 
    provider, err := oss.NewEnvironmentVariableCredentialsProvider()
    if err != nil {
        log.Fatalf("Failed to create credentials provider: %v", err)
    }

    // Create an OSSClient instance. 
    // Specify the endpoint of the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the endpoint to https://oss-cn-hangzhou.aliyuncs.com. Specify your actual endpoint. 
    // Specify the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the region to cn-hangzhou. Specify the actual region.
    clientOptions := []oss.ClientOption{oss.SetCredentialsProvider(&provider)}
    clientOptions = append(clientOptions, oss.Region("yourRegion"))
    // Specify the version of the signature algorithm.
    clientOptions = append(clientOptions, oss.AuthVersion(oss.AuthV4))
    client, err := oss.New("yourEndpoint", "", "", clientOptions...)
    if err != nil {
	    log.Fatalf("Failed to create OSS client: %v", err)
    }

    // Create a bucket. 
    // Specify the name of the bucket. 
    bucketName := "yourBucketName"
    err = client.CreateBucket(bucketName)
    if err != nil {
        log.Fatalf("Failed to create bucket '%s': %v", bucketName, err)
    }

    // Set the versioning status of the bucket to Enabled. 
    config := oss.VersioningConfig{Status: "Enabled"}
    err = client.SetBucketVersioning(bucketName, config)
    if err != nil {
        log.Fatalf("Failed to set bucket versioning for '%s': %v", bucketName, err)
    }

    log.Printf("Bucket '%s' created and versioning enabled successfully", bucketName)
}

バケットのバージョン管理ステータスの照会

次のコードは、バケットのバージョン管理ステータスを照会する方法の例を示しています。

package main

import (
	"log"

	"github.com/aliyun/aliyun-oss-go-sdk/oss"
)

func main() {
    // Obtain access credentials from environment variables. Before you run the sample code, make sure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are configured. 
    provider, err := oss.NewEnvironmentVariableCredentialsProvider()
    if err != nil {
        log.Fatalf("Failed to create credentials provider: %v", err)
    }

    // Create an OSSClient instance. 
    // Specify the endpoint of the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the endpoint to https://oss-cn-hangzhou.aliyuncs.com. Specify your actual endpoint. 
    // Specify the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the region to cn-hangzhou. Specify the actual region.
    clientOptions := []oss.ClientOption{oss.SetCredentialsProvider(&provider)}
    clientOptions = append(clientOptions, oss.Region("yourRegion"))
    // Specify the version of the signature algorithm.
    clientOptions = append(clientOptions, oss.AuthVersion(oss.AuthV4))
    client, err := oss.New("yourEndpoint", "", "", clientOptions...)
    if err != nil {
	    log.Fatalf("Failed to create OSS client: %v", err)
    }

    // Query the versioning status of the bucket. 
    // Specify the name of the bucket. 
    bucketName := "yourBucketName"
    ret, err := client.GetBucketVersioning(bucketName)
    if err != nil {
        log.Fatalf("Failed to get bucket versioning for '%s': %v", bucketName, err)
    }

    // Display the versioning status of the bucket. 
    log.Printf("The bucket Versioning status for '%s': %s", bucketName, ret.Status)
}

バケット内の全オブジェクトのバージョン一覧表示

次のコードでは、指定したバケット内の削除マーカーを含むすべてのオブジェクトのバージョンを一覧表示する方法の例を示します。

package main

import (
	"log"

	"github.com/aliyun/aliyun-oss-go-sdk/oss"
)

func main() {
    // Obtain access credentials from environment variables. Before you run the sample code, make sure that the OSS_ACCESS_KEY_ID and OSS_ACCESS_KEY_SECRET environment variables are configured. 
    provider, err := oss.NewEnvironmentVariableCredentialsProvider()
    if err != nil {
        log.Fatalf("Failed to create credentials provider: %v", err)
    }

    // Create an OSSClient instance. 
    // Specify the endpoint of the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the endpoint to https://oss-cn-hangzhou.aliyuncs.com. Specify your actual endpoint. 
    // Specify the region in which the bucket is located. For example, if the bucket is located in the China (Hangzhou) region, set the region to cn-hangzhou. Specify the actual region.
    clientOptions := []oss.ClientOption{oss.SetCredentialsProvider(&provider)}
    clientOptions = append(clientOptions, oss.Region("yourRegion"))
    // Specify the version of the signature algorithm.
    clientOptions = append(clientOptions, oss.AuthVersion(oss.AuthV4))
    client, err := oss.New("yourEndpoint", "", "", clientOptions...)
    if err != nil {
	    log.Fatalf("Failed to create OSS client: %v", err)
    }

    // Specify the name of the bucket. 
    bucketName := "yourBucketName"
    bucket, err := client.Bucket(bucketName)
    if err != nil {
        log.Fatalf("Failed to get bucket '%s': %v", bucketName, err)
    }

    // List the objects whose names contain the specified prefix. 
    prefix := "yourObjectPrefix"
    ret, err := bucket.ListObjectVersions(oss.Prefix(prefix))
    if err != nil {
        log.Fatalf("Failed to list object versions for bucket '%s' with prefix '%s': %v", bucketName, prefix, err)
    }

    // Display the information about the objects. 
    for _, object := range ret.ObjectVersions {
        log.Printf("Object: %v", object)
    }

    // Display the information about the delete markers. 
    for _, marker := range ret.ObjectDeleteMarkers {
        log.Printf("Delete Marker: %v", marker)
    }
}

関連ドキュメント

  • バケットのバージョン管理を構成するために呼び出すことができるAPI操作の詳細については、「SetBucketVersioning」をご参照ください。

  • バケットのバージョン管理ステータスを照会するために呼び出すことができるAPI操作の詳細については、「GetBucketVersioning」をご参照ください。

  • バケット内のすべてのオブジェクトのバージョンを一覧表示するために呼び出すことができるAPI操作の詳細については、「ListObjectVersions」をご参照ください。