flexibleengine.DrsReplicationV2
!> Warning: It has been deprecated.
Manages a V2 replication resource within FlexibleEngine.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as flexibleengine from "@pulumi/flexibleengine";
const volume1 = new flexibleengine.BlockstorageVolumeV2("volume1", {
    size: 10,
    availabilityZone: "eu-west-0a",
});
const volume2 = new flexibleengine.BlockstorageVolumeV2("volume2", {
    size: 10,
    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,
    ],
});
import pulumi
import pulumi_flexibleengine as flexibleengine
volume1 = flexibleengine.BlockstorageVolumeV2("volume1",
    size=10,
    availability_zone="eu-west-0a")
volume2 = flexibleengine.BlockstorageVolumeV2("volume2",
    size=10,
    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,
    ])
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(10),
			AvailabilityZone: pulumi.String("eu-west-0a"),
		})
		if err != nil {
			return err
		}
		volume2, err := flexibleengine.NewBlockstorageVolumeV2(ctx, "volume2", &flexibleengine.BlockstorageVolumeV2Args{
			Size:             pulumi.Float64(10),
			AvailabilityZone: pulumi.String("eu-west-0b"),
		})
		if err != nil {
			return err
		}
		_, 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
		}
		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 = 10,
        AvailabilityZone = "eu-west-0a",
    });
    var volume2 = new Flexibleengine.BlockstorageVolumeV2("volume2", new()
    {
        Size = 10,
        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,
        },
    });
});
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 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(10)
            .availabilityZone("eu-west-0a")
            .build());
        var volume2 = new BlockstorageVolumeV2("volume2", BlockstorageVolumeV2Args.builder()
            .size(10)
            .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());
    }
}
resources:
  volume1:
    type: flexibleengine:BlockstorageVolumeV2
    properties:
      size: 10
      availabilityZone: eu-west-0a
  volume2:
    type: flexibleengine:BlockstorageVolumeV2
    properties:
      size: 10
      availabilityZone: eu-west-0b
  replication1:
    type: flexibleengine:DrsReplicationV2
    properties:
      description: The description of replication_1
      priorityStation: eu-west-0a
      volumeIds:
        - ${volume1.blockstorageVolumeV2Id}
        - ${volume2.blockstorageVolumeV2Id}
Create DrsReplicationV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DrsReplicationV2(name: string, args: DrsReplicationV2Args, opts?: CustomResourceOptions);@overload
def DrsReplicationV2(resource_name: str,
                     args: DrsReplicationV2Args,
                     opts: Optional[ResourceOptions] = None)
@overload
def DrsReplicationV2(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     priority_station: Optional[str] = None,
                     volume_ids: Optional[Sequence[str]] = None,
                     description: Optional[str] = None,
                     drs_replication_v2_id: Optional[str] = None,
                     name: Optional[str] = None,
                     replication_model: Optional[str] = None)func NewDrsReplicationV2(ctx *Context, name string, args DrsReplicationV2Args, opts ...ResourceOption) (*DrsReplicationV2, error)public DrsReplicationV2(string name, DrsReplicationV2Args args, CustomResourceOptions? opts = null)
public DrsReplicationV2(String name, DrsReplicationV2Args args)
public DrsReplicationV2(String name, DrsReplicationV2Args args, CustomResourceOptions options)
type: flexibleengine:DrsReplicationV2
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 DrsReplicationV2Args
- 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 DrsReplicationV2Args
- 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 DrsReplicationV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DrsReplicationV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DrsReplicationV2Args
- 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 drsReplicationV2Resource = new Flexibleengine.DrsReplicationV2("drsReplicationV2Resource", new()
{
    PriorityStation = "string",
    VolumeIds = new[]
    {
        "string",
    },
    Description = "string",
    DrsReplicationV2Id = "string",
    Name = "string",
    ReplicationModel = "string",
});
example, err := flexibleengine.NewDrsReplicationV2(ctx, "drsReplicationV2Resource", &flexibleengine.DrsReplicationV2Args{
	PriorityStation: pulumi.String("string"),
	VolumeIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	Description:        pulumi.String("string"),
	DrsReplicationV2Id: pulumi.String("string"),
	Name:               pulumi.String("string"),
	ReplicationModel:   pulumi.String("string"),
})
var drsReplicationV2Resource = new DrsReplicationV2("drsReplicationV2Resource", DrsReplicationV2Args.builder()
    .priorityStation("string")
    .volumeIds("string")
    .description("string")
    .drsReplicationV2Id("string")
    .name("string")
    .replicationModel("string")
    .build());
drs_replication_v2_resource = flexibleengine.DrsReplicationV2("drsReplicationV2Resource",
    priority_station="string",
    volume_ids=["string"],
    description="string",
    drs_replication_v2_id="string",
    name="string",
    replication_model="string")
