1. Packages
  2. Packages
  3. Powerstore Provider
  4. API Docs
  5. MetroVolumeGroup
Viewing docs for powerstore 1.3.0
published on Wednesday, Jun 24, 2026 by dell
Viewing docs for powerstore 1.3.0
published on Wednesday, Jun 24, 2026 by dell

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as powerstore from "@pulumi/powerstore";
    
    //Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
    //
    //Licensed under the Mozilla Public License Version 2.0 (the "License");
    //you may not use this file except in compliance with the License.
    //You may obtain a copy of the License at
    //
    //    http://mozilla.org/MPL/2.0/
    //
    //
    //Unless required by applicable law or agreed to in writing, software
    //distributed under the License is distributed on an "AS IS" BASIS,
    //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    //See the License for the specific language governing permissions and
    //limitations under the License.
    // Commands to run this tf file : terraform init && pulumi preview && pulumi up
    // This resource configures metro (synchronous) replication on an existing volume group.
    // Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
    // The volume group must already exist - use powerstore_volumegroup resource to create it first.
    // Example: Configure metro replication on an existing volume group
    const example = new powerstore.MetroVolumeGroup("example", {
        volumeGroupId: "volume-group-id-here",
        remoteSystemId: "remote-system-id-here",
    });
    
    import pulumi
    import pulumi_powerstore as powerstore
    
    #Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
    #
    #Licensed under the Mozilla Public License Version 2.0 (the "License");
    #you may not use this file except in compliance with the License.
    #You may obtain a copy of the License at
    #
    #    http://mozilla.org/MPL/2.0/
    #
    #
    #Unless required by applicable law or agreed to in writing, software
    #distributed under the License is distributed on an "AS IS" BASIS,
    #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    #See the License for the specific language governing permissions and
    #limitations under the License.
    # Commands to run this tf file : terraform init && pulumi preview && pulumi up
    # This resource configures metro (synchronous) replication on an existing volume group.
    # Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
    # The volume group must already exist - use powerstore_volumegroup resource to create it first.
    # Example: Configure metro replication on an existing volume group
    example = powerstore.MetroVolumeGroup("example",
        volume_group_id="volume-group-id-here",
        remote_system_id="remote-system-id-here")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerstore/powerstore"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		// Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
    		//
    		// Licensed under the Mozilla Public License Version 2.0 (the "License");
    		// you may not use this file except in compliance with the License.
    		// You may obtain a copy of the License at
    		//
    		//	http://mozilla.org/MPL/2.0/
    		//
    		// Unless required by applicable law or agreed to in writing, software
    		// distributed under the License is distributed on an "AS IS" BASIS,
    		// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    		// See the License for the specific language governing permissions and
    		// limitations under the License.
    		// Commands to run this tf file : terraform init && pulumi preview && pulumi up
    		// This resource configures metro (synchronous) replication on an existing volume group.
    		// Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
    		// The volume group must already exist - use powerstore_volumegroup resource to create it first.
    		// Example: Configure metro replication on an existing volume group
    		_, err := powerstore.NewMetroVolumeGroup(ctx, "example", &powerstore.MetroVolumeGroupArgs{
    			VolumeGroupId:  pulumi.String("volume-group-id-here"),
    			RemoteSystemId: pulumi.String("remote-system-id-here"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Powerstore = Pulumi.Powerstore;
    
    return await Deployment.RunAsync(() => 
    {
        //Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
        //
        //Licensed under the Mozilla Public License Version 2.0 (the "License");
        //you may not use this file except in compliance with the License.
        //You may obtain a copy of the License at
        //
        //    http://mozilla.org/MPL/2.0/
        //
        //
        //Unless required by applicable law or agreed to in writing, software
        //distributed under the License is distributed on an "AS IS" BASIS,
        //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
        //See the License for the specific language governing permissions and
        //limitations under the License.
        // Commands to run this tf file : terraform init && pulumi preview && pulumi up
        // This resource configures metro (synchronous) replication on an existing volume group.
        // Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
        // The volume group must already exist - use powerstore_volumegroup resource to create it first.
        // Example: Configure metro replication on an existing volume group
        var example = new Powerstore.MetroVolumeGroup("example", new()
        {
            VolumeGroupId = "volume-group-id-here",
            RemoteSystemId = "remote-system-id-here",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.powerstore.MetroVolumeGroup;
    import com.pulumi.powerstore.MetroVolumeGroupArgs;
    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) {
            //Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
            //
            //Licensed under the Mozilla Public License Version 2.0 (the "License");
            //you may not use this file except in compliance with the License.
            //You may obtain a copy of the License at
            //
            //    http://mozilla.org/MPL/2.0/
            //
            //
            //Unless required by applicable law or agreed to in writing, software
            //distributed under the License is distributed on an "AS IS" BASIS,
            //WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
            //See the License for the specific language governing permissions and
            //limitations under the License.
            // Commands to run this tf file : terraform init && pulumi preview && pulumi up
            // This resource configures metro (synchronous) replication on an existing volume group.
            // Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
            // The volume group must already exist - use powerstore_volumegroup resource to create it first.
            // Example: Configure metro replication on an existing volume group
            var example = new MetroVolumeGroup("example", MetroVolumeGroupArgs.builder()
                .volumeGroupId("volume-group-id-here")
                .remoteSystemId("remote-system-id-here")
                .build());
    
        }
    }
    
    resources:
      # /*
      # Copyright (c) 2025 Dell Inc., or its subsidiaries. All Rights Reserved.
    
      # Licensed under the Mozilla Public License Version 2.0 (the "License");
      # you may not use this file except in compliance with the License.
      # You may obtain a copy of the License at
    
      #     http://mozilla.org/MPL/2.0/
    
    
      # Unless required by applicable law or agreed to in writing, software
      # distributed under the License is distributed on an "AS IS" BASIS,
      # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
      # See the License for the specific language governing permissions and
      # limitations under the License.
      # */
    
    
      # Commands to run this tf file : terraform init && pulumi preview && pulumi up
      # This resource configures metro (synchronous) replication on an existing volume group.
      # Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
      # The volume group must already exist - use powerstore_volumegroup resource to create it first.
    
      # Example: Configure metro replication on an existing volume group
      example:
        type: powerstore:MetroVolumeGroup
        properties:
          volumeGroupId: volume-group-id-here
          remoteSystemId: remote-system-id-here
    
    Example coming soon!
    

    Create MetroVolumeGroup Resource

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

    Constructor syntax

    new MetroVolumeGroup(name: string, args: MetroVolumeGroupArgs, opts?: CustomResourceOptions);
    @overload
    def MetroVolumeGroup(resource_name: str,
                         args: MetroVolumeGroupArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def MetroVolumeGroup(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         remote_system_id: Optional[str] = None,
                         volume_group_id: Optional[str] = None,
                         delete_remote_volume_group: Optional[bool] = None,
                         force: Optional[bool] = None,
                         is_replication_paused: Optional[bool] = None,
                         remote_appliance_id: Optional[str] = None)
    func NewMetroVolumeGroup(ctx *Context, name string, args MetroVolumeGroupArgs, opts ...ResourceOption) (*MetroVolumeGroup, error)
    public MetroVolumeGroup(string name, MetroVolumeGroupArgs args, CustomResourceOptions? opts = null)
    public MetroVolumeGroup(String name, MetroVolumeGroupArgs args)
    public MetroVolumeGroup(String name, MetroVolumeGroupArgs args, CustomResourceOptions options)
    
    type: powerstore:MetroVolumeGroup
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "powerstore_metrovolumegroup" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args MetroVolumeGroupArgs
    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 MetroVolumeGroupArgs
    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 MetroVolumeGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args MetroVolumeGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args MetroVolumeGroupArgs
    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 metroVolumeGroupResource = new Powerstore.MetroVolumeGroup("metroVolumeGroupResource", new()
    {
        RemoteSystemId = "string",
        VolumeGroupId = "string",
        DeleteRemoteVolumeGroup = false,
        Force = false,
        IsReplicationPaused = false,
        RemoteApplianceId = "string",
    });
    
    example, err := powerstore.NewMetroVolumeGroup(ctx, "metroVolumeGroupResource", &powerstore.MetroVolumeGroupArgs{
    	RemoteSystemId:          pulumi.String("string"),
    	VolumeGroupId:           pulumi.String("string"),
    	DeleteRemoteVolumeGroup: pulumi.Bool(false),
    	Force:                   pulumi.Bool(false),
    	IsReplicationPaused:     pulumi.Bool(false),
    	RemoteApplianceId:       pulumi.String("string"),
    })
    
    resource "powerstore_metrovolumegroup" "metroVolumeGroupResource" {
      remote_system_id           = "string"
      volume_group_id            = "string"
      delete_remote_volume_group = false
      force                      = false
      is_replication_paused      = false
      remote_appliance_id        = "string"
    }
    
    var metroVolumeGroupResource = new MetroVolumeGroup("metroVolumeGroupResource", MetroVolumeGroupArgs.builder()
        .remoteSystemId("string")
        .volumeGroupId("string")
        .deleteRemoteVolumeGroup(false)
        .force(false)
        .isReplicationPaused(false)
        .remoteApplianceId("string")
        .build());
    
    metro_volume_group_resource = powerstore.MetroVolumeGroup("metroVolumeGroupResource",
        remote_system_id="string",
        volume_group_id="string",
        delete_remote_volume_group=False,
        force=False,
        is_replication_paused=False,
        remote_appliance_id="string")
    
    const metroVolumeGroupResource = new powerstore.MetroVolumeGroup("metroVolumeGroupResource", {
        remoteSystemId: "string",
        volumeGroupId: "string",
        deleteRemoteVolumeGroup: false,
        force: false,
        isReplicationPaused: false,
        remoteApplianceId: "string",
    });
    
    type: powerstore:MetroVolumeGroup
    properties:
        deleteRemoteVolumeGroup: false
        force: false
        isReplicationPaused: false
        remoteApplianceId: string
        remoteSystemId: string
        volumeGroupId: string
    

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

    RemoteSystemId string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    VolumeGroupId string
    Unique identifier of the existing volume group to configure as a metro volume group.
    DeleteRemoteVolumeGroup bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    Force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    IsReplicationPaused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    RemoteApplianceId string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    RemoteSystemId string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    VolumeGroupId string
    Unique identifier of the existing volume group to configure as a metro volume group.
    DeleteRemoteVolumeGroup bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    Force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    IsReplicationPaused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    RemoteApplianceId string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remote_system_id string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    volume_group_id string
    Unique identifier of the existing volume group to configure as a metro volume group.
    delete_remote_volume_group bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    is_replication_paused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    remote_appliance_id string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remoteSystemId String
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    volumeGroupId String
    Unique identifier of the existing volume group to configure as a metro volume group.
    deleteRemoteVolumeGroup Boolean
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force Boolean
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    isReplicationPaused Boolean
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    remoteApplianceId String
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remoteSystemId string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    volumeGroupId string
    Unique identifier of the existing volume group to configure as a metro volume group.
    deleteRemoteVolumeGroup boolean
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force boolean
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    isReplicationPaused boolean
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    remoteApplianceId string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remote_system_id str
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    volume_group_id str
    Unique identifier of the existing volume group to configure as a metro volume group.
    delete_remote_volume_group bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    is_replication_paused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    remote_appliance_id str
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remoteSystemId String
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    volumeGroupId String
    Unique identifier of the existing volume group to configure as a metro volume group.
    deleteRemoteVolumeGroup Boolean
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force Boolean
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    isReplicationPaused Boolean
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    remoteApplianceId String
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.

    Outputs

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

    DataTransferState string
    Current data transfer state of the replication session.
    Id string
    The provider-assigned unique ID for this managed resource.
    MetroReplicationSessionId string
    Unique identifier of the metro replication session assigned to the volume group.
    RemoteResourceId string
    Unique identifier of the remote storage resource.
    State string
    Current state of the replication session.
    DataTransferState string
    Current data transfer state of the replication session.
    Id string
    The provider-assigned unique ID for this managed resource.
    MetroReplicationSessionId string
    Unique identifier of the metro replication session assigned to the volume group.
    RemoteResourceId string
    Unique identifier of the remote storage resource.
    State string
    Current state of the replication session.
    data_transfer_state string
    Current data transfer state of the replication session.
    id string
    The provider-assigned unique ID for this managed resource.
    metro_replication_session_id string
    Unique identifier of the metro replication session assigned to the volume group.
    remote_resource_id string
    Unique identifier of the remote storage resource.
    state string
    Current state of the replication session.
    dataTransferState String
    Current data transfer state of the replication session.
    id String
    The provider-assigned unique ID for this managed resource.
    metroReplicationSessionId String
    Unique identifier of the metro replication session assigned to the volume group.
    remoteResourceId String
    Unique identifier of the remote storage resource.
    state String
    Current state of the replication session.
    dataTransferState string
    Current data transfer state of the replication session.
    id string
    The provider-assigned unique ID for this managed resource.
    metroReplicationSessionId string
    Unique identifier of the metro replication session assigned to the volume group.
    remoteResourceId string
    Unique identifier of the remote storage resource.
    state string
    Current state of the replication session.
    data_transfer_state str
    Current data transfer state of the replication session.
    id str
    The provider-assigned unique ID for this managed resource.
    metro_replication_session_id str
    Unique identifier of the metro replication session assigned to the volume group.
    remote_resource_id str
    Unique identifier of the remote storage resource.
    state str
    Current state of the replication session.
    dataTransferState String
    Current data transfer state of the replication session.
    id String
    The provider-assigned unique ID for this managed resource.
    metroReplicationSessionId String
    Unique identifier of the metro replication session assigned to the volume group.
    remoteResourceId String
    Unique identifier of the remote storage resource.
    state String
    Current state of the replication session.

    Look up Existing MetroVolumeGroup Resource

    Get an existing MetroVolumeGroup 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?: MetroVolumeGroupState, opts?: CustomResourceOptions): MetroVolumeGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            data_transfer_state: Optional[str] = None,
            delete_remote_volume_group: Optional[bool] = None,
            force: Optional[bool] = None,
            is_replication_paused: Optional[bool] = None,
            metro_replication_session_id: Optional[str] = None,
            remote_appliance_id: Optional[str] = None,
            remote_resource_id: Optional[str] = None,
            remote_system_id: Optional[str] = None,
            state: Optional[str] = None,
            volume_group_id: Optional[str] = None) -> MetroVolumeGroup
    func GetMetroVolumeGroup(ctx *Context, name string, id IDInput, state *MetroVolumeGroupState, opts ...ResourceOption) (*MetroVolumeGroup, error)
    public static MetroVolumeGroup Get(string name, Input<string> id, MetroVolumeGroupState? state, CustomResourceOptions? opts = null)
    public static MetroVolumeGroup get(String name, Output<String> id, MetroVolumeGroupState state, CustomResourceOptions options)
    resources:  _:    type: powerstore:MetroVolumeGroup    get:      id: ${id}
    import {
      to = powerstore_metrovolumegroup.example
      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:
    DataTransferState string
    Current data transfer state of the replication session.
    DeleteRemoteVolumeGroup bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    Force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    IsReplicationPaused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    MetroReplicationSessionId string
    Unique identifier of the metro replication session assigned to the volume group.
    RemoteApplianceId string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    RemoteResourceId string
    Unique identifier of the remote storage resource.
    RemoteSystemId string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    State string
    Current state of the replication session.
    VolumeGroupId string
    Unique identifier of the existing volume group to configure as a metro volume group.
    DataTransferState string
    Current data transfer state of the replication session.
    DeleteRemoteVolumeGroup bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    Force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    IsReplicationPaused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    MetroReplicationSessionId string
    Unique identifier of the metro replication session assigned to the volume group.
    RemoteApplianceId string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    RemoteResourceId string
    Unique identifier of the remote storage resource.
    RemoteSystemId string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    State string
    Current state of the replication session.
    VolumeGroupId string
    Unique identifier of the existing volume group to configure as a metro volume group.
    data_transfer_state string
    Current data transfer state of the replication session.
    delete_remote_volume_group bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    is_replication_paused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    metro_replication_session_id string
    Unique identifier of the metro replication session assigned to the volume group.
    remote_appliance_id string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remote_resource_id string
    Unique identifier of the remote storage resource.
    remote_system_id string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    state string
    Current state of the replication session.
    volume_group_id string
    Unique identifier of the existing volume group to configure as a metro volume group.
    dataTransferState String
    Current data transfer state of the replication session.
    deleteRemoteVolumeGroup Boolean
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force Boolean
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    isReplicationPaused Boolean
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    metroReplicationSessionId String
    Unique identifier of the metro replication session assigned to the volume group.
    remoteApplianceId String
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remoteResourceId String
    Unique identifier of the remote storage resource.
    remoteSystemId String
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    state String
    Current state of the replication session.
    volumeGroupId String
    Unique identifier of the existing volume group to configure as a metro volume group.
    dataTransferState string
    Current data transfer state of the replication session.
    deleteRemoteVolumeGroup boolean
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force boolean
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    isReplicationPaused boolean
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    metroReplicationSessionId string
    Unique identifier of the metro replication session assigned to the volume group.
    remoteApplianceId string
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remoteResourceId string
    Unique identifier of the remote storage resource.
    remoteSystemId string
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    state string
    Current state of the replication session.
    volumeGroupId string
    Unique identifier of the existing volume group to configure as a metro volume group.
    data_transfer_state str
    Current data transfer state of the replication session.
    delete_remote_volume_group bool
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force bool
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    is_replication_paused bool
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    metro_replication_session_id str
    Unique identifier of the metro replication session assigned to the volume group.
    remote_appliance_id str
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remote_resource_id str
    Unique identifier of the remote storage resource.
    remote_system_id str
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    state str
    Current state of the replication session.
    volume_group_id str
    Unique identifier of the existing volume group to configure as a metro volume group.
    dataTransferState String
    Current data transfer state of the replication session.
    deleteRemoteVolumeGroup Boolean
    Whether to delete the remote volume group when ending metro configuration. Default is false.
    force Boolean
    Force end metro even if the remote side has errors. Not recommended unless the remote is known to be down.
    isReplicationPaused Boolean
    Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
    metroReplicationSessionId String
    Unique identifier of the metro replication session assigned to the volume group.
    remoteApplianceId String
    Specific remote appliance to assign the volume group. If not specified, the system chooses based on space, load, and connectivity.
    remoteResourceId String
    Unique identifier of the remote storage resource.
    remoteSystemId String
    Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
    state String
    Current state of the replication session.
    volumeGroupId String
    Unique identifier of the existing volume group to configure as a metro volume group.

    Package Details

    Repository
    powerstore dell/terraform-provider-powerstore
    License
    Notes
    This Pulumi package is based on the powerstore Terraform Provider.
    Viewing docs for powerstore 1.3.0
    published on Wednesday, Jun 24, 2026 by dell

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial