1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. oss
  5. BucketDataRedundancyTransition
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.oss.BucketDataRedundancyTransition

Explore with Pulumi AI

Provides a OSS Bucket Data Redundancy Transition resource. Create a storage redundancy transition task to convert local redundant storage(LRS) to zone redundant storage(ZRS).

For information about OSS Bucket Data Redundancy Transition and how to use it, see What is Bucket Data Redundancy Transition.

NOTE: Available since v1.224.0.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
import * as random from "@pulumi/random";

const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new random.index.Integer("default", {
    min: 10000,
    max: 99999,
});
const createBucket = new alicloud.oss.Bucket("CreateBucket", {
    storageClass: "Standard",
    bucket: `${name}-${_default.result}`,
});
const defaultBucketDataRedundancyTransition = new alicloud.oss.BucketDataRedundancyTransition("default", {bucket: createBucket.bucket});
Copy
import pulumi
import pulumi_alicloud as alicloud
import pulumi_random as random

config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "terraform-example"
default = random.index.Integer("default",
    min=10000,
    max=99999)
create_bucket = alicloud.oss.Bucket("CreateBucket",
    storage_class="Standard",
    bucket=f"{name}-{default['result']}")
default_bucket_data_redundancy_transition = alicloud.oss.BucketDataRedundancyTransition("default", bucket=create_bucket.bucket)
Copy
package main

