1. Packages
  2. Flexibleengine Provider
  3. API Docs
  4. DrsReplicationconsistencygroupV2
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

flexibleengine.DrsReplicationconsistencygroupV2

Explore with Pulumi AI

flexibleengine logo
flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud

    !> Warning: It has been deprecated.

    Manages a V2 replicationconsistencygroup resource within FlexibleEngine.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as flexibleengine from "@pulumi/flexibleengine";
    
    const volume1 = new flexibleengine.BlockstorageVolumeV2("volume1", {
        size: 1,
        availabilityZone: "eu-west-0a",
    });
    const volume2 = new flexibleengine.BlockstorageVolumeV2("volume2", {
        size: 1,
        availabilityZone: "eu-west-0b",
    });
    const replication1 = new flexibleengine.DrsReplicationV2("replication1", {
        description: "The description of replication_1",
        priorityStation: "eu-west-0a",
        volumeIds: [
            volume1.blockstorageVolumeV2Id,
            volume2.blockstorageVolumeV2Id,
        ],
    });
    const replicationconsistencygroup1 = new flexibleengine.DrsReplicationconsistencygroupV2("replicationconsistencygroup1", {
        description: "The description of replicationconsistencygroup_1",
        replicationIds: [replication1.drsReplicationV2Id],
        priorityStation: "eu-west-0a",
    });
    
    import pulumi
    import pulumi_flexibleengine as flexibleengine
    
    volume1 = flexibleengine.BlockstorageVolumeV2("volume1",
        size=1,
        availability_zone="eu-west-0a")
    volume2 = flexibleengine.BlockstorageVolumeV2("volume2",
        size=1,
        availability_zone="eu-west-0b")
    replication1 = flexibleengine.DrsReplicationV2("replication1",
        description="The description of replication_1",
        priority_station="eu-west-0a",
        volume_ids=[
            volume1.blockstorage_volume_v2_id,
            volume2.blockstorage_volume_v2_id,
        ])
    replicationconsistencygroup1 = flexibleengine.DrsReplicationconsistencygroupV2("replicationconsistencygroup1",
        description="The description of replicationconsistencygroup_1",
        replication_ids=[replication1.drs_replication_v2_id],
        priority_station="eu-west-0a")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/flexibleengine/flexibleengine"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		volume1, err := flexibleengine.NewBlockstorageVolumeV2(ctx, "volume1", &flexibleengine.BlockstorageVolumeV2Args{
    			Size:             pulumi.Float64(1),
    			AvailabilityZone: pulumi.String("eu-west-0a"),
    		})
    		if err != nil {
    			return err
    		}
    		volume2, err := flexibleengine.NewBlockstorageVolumeV2(ctx, "volume2", &flexibleengine.BlockstorageVolumeV2Args{
    			Size:             pulumi.Float64(1),
    			AvailabilityZone: pulumi.String("eu-west-0b"),
    		})
    		if err != nil {
    			return err
    		}
    		replication1, err := flexibleengine.NewDrsReplicationV2(ctx, "replication1", &flexibleengine.DrsReplicationV2Args{
    			Description:     pulumi.String("The description of replication_1"),
    			PriorityStation: pulumi.String("eu-west-0a"),
    			VolumeIds: pulumi.StringArray{
    				volume1.BlockstorageVolumeV2Id,
    				volume2.BlockstorageVolumeV2Id,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = flexibleengine.NewDrsReplicationconsistencygroupV2(ctx, "replicationconsistencygroup1", &flexibleengine.DrsReplicationconsistencygroupV2Args{
    			Description: pulumi.String("The description of replicationconsistencygroup_1"),
    			ReplicationIds: pulumi.StringArray{
    				replication1.DrsReplicationV2Id,
    			},
    			PriorityStation: pulumi.String("eu-west-0a"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Flexibleengine = Pulumi.Flexibleengine;
    
    return await Deployment.RunAsync(() => 
    {
        var volume1 = new Flexibleengine.BlockstorageVolumeV2("volume1", new()
        {
            Size = 1,
            AvailabilityZone = "eu-west-0a",
        });
    
        var volume2 = new Flexibleengine.BlockstorageVolumeV2("volume2", new()
        {
            Size = 1,
            AvailabilityZone = "eu-west-0b",
        });
    
        var replication1 = new Flexibleengine.DrsReplicationV2("replication1", new()
        {
            Description = "The description of replication_1",
            PriorityStation = "eu-west-0a",
            VolumeIds = new[]
            {
                volume1.BlockstorageVolumeV2Id,
                volume2.BlockstorageVolumeV2Id,
            },
        });
    
        var replicationconsistencygroup1 = new Flexibleengine.DrsReplicationconsistencygroupV2("replicationconsistencygroup1", new()
        {
            Description = "The description of replicationconsistencygroup_1",
            ReplicationIds = new[]
            {
                replication1.DrsReplicationV2Id,
            },
            PriorityStation = "eu-west-0a",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.flexibleengine.BlockstorageVolumeV2;
    import com.pulumi.flexibleengine.BlockstorageVolumeV2Args;
    import com.pulumi.flexibleengine.DrsReplicationV2;
    import com.pulumi.flexibleengine.DrsReplicationV2Args;
    import com.pulumi.flexibleengine.DrsReplicationconsistencygroupV2;
    import com.pulumi.flexibleengine.DrsReplicationconsistencygroupV2Args;
    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) {
            var volume1 = new BlockstorageVolumeV2("volume1", BlockstorageVolumeV2Args.builder()
                .size(1)
                .availabilityZone("eu-west-0a")
                .build());
    
            var volume2 = new BlockstorageVolumeV2("volume2", BlockstorageVolumeV2Args.builder()
                .size(1)
                .availabilityZone("eu-west-0b")
                .build());
    
            var replication1 = new DrsReplicationV2("replication1", DrsReplicationV2Args.builder()
                .description("The description of replication_1")
                .priorityStation("eu-west-0a")
                .volumeIds(            
                    volume1.blockstorageVolumeV2Id(),
                    volume2.blockstorageVolumeV2Id())
                .build());
    
            var replicationconsistencygroup1 = new DrsReplicationconsistencygroupV2("replicationconsistencygroup1", DrsReplicationconsistencygroupV2Args.builder()
                .description("The description of replicationconsistencygroup_1")
                .replicationIds(replication1.drsReplicationV2Id())
                .priorityStation("eu-west-0a")
                .build());
    
        }
    }
    
    resources:
      volume1:
        type: flexibleengine:BlockstorageVolumeV2
        properties:
          size: 1
          availabilityZone: eu-west-0a
      volume2:
        type: flexibleengine:BlockstorageVolumeV2
        properties:
          size: 1
          availabilityZone: eu-west-0b
      replication1:
        type: flexibleengine:DrsReplicationV2
        properties:
          description: The description of replication_1
          priorityStation: eu-west-0a
          volumeIds:
            - ${volume1.blockstorageVolumeV2Id}
            - ${volume2.blockstorageVolumeV2Id}
      replicationconsistencygroup1:
        type: flexibleengine:DrsReplicationconsistencygroupV2
        properties:
          description: The description of replicationconsistencygroup_1
          replicationIds:
            - ${replication1.drsReplicationV2Id}
          priorityStation: eu-west-0a
    

    Create DrsReplicationconsistencygroupV2 Resource

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

    Constructor syntax

    new DrsReplicationconsistencygroupV2(name: string, args: DrsReplicationconsistencygroupV2Args, opts?: CustomResourceOptions);
    @overload
    def DrsReplicationconsistencygroupV2(resource_name: str,
                                         args: DrsReplicationconsistencygroupV2Args,
                                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DrsReplicationconsistencygroupV2(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         priority_station: Optional[str] = None,
                                         replication_ids: Optional[Sequence[str]] = None,
                                         description: Optional[str] = None,
                                         drs_replicationconsistencygroup_v2_id: Optional[str] = None,
                                         name: Optional[str] = None,
                                         replication_model: Optional[str] = None)
    func NewDrsReplicationconsistencygroupV2(ctx *Context, name string, args DrsReplicationconsistencygroupV2Args, opts ...ResourceOption) (*DrsReplicationconsistencygroupV2, error)
    public DrsReplicationconsistencygroupV2(string name, DrsReplicationconsistencygroupV2Args args, CustomResourceOptions? opts = null)
    public DrsReplicationconsistencygroupV2(String name, DrsReplicationconsistencygroupV2Args args)
    public DrsReplicationconsistencygroupV2(String name, DrsReplicationconsistencygroupV2Args args, CustomResourceOptions options)
    
    type: flexibleengine:DrsReplicationconsistencygroupV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args DrsReplicationconsistencygroupV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args DrsReplicationconsistencygroupV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args DrsReplicationconsistencygroupV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DrsReplicationconsistencygroupV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DrsReplicationconsistencygroupV2Args
    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 drsReplicationconsistencygroupV2Resource = new Flexibleengine.DrsReplicationconsistencygroupV2("drsReplicationconsistencygroupV2Resource", new()
    {
        PriorityStation = "string",
        ReplicationIds = new[]
        {
            "string",
        },
        Description = "string",
        DrsReplicationconsistencygroupV2Id = "string",
        Name = "string",
        ReplicationModel = "string",
    });
    
    example, err := flexibleengine.NewDrsReplicationconsistencygroupV2(ctx, "drsReplicationconsistencygroupV2Resource", &flexibleengine.DrsReplicationconsistencygroupV2Args{
    	PriorityStation: pulumi.String("string"),
    	ReplicationIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description:                        pulumi.String("string"),
    	DrsReplicationconsistencygroupV2Id: pulumi.String("string"),
    	Name:                               pulumi.String("string"),
    	ReplicationModel:                   pulumi.String("string"),
    })
    
    var drsReplicationconsistencygroupV2Resource = new DrsReplicationconsistencygroupV2("drsReplicationconsistencygroupV2Resource", DrsReplicationconsistencygroupV2Args.builder()
        .priorityStation("string")
        .replicationIds("string")
        .description("string")
        .drsReplicationconsistencygroupV2Id("string")
        .name("string")
        .replicationModel("string")
        .build());
    
    drs_replicationconsistencygroup_v2_resource = flexibleengine.DrsReplicationconsistencygroupV2("drsReplicationconsistencygroupV2Resource",
        priority_station="string",
        replication_ids=["string"],
        description="string",
        drs_replicationconsistencygroup_v2_id="string",
        name="string",
        replication_model="string")
    
    const drsReplicationconsistencygroupV2Resource = new flexibleengine.DrsReplicationconsistencygroupV2("drsReplicationconsistencygroupV2Resource", {
        priorityStation: "string",
        replicationIds: ["string"],
        description: "string",
        drsReplicationconsistencygroupV2Id: "string",
        name: "string",
        replicationModel: "string",
    });
    
    type: flexibleengine:DrsReplicationconsistencygroupV2
    properties:
        description: string
        drsReplicationconsistencygroupV2Id: string
        name: string
        priorityStation: string
        replicationIds:
            - string
        replicationModel: string
    

    DrsReplicationconsistencygroupV2 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 DrsReplicationconsistencygroupV2 resource accepts the following input properties:

    PriorityStation string
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    ReplicationIds List<string>
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    Description string
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    DrsReplicationconsistencygroupV2Id string
    Name string
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    ReplicationModel string
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    PriorityStation string
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    ReplicationIds []string
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    Description string
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    DrsReplicationconsistencygroupV2Id string
    Name string
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    ReplicationModel string
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    priorityStation String
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replicationIds List<String>
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    description String
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drsReplicationconsistencygroupV2Id String
    name String
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    replicationModel String
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    priorityStation string
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replicationIds string[]
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    description string
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drsReplicationconsistencygroupV2Id string
    name string
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    replicationModel string
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    priority_station str
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replication_ids Sequence[str]
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    description str
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drs_replicationconsistencygroup_v2_id str
    name str
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    replication_model str
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    priorityStation String
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replicationIds List<String>
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    description String
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drsReplicationconsistencygroupV2Id String
    name String
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    replicationModel String
    The type of the created replication consistency group. Currently only type hypermetro is supported.

    Outputs

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

    CreatedAt string
    The creation time of the replication consistency group.
    FailureDetail string
    The returned error code if the replication consistency group status is error.
    FaultLevel string
    The fault level of the replication consistency group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ReplicationStatus string
    The replication status of the replication consistency group.
    Status string
    The status of the replication consistency group.
    UpdatedAt string
    The update time of the replication consistency group.
    CreatedAt string
    The creation time of the replication consistency group.
    FailureDetail string
    The returned error code if the replication consistency group status is error.
    FaultLevel string
    The fault level of the replication consistency group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ReplicationStatus string
    The replication status of the replication consistency group.
    Status string
    The status of the replication consistency group.
    UpdatedAt string
    The update time of the replication consistency group.
    createdAt String
    The creation time of the replication consistency group.
    failureDetail String
    The returned error code if the replication consistency group status is error.
    faultLevel String
    The fault level of the replication consistency group.
    id String
    The provider-assigned unique ID for this managed resource.
    replicationStatus String
    The replication status of the replication consistency group.
    status String
    The status of the replication consistency group.
    updatedAt String
    The update time of the replication consistency group.
    createdAt string
    The creation time of the replication consistency group.
    failureDetail string
    The returned error code if the replication consistency group status is error.
    faultLevel string
    The fault level of the replication consistency group.
    id string
    The provider-assigned unique ID for this managed resource.
    replicationStatus string
    The replication status of the replication consistency group.
    status string
    The status of the replication consistency group.
    updatedAt string
    The update time of the replication consistency group.
    created_at str
    The creation time of the replication consistency group.
    failure_detail str
    The returned error code if the replication consistency group status is error.
    fault_level str
    The fault level of the replication consistency group.
    id str
    The provider-assigned unique ID for this managed resource.
    replication_status str
    The replication status of the replication consistency group.
    status str
    The status of the replication consistency group.
    updated_at str
    The update time of the replication consistency group.
    createdAt String
    The creation time of the replication consistency group.
    failureDetail String
    The returned error code if the replication consistency group status is error.
    faultLevel String
    The fault level of the replication consistency group.
    id String
    The provider-assigned unique ID for this managed resource.
    replicationStatus String
    The replication status of the replication consistency group.
    status String
    The status of the replication consistency group.
    updatedAt String
    The update time of the replication consistency group.

    Look up Existing DrsReplicationconsistencygroupV2 Resource

    Get an existing DrsReplicationconsistencygroupV2 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?: DrsReplicationconsistencygroupV2State, opts?: CustomResourceOptions): DrsReplicationconsistencygroupV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            description: Optional[str] = None,
            drs_replicationconsistencygroup_v2_id: Optional[str] = None,
            failure_detail: Optional[str] = None,
            fault_level: Optional[str] = None,
            name: Optional[str] = None,
            priority_station: Optional[str] = None,
            replication_ids: Optional[Sequence[str]] = None,
            replication_model: Optional[str] = None,
            replication_status: Optional[str] = None,
            status: Optional[str] = None,
            updated_at: Optional[str] = None) -> DrsReplicationconsistencygroupV2
    func GetDrsReplicationconsistencygroupV2(ctx *Context, name string, id IDInput, state *DrsReplicationconsistencygroupV2State, opts ...ResourceOption) (*DrsReplicationconsistencygroupV2, error)
    public static DrsReplicationconsistencygroupV2 Get(string name, Input<string> id, DrsReplicationconsistencygroupV2State? state, CustomResourceOptions? opts = null)
    public static DrsReplicationconsistencygroupV2 get(String name, Output<String> id, DrsReplicationconsistencygroupV2State state, CustomResourceOptions options)
    resources:  _:    type: flexibleengine:DrsReplicationconsistencygroupV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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:
    CreatedAt string
    The creation time of the replication consistency group.
    Description string
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    DrsReplicationconsistencygroupV2Id string
    FailureDetail string
    The returned error code if the replication consistency group status is error.
    FaultLevel string
    The fault level of the replication consistency group.
    Name string
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    PriorityStation string
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    ReplicationIds List<string>
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    ReplicationModel string
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    ReplicationStatus string
    The replication status of the replication consistency group.
    Status string
    The status of the replication consistency group.
    UpdatedAt string
    The update time of the replication consistency group.
    CreatedAt string
    The creation time of the replication consistency group.
    Description string
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    DrsReplicationconsistencygroupV2Id string
    FailureDetail string
    The returned error code if the replication consistency group status is error.
    FaultLevel string
    The fault level of the replication consistency group.
    Name string
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    PriorityStation string
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    ReplicationIds []string
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    ReplicationModel string
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    ReplicationStatus string
    The replication status of the replication consistency group.
    Status string
    The status of the replication consistency group.
    UpdatedAt string
    The update time of the replication consistency group.
    createdAt String
    The creation time of the replication consistency group.
    description String
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drsReplicationconsistencygroupV2Id String
    failureDetail String
    The returned error code if the replication consistency group status is error.
    faultLevel String
    The fault level of the replication consistency group.
    name String
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    priorityStation String
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replicationIds List<String>
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    replicationModel String
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    replicationStatus String
    The replication status of the replication consistency group.
    status String
    The status of the replication consistency group.
    updatedAt String
    The update time of the replication consistency group.
    createdAt string
    The creation time of the replication consistency group.
    description string
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drsReplicationconsistencygroupV2Id string
    failureDetail string
    The returned error code if the replication consistency group status is error.
    faultLevel string
    The fault level of the replication consistency group.
    name string
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    priorityStation string
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replicationIds string[]
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    replicationModel string
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    replicationStatus string
    The replication status of the replication consistency group.
    status string
    The status of the replication consistency group.
    updatedAt string
    The update time of the replication consistency group.
    created_at str
    The creation time of the replication consistency group.
    description str
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drs_replicationconsistencygroup_v2_id str
    failure_detail str
    The returned error code if the replication consistency group status is error.
    fault_level str
    The fault level of the replication consistency group.
    name str
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    priority_station str
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replication_ids Sequence[str]
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    replication_model str
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    replication_status str
    The replication status of the replication consistency group.
    status str
    The status of the replication consistency group.
    updated_at str
    The update time of the replication consistency group.
    createdAt String
    The creation time of the replication consistency group.
    description String
    The description of the replication consistency group. The description can contain a maximum of 255 bytes.
    drsReplicationconsistencygroupV2Id String
    failureDetail String
    The returned error code if the replication consistency group status is error.
    faultLevel String
    The fault level of the replication consistency group.
    name String
    The name of the replication consistency group. The name can contain a maximum of 255 bytes.
    priorityStation String
    The primary AZ of the replication consistency group. That is the AZ where the production disk belongs.
    replicationIds List<String>
    An array of one or more IDs of the EVS replication pairs used to create the replication consistency group.
    replicationModel String
    The type of the created replication consistency group. Currently only type hypermetro is supported.
    replicationStatus String
    The replication status of the replication consistency group.
    status String
    The status of the replication consistency group.
    updatedAt String
    The update time of the replication consistency group.

    Package Details

    Repository
    flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
    License
    Notes
    This Pulumi package is based on the flexibleengine Terraform Provider.
    flexibleengine logo
    flexibleengine 1.46.0 published on Monday, Apr 14, 2025 by flexibleenginecloud