const drsReplicationV2Resource = new flexibleengine.DrsReplicationV2("drsReplicationV2Resource", {
    priorityStation: "string",
    volumeIds: ["string"],
    description: "string",
    drsReplicationV2Id: "string",
    name: "string",
    replicationModel: "string",
});
type: flexibleengine:DrsReplicationV2
properties:
    description: string
    drsReplicationV2Id: string
    name: string
    priorityStation: string
    replicationModel: string
    volumeIds:
        - string
DrsReplicationV2 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 DrsReplicationV2 resource accepts the following input properties:
- PriorityStation string
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- VolumeIds List<string>
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- DrsReplication stringV2Id 
- Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- ReplicationModel string
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- PriorityStation string
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- VolumeIds []string
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- DrsReplication stringV2Id 
- Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- ReplicationModel string
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- priorityStation String
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volumeIds List<String>
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drsReplication StringV2Id 
- name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replicationModel String
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- priorityStation string
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volumeIds string[]
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drsReplication stringV2Id 
- name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replicationModel string
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- priority_station str
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volume_ids Sequence[str]
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description str
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs_replication_ strv2_ id 
- name str
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replication_model str
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- priorityStation String
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- volumeIds List<String>
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drsReplication StringV2Id 
- name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- replicationModel String
- The type of the EVS replication pair. Currently only type hypermetro is supported.
Outputs
All input properties are implicitly available as output properties. Additionally, the DrsReplicationV2 resource produces the following output properties:
- CreatedAt string
- The creation time of the EVS replication pair.
- FailureDetail string
- The returned error code if the EVS replication pair status is error.
- FaultLevel string
- The fault level of the EVS replication pair.
- Id string
- The provider-assigned unique ID for this managed resource.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- RecordMetadata string
- The metadata of the EVS replication pair.
- ReplicationConsistency stringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- ReplicationStatus string
- The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- UpdatedAt string
- The update time of the EVS replication pair.
- CreatedAt string
- The creation time of the EVS replication pair.
- FailureDetail string
- The returned error code if the EVS replication pair status is error.
- FaultLevel string
- The fault level of the EVS replication pair.
- Id string
- The provider-assigned unique ID for this managed resource.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- RecordMetadata string
- The metadata of the EVS replication pair.
- ReplicationConsistency stringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- ReplicationStatus string
- The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- UpdatedAt string
- The update time of the EVS replication pair.
- createdAt String
- The creation time of the EVS replication pair.
- failureDetail String
- The returned error code if the EVS replication pair status is error.
- faultLevel String
- The fault level of the EVS replication pair.
- id String
- The provider-assigned unique ID for this managed resource.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- recordMetadata String
- The metadata of the EVS replication pair.
- replicationConsistency StringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replicationStatus String
- The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updatedAt String
- The update time of the EVS replication pair.
- createdAt string
- The creation time of the EVS replication pair.
- failureDetail string
- The returned error code if the EVS replication pair status is error.
- faultLevel string
- The fault level of the EVS replication pair.
- id string
- The provider-assigned unique ID for this managed resource.
- progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- recordMetadata string
- The metadata of the EVS replication pair.
- replicationConsistency stringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replicationStatus string
- The replication status of the EVS replication pair.
- status string
- The status of the EVS replication pair.
- updatedAt string
- The update time of the EVS replication pair.
- created_at str
- The creation time of the EVS replication pair.
- failure_detail str
- The returned error code if the EVS replication pair status is error.
- fault_level str
- The fault level of the EVS replication pair.
- id str
- The provider-assigned unique ID for this managed resource.
- progress str
- The synchronization progress of the EVS replication pair. Unit: %.
- record_metadata str
- The metadata of the EVS replication pair.
- replication_consistency_ strgroup_ id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replication_status str
- The replication status of the EVS replication pair.
- status str
- The status of the EVS replication pair.
- updated_at str
- The update time of the EVS replication pair.
- createdAt String
- The creation time of the EVS replication pair.
- failureDetail String
- The returned error code if the EVS replication pair status is error.
- faultLevel String
- The fault level of the EVS replication pair.
- id String
- The provider-assigned unique ID for this managed resource.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- recordMetadata String
- The metadata of the EVS replication pair.
- replicationConsistency StringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replicationStatus String
- The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updatedAt String
- The update time of the EVS replication pair.
Look up Existing DrsReplicationV2 Resource
Get an existing DrsReplicationV2 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?: DrsReplicationV2State, opts?: CustomResourceOptions): DrsReplicationV2@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        created_at: Optional[str] = None,
        description: Optional[str] = None,
        drs_replication_v2_id: Optional[str] = None,
        failure_detail: Optional[str] = None,
        fault_level: Optional[str] = None,
        name: Optional[str] = None,
        priority_station: Optional[str] = None,
        progress: Optional[str] = None,
        record_metadata: Optional[str] = None,
        replication_consistency_group_id: Optional[str] = None,
        replication_model: Optional[str] = None,
        replication_status: Optional[str] = None,
        status: Optional[str] = None,
        updated_at: Optional[str] = None,
        volume_ids: Optional[Sequence[str]] = None) -> DrsReplicationV2func GetDrsReplicationV2(ctx *Context, name string, id IDInput, state *DrsReplicationV2State, opts ...ResourceOption) (*DrsReplicationV2, error)public static DrsReplicationV2 Get(string name, Input<string> id, DrsReplicationV2State? state, CustomResourceOptions? opts = null)public static DrsReplicationV2 get(String name, Output<String> id, DrsReplicationV2State state, CustomResourceOptions options)resources:  _:    type: flexibleengine:DrsReplicationV2    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.
- CreatedAt string
- The creation time of the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- DrsReplication stringV2Id 
- FailureDetail string
- The returned error code if the EVS replication pair status is error.
- FaultLevel string
- The fault level of the EVS replication pair.
- Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- PriorityStation string
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- RecordMetadata string
- The metadata of the EVS replication pair.
- ReplicationConsistency stringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- ReplicationModel string
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- ReplicationStatus string
- The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- UpdatedAt string
- The update time of the EVS replication pair.
- VolumeIds List<string>
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- CreatedAt string
- The creation time of the EVS replication pair.
- Description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- DrsReplication stringV2Id 
- FailureDetail string
- The returned error code if the EVS replication pair status is error.
- FaultLevel string
- The fault level of the EVS replication pair.
- Name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- PriorityStation string
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- Progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- RecordMetadata string
- The metadata of the EVS replication pair.
- ReplicationConsistency stringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- ReplicationModel string
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- ReplicationStatus string
- The replication status of the EVS replication pair.
- Status string
- The status of the EVS replication pair.
- UpdatedAt string
- The update time of the EVS replication pair.
- VolumeIds []string
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- createdAt String
- The creation time of the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drsReplication StringV2Id 
- failureDetail String
- The returned error code if the EVS replication pair status is error.
- faultLevel String
- The fault level of the EVS replication pair.
- name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priorityStation String
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- recordMetadata String
- The metadata of the EVS replication pair.
- replicationConsistency StringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replicationModel String
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- replicationStatus String
- The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updatedAt String
- The update time of the EVS replication pair.
- volumeIds List<String>
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- createdAt string
- The creation time of the EVS replication pair.
- description string
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drsReplication stringV2Id 
- failureDetail string
- The returned error code if the EVS replication pair status is error.
- faultLevel string
- The fault level of the EVS replication pair.
- name string
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priorityStation string
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress string
- The synchronization progress of the EVS replication pair. Unit: %.
- recordMetadata string
- The metadata of the EVS replication pair.
- replicationConsistency stringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replicationModel string
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- replicationStatus string
- The replication status of the EVS replication pair.
- status string
- The status of the EVS replication pair.
- updatedAt string
- The update time of the EVS replication pair.
- volumeIds string[]
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- created_at str
- The creation time of the EVS replication pair.
- description str
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drs_replication_ strv2_ id 
- failure_detail str
- The returned error code if the EVS replication pair status is error.
- fault_level str
- The fault level of the EVS replication pair.
- name str
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priority_station str
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress str
- The synchronization progress of the EVS replication pair. Unit: %.
- record_metadata str
- The metadata of the EVS replication pair.
- replication_consistency_ strgroup_ id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replication_model str
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- replication_status str
- The replication status of the EVS replication pair.
- status str
- The status of the EVS replication pair.
- updated_at str
- The update time of the EVS replication pair.
- volume_ids Sequence[str]
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
- createdAt String
- The creation time of the EVS replication pair.
- description String
- The description of the EVS replication pair. The description can contain a maximum of 255 bytes.
- drsReplication StringV2Id 
- failureDetail String
- The returned error code if the EVS replication pair status is error.
- faultLevel String
- The fault level of the EVS replication pair.
- name String
- The name of the EVS replication pair. The name can contain a maximum of 255 bytes.
- priorityStation String
- The primary AZ of the EVS replication pair. That is the AZ where the production disk belongs.
- progress String
- The synchronization progress of the EVS replication pair. Unit: %.
- recordMetadata String
- The metadata of the EVS replication pair.
- replicationConsistency StringGroup Id 
- The ID of the replication consistency group where the EVS replication pair belongs.
- replicationModel String
- The type of the EVS replication pair. Currently only type hypermetro is supported.
- replicationStatus String
- The replication status of the EVS replication pair.
- status String
- The status of the EVS replication pair.
- updatedAt String
- The update time of the EVS replication pair.
- volumeIds List<String>
- An array of one or more IDs of the EVS disks used to create the EVS replication pair.
Package Details
- Repository
- flexibleengine flexibleenginecloud/terraform-provider-flexibleengine
- License
- Notes
- This Pulumi package is based on the flexibleengineTerraform Provider.