import (
	"fmt"

	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/oss"
	"github.com/pulumi/pulumi-random/sdk/v4/go/random"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		name := "terraform-example"
		if param := cfg.Get("name"); param != "" {
			name = param
		}
		_default, err := random.NewInteger(ctx, "default", &random.IntegerArgs{
			Min: 10000,
			Max: 99999,
		})
		if err != nil {
			return err
		}
		createBucket, err := oss.NewBucket(ctx, "CreateBucket", &oss.BucketArgs{
			StorageClass: pulumi.String("Standard"),
			Bucket:       pulumi.Sprintf("%v-%v", name, _default.Result),
		})
		if err != nil {
			return err
		}
		_, err = oss.NewBucketDataRedundancyTransition(ctx, "default", &oss.BucketDataRedundancyTransitionArgs{
			Bucket: createBucket.Bucket,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
using Random = Pulumi.Random;

return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "terraform-example";
    var @default = new Random.Index.Integer("default", new()
    {
        Min = 10000,
        Max = 99999,
    });

    var createBucket = new AliCloud.Oss.Bucket("CreateBucket", new()
    {
        StorageClass = "Standard",
        BucketName = $"{name}-{@default.Result}",
    });

    var defaultBucketDataRedundancyTransition = new AliCloud.Oss.BucketDataRedundancyTransition("default", new()
    {
        Bucket = createBucket.BucketName,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.random.integer;
import com.pulumi.random.IntegerArgs;
import com.pulumi.alicloud.oss.Bucket;
import com.pulumi.alicloud.oss.BucketArgs;
import com.pulumi.alicloud.oss.BucketDataRedundancyTransition;
import com.pulumi.alicloud.oss.BucketDataRedundancyTransitionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("terraform-example");
        var default_ = new Integer("default", IntegerArgs.builder()
            .min(10000)
            .max(99999)
            .build());

        var createBucket = new Bucket("createBucket", BucketArgs.builder()
            .storageClass("Standard")
            .bucket(String.format("%s-%s", name,default_.result()))
            .build());

        var defaultBucketDataRedundancyTransition = new BucketDataRedundancyTransition("defaultBucketDataRedundancyTransition", BucketDataRedundancyTransitionArgs.builder()
            .bucket(createBucket.bucket())
            .build());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
resources:
  default:
    type: random:integer
    properties:
      min: 10000
      max: 99999
  createBucket:
    type: alicloud:oss:Bucket
    name: CreateBucket
    properties:
      storageClass: Standard
      bucket: ${name}-${default.result}
  defaultBucketDataRedundancyTransition:
    type: alicloud:oss:BucketDataRedundancyTransition
    name: default
    properties:
      bucket: ${createBucket.bucket}
Copy

Create BucketDataRedundancyTransition Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new BucketDataRedundancyTransition(name: string, args: BucketDataRedundancyTransitionArgs, opts?: CustomResourceOptions);
@overload
def BucketDataRedundancyTransition(resource_name: str,
                                   args: BucketDataRedundancyTransitionArgs,
                                   opts: Optional[ResourceOptions] = None)

@overload
def BucketDataRedundancyTransition(resource_name: str,
                                   opts: Optional[ResourceOptions] = None,
                                   bucket: Optional[str] = None)
func NewBucketDataRedundancyTransition(ctx *Context, name string, args BucketDataRedundancyTransitionArgs, opts ...ResourceOption) (*BucketDataRedundancyTransition, error)
public BucketDataRedundancyTransition(string name, BucketDataRedundancyTransitionArgs args, CustomResourceOptions? opts = null)
public BucketDataRedundancyTransition(String name, BucketDataRedundancyTransitionArgs args)
public BucketDataRedundancyTransition(String name, BucketDataRedundancyTransitionArgs args, CustomResourceOptions options)
type: alicloud:oss:BucketDataRedundancyTransition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. BucketDataRedundancyTransitionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. BucketDataRedundancyTransitionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. BucketDataRedundancyTransitionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. BucketDataRedundancyTransitionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. BucketDataRedundancyTransitionArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var bucketDataRedundancyTransitionResource = new AliCloud.Oss.BucketDataRedundancyTransition("bucketDataRedundancyTransitionResource", new()
{
    Bucket = "string",
});
Copy
example, err := oss.NewBucketDataRedundancyTransition(ctx, "bucketDataRedundancyTransitionResource", &oss.BucketDataRedundancyTransitionArgs{
	Bucket: pulumi.String("string"),
})
Copy
var bucketDataRedundancyTransitionResource = new BucketDataRedundancyTransition("bucketDataRedundancyTransitionResource", BucketDataRedundancyTransitionArgs.builder()
    .bucket("string")
    .build());
Copy
bucket_data_redundancy_transition_resource = alicloud.oss.BucketDataRedundancyTransition("bucketDataRedundancyTransitionResource", bucket="string")
Copy
const bucketDataRedundancyTransitionResource = new alicloud.oss.BucketDataRedundancyTransition("bucketDataRedundancyTransitionResource", {bucket: "string"});
Copy
type: alicloud:oss:BucketDataRedundancyTransition
properties:
    bucket: string
Copy

BucketDataRedundancyTransition Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The BucketDataRedundancyTransition resource accepts the following input properties:

Bucket
This property is required.
Changes to this property will trigger replacement.
string
Storage space name.
Bucket
This property is required.
Changes to this property will trigger replacement.
string
Storage space name.
bucket
This property is required.
Changes to this property will trigger replacement.
String
Storage space name.
bucket
This property is required.
Changes to this property will trigger replacement.
string
Storage space name.
bucket
This property is required.
Changes to this property will trigger replacement.
str
Storage space name.
bucket
This property is required.
Changes to this property will trigger replacement.
String
Storage space name.

Outputs

All input properties are implicitly available as output properties. Additionally, the BucketDataRedundancyTransition resource produces the following output properties:

CreateTime string
Stores the creation time of the redundant transformation task.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
TaskId string
Unique identification of the storage redundancy conversion task.
CreateTime string
Stores the creation time of the redundant transformation task.
Id string
The provider-assigned unique ID for this managed resource.
Status string
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
TaskId string
Unique identification of the storage redundancy conversion task.
createTime String
Stores the creation time of the redundant transformation task.
id String
The provider-assigned unique ID for this managed resource.
status String
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
taskId String
Unique identification of the storage redundancy conversion task.
createTime string
Stores the creation time of the redundant transformation task.
id string
The provider-assigned unique ID for this managed resource.
status string
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
taskId string
Unique identification of the storage redundancy conversion task.
create_time str
Stores the creation time of the redundant transformation task.
id str
The provider-assigned unique ID for this managed resource.
status str
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
task_id str
Unique identification of the storage redundancy conversion task.
createTime String
Stores the creation time of the redundant transformation task.
id String
The provider-assigned unique ID for this managed resource.
status String
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
taskId String
Unique identification of the storage redundancy conversion task.

Look up Existing BucketDataRedundancyTransition Resource

Get an existing BucketDataRedundancyTransition resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: BucketDataRedundancyTransitionState, opts?: CustomResourceOptions): BucketDataRedundancyTransition
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        bucket: Optional[str] = None,
        create_time: Optional[str] = None,
        status: Optional[str] = None,
        task_id: Optional[str] = None) -> BucketDataRedundancyTransition
func GetBucketDataRedundancyTransition(ctx *Context, name string, id IDInput, state *BucketDataRedundancyTransitionState, opts ...ResourceOption) (*BucketDataRedundancyTransition, error)
public static BucketDataRedundancyTransition Get(string name, Input<string> id, BucketDataRedundancyTransitionState? state, CustomResourceOptions? opts = null)
public static BucketDataRedundancyTransition get(String name, Output<String> id, BucketDataRedundancyTransitionState state, CustomResourceOptions options)
resources:  _:    type: alicloud:oss:BucketDataRedundancyTransition    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Bucket Changes to this property will trigger replacement. string
Storage space name.
CreateTime string
Stores the creation time of the redundant transformation task.
Status string
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
TaskId string
Unique identification of the storage redundancy conversion task.
Bucket Changes to this property will trigger replacement. string
Storage space name.
CreateTime string
Stores the creation time of the redundant transformation task.
Status string
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
TaskId string
Unique identification of the storage redundancy conversion task.
bucket Changes to this property will trigger replacement. String
Storage space name.
createTime String
Stores the creation time of the redundant transformation task.
status String
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
taskId String
Unique identification of the storage redundancy conversion task.
bucket Changes to this property will trigger replacement. string
Storage space name.
createTime string
Stores the creation time of the redundant transformation task.
status string
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
taskId string
Unique identification of the storage redundancy conversion task.
bucket Changes to this property will trigger replacement. str
Storage space name.
create_time str
Stores the creation time of the redundant transformation task.
status str
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
task_id str
Unique identification of the storage redundancy conversion task.
bucket Changes to this property will trigger replacement. String
Storage space name.
createTime String
Stores the creation time of the redundant transformation task.
status String
Stores the state of the redundant translation task. The values are as follows: Queueing: in the queue. Processing: In progress. Finished: Finished.
taskId String
Unique identification of the storage redundancy conversion task.

Import

OSS Bucket Data Redundancy Transition can be imported using the id, e.g.

$ pulumi import alicloud:oss/bucketDataRedundancyTransition:BucketDataRedundancyTransition example <bucket>:<task_id>
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.