published on Wednesday, Jun 24, 2026 by dell
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.
// Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
// The volume must already exist - use powerstore_volume resource to create it first.
// Example: Configure metro replication on an existing volume
const example = new powerstore.MetroVolume("example", {
volumeId: "volume-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.
# Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
# The volume must already exist - use powerstore_volume resource to create it first.
# Example: Configure metro replication on an existing volume
example = powerstore.MetroVolume("example",
volume_id="volume-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.
// Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
// The volume must already exist - use powerstore_volume resource to create it first.
// Example: Configure metro replication on an existing volume
_, err := powerstore.NewMetroVolume(ctx, "example", &powerstore.MetroVolumeArgs{
VolumeId: pulumi.String("volume-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.
// Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
// The volume must already exist - use powerstore_volume resource to create it first.
// Example: Configure metro replication on an existing volume
var example = new Powerstore.MetroVolume("example", new()
{
VolumeId = "volume-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.MetroVolume;
import com.pulumi.powerstore.MetroVolumeArgs;
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.
// Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
// The volume must already exist - use powerstore_volume resource to create it first.
// Example: Configure metro replication on an existing volume
var example = new MetroVolume("example", MetroVolumeArgs.builder()
.volumeId("volume-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.
# Metro replication provides RPO=0 (zero data loss) between two PowerStore clusters.
# The volume must already exist - use powerstore_volume resource to create it first.
# Example: Configure metro replication on an existing volume
example:
type: powerstore:MetroVolume
properties:
volumeId: volume-id-here
remoteSystemId: remote-system-id-here
Example coming soon!
Create MetroVolume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MetroVolume(name: string, args: MetroVolumeArgs, opts?: CustomResourceOptions);@overload
def MetroVolume(resource_name: str,
args: MetroVolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MetroVolume(resource_name: str,
opts: Optional[ResourceOptions] = None,
remote_system_id: Optional[str] = None,
volume_id: Optional[str] = None,
delete_remote_volume: Optional[bool] = None,
force: Optional[bool] = None,
is_replication_paused: Optional[bool] = None,
remote_appliance_id: Optional[str] = None)func NewMetroVolume(ctx *Context, name string, args MetroVolumeArgs, opts ...ResourceOption) (*MetroVolume, error)public MetroVolume(string name, MetroVolumeArgs args, CustomResourceOptions? opts = null)
public MetroVolume(String name, MetroVolumeArgs args)
public MetroVolume(String name, MetroVolumeArgs args, CustomResourceOptions options)
type: powerstore:MetroVolume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "powerstore_metrovolume" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args MetroVolumeArgs
- 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 MetroVolumeArgs
- 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 MetroVolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MetroVolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MetroVolumeArgs
- 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 metroVolumeResource = new Powerstore.MetroVolume("metroVolumeResource", new()
{
RemoteSystemId = "string",
VolumeId = "string",
DeleteRemoteVolume = false,
Force = false,
IsReplicationPaused = false,
RemoteApplianceId = "string",
});
example, err := powerstore.NewMetroVolume(ctx, "metroVolumeResource", &powerstore.MetroVolumeArgs{
RemoteSystemId: pulumi.String("string"),
VolumeId: pulumi.String("string"),
DeleteRemoteVolume: pulumi.Bool(false),
Force: pulumi.Bool(false),
IsReplicationPaused: pulumi.Bool(false),
RemoteApplianceId: pulumi.String("string"),
})
resource "powerstore_metrovolume" "metroVolumeResource" {
remote_system_id = "string"
volume_id = "string"
delete_remote_volume = false
force = false
is_replication_paused = false
remote_appliance_id = "string"
}
var metroVolumeResource = new MetroVolume("metroVolumeResource", MetroVolumeArgs.builder()
.remoteSystemId("string")
.volumeId("string")
.deleteRemoteVolume(false)
.force(false)
.isReplicationPaused(false)
.remoteApplianceId("string")
.build());
metro_volume_resource = powerstore.MetroVolume("metroVolumeResource",
remote_system_id="string",
volume_id="string",
delete_remote_volume=False,
force=False,
is_replication_paused=False,
remote_appliance_id="string")
const metroVolumeResource = new powerstore.MetroVolume("metroVolumeResource", {
remoteSystemId: "string",
volumeId: "string",
deleteRemoteVolume: false,
force: false,
isReplicationPaused: false,
remoteApplianceId: "string",
});
type: powerstore:MetroVolume
properties:
deleteRemoteVolume: false
force: false
isReplicationPaused: false
remoteApplianceId: string
remoteSystemId: string
volumeId: string
MetroVolume 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 MetroVolume resource accepts the following input properties:
- Remote
System stringId - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- Volume
Id string - Unique identifier of the existing volume to configure as a metro volume.
- Delete
Remote boolVolume - Whether to delete the remote volume 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 boolPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- Remote
Appliance stringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- Remote
System stringId - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- Volume
Id string - Unique identifier of the existing volume to configure as a metro volume.
- Delete
Remote boolVolume - Whether to delete the remote volume 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 boolPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- Remote
Appliance stringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote_
system_ stringid - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- volume_
id string - Unique identifier of the existing volume to configure as a metro volume.
- delete_
remote_ boolvolume - Whether to delete the remote volume 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_ boolpaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- remote_
appliance_ stringid - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote
System StringId - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- volume
Id String - Unique identifier of the existing volume to configure as a metro volume.
- delete
Remote BooleanVolume - Whether to delete the remote volume 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.
- is
Replication BooleanPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- remote
Appliance StringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote
System stringId - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- volume
Id string - Unique identifier of the existing volume to configure as a metro volume.
- delete
Remote booleanVolume - Whether to delete the remote volume 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.
- is
Replication booleanPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- remote
Appliance stringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote_
system_ strid - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- volume_
id str - Unique identifier of the existing volume to configure as a metro volume.
- delete_
remote_ boolvolume - Whether to delete the remote volume 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_ boolpaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- remote_
appliance_ strid - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote
System StringId - Unique identifier of the remote system for metro replication. The remote system must support metro volumes.
- volume
Id String - Unique identifier of the existing volume to configure as a metro volume.
- delete
Remote BooleanVolume - Whether to delete the remote volume 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.
- is
Replication BooleanPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- remote
Appliance StringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
Outputs
All input properties are implicitly available as output properties. Additionally, the MetroVolume resource produces the following output properties:
- Data
Transfer stringState - Current data transfer state of the replication session.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metro
Replication stringSession Id - Unique identifier of the metro replication session assigned to the volume.
- Remote
Resource stringId - Unique identifier of the remote storage resource.
- State string
- Current state of the replication session.
- Data
Transfer stringState - Current data transfer state of the replication session.
- Id string
- The provider-assigned unique ID for this managed resource.
- Metro
Replication stringSession Id - Unique identifier of the metro replication session assigned to the volume.
- Remote
Resource stringId - Unique identifier of the remote storage resource.
- State string
- Current state of the replication session.
- data_
transfer_ stringstate - Current data transfer state of the replication session.
- id string
- The provider-assigned unique ID for this managed resource.
- metro_
replication_ stringsession_ id - Unique identifier of the metro replication session assigned to the volume.
- remote_
resource_ stringid - Unique identifier of the remote storage resource.
- state string
- Current state of the replication session.
- data
Transfer StringState - Current data transfer state of the replication session.
- id String
- The provider-assigned unique ID for this managed resource.
- metro
Replication StringSession Id - Unique identifier of the metro replication session assigned to the volume.
- remote
Resource StringId - Unique identifier of the remote storage resource.
- state String
- Current state of the replication session.
- data
Transfer stringState - Current data transfer state of the replication session.
- id string
- The provider-assigned unique ID for this managed resource.
- metro
Replication stringSession Id - Unique identifier of the metro replication session assigned to the volume.
- remote
Resource stringId - Unique identifier of the remote storage resource.
- state string
- Current state of the replication session.
- data_
transfer_ strstate - Current data transfer state of the replication session.
- id str
- The provider-assigned unique ID for this managed resource.
- metro_
replication_ strsession_ id - Unique identifier of the metro replication session assigned to the volume.
- remote_
resource_ strid - Unique identifier of the remote storage resource.
- state str
- Current state of the replication session.
- data
Transfer StringState - Current data transfer state of the replication session.
- id String
- The provider-assigned unique ID for this managed resource.
- metro
Replication StringSession Id - Unique identifier of the metro replication session assigned to the volume.
- remote
Resource StringId - Unique identifier of the remote storage resource.
- state String
- Current state of the replication session.
Look up Existing MetroVolume Resource
Get an existing MetroVolume 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?: MetroVolumeState, opts?: CustomResourceOptions): MetroVolume@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
data_transfer_state: Optional[str] = None,
delete_remote_volume: 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_id: Optional[str] = None) -> MetroVolumefunc GetMetroVolume(ctx *Context, name string, id IDInput, state *MetroVolumeState, opts ...ResourceOption) (*MetroVolume, error)public static MetroVolume Get(string name, Input<string> id, MetroVolumeState? state, CustomResourceOptions? opts = null)public static MetroVolume get(String name, Output<String> id, MetroVolumeState state, CustomResourceOptions options)resources: _: type: powerstore:MetroVolume get: id: ${id}import {
to = powerstore_metrovolume.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.
- Data
Transfer stringState - Current data transfer state of the replication session.
- Delete
Remote boolVolume - Whether to delete the remote volume 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 boolPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- Metro
Replication stringSession Id - Unique identifier of the metro replication session assigned to the volume.
- Remote
Appliance stringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- Remote
Resource stringId - Unique identifier of the remote storage resource.
- Remote
System stringId - 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
Id string - Unique identifier of the existing volume to configure as a metro volume.
- Data
Transfer stringState - Current data transfer state of the replication session.
- Delete
Remote boolVolume - Whether to delete the remote volume 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 boolPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- Metro
Replication stringSession Id - Unique identifier of the metro replication session assigned to the volume.
- Remote
Appliance stringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- Remote
Resource stringId - Unique identifier of the remote storage resource.
- Remote
System stringId - 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
Id string - Unique identifier of the existing volume to configure as a metro volume.
- data_
transfer_ stringstate - Current data transfer state of the replication session.
- delete_
remote_ boolvolume - Whether to delete the remote volume 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_ boolpaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- metro_
replication_ stringsession_ id - Unique identifier of the metro replication session assigned to the volume.
- remote_
appliance_ stringid - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote_
resource_ stringid - Unique identifier of the remote storage resource.
- remote_
system_ stringid - 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_
id string - Unique identifier of the existing volume to configure as a metro volume.
- data
Transfer StringState - Current data transfer state of the replication session.
- delete
Remote BooleanVolume - Whether to delete the remote volume 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.
- is
Replication BooleanPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- metro
Replication StringSession Id - Unique identifier of the metro replication session assigned to the volume.
- remote
Appliance StringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote
Resource StringId - Unique identifier of the remote storage resource.
- remote
System StringId - 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
Id String - Unique identifier of the existing volume to configure as a metro volume.
- data
Transfer stringState - Current data transfer state of the replication session.
- delete
Remote booleanVolume - Whether to delete the remote volume 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.
- is
Replication booleanPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- metro
Replication stringSession Id - Unique identifier of the metro replication session assigned to the volume.
- remote
Appliance stringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote
Resource stringId - Unique identifier of the remote storage resource.
- remote
System stringId - 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
Id string - Unique identifier of the existing volume to configure as a metro volume.
- data_
transfer_ strstate - Current data transfer state of the replication session.
- delete_
remote_ boolvolume - Whether to delete the remote volume 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_ boolpaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- metro_
replication_ strsession_ id - Unique identifier of the metro replication session assigned to the volume.
- remote_
appliance_ strid - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote_
resource_ strid - Unique identifier of the remote storage resource.
- remote_
system_ strid - 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_
id str - Unique identifier of the existing volume to configure as a metro volume.
- data
Transfer StringState - Current data transfer state of the replication session.
- delete
Remote BooleanVolume - Whether to delete the remote volume 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.
- is
Replication BooleanPaused - Whether the replication is paused. When set to true, replication is paused. When set to false, replication is resumed.
- metro
Replication StringSession Id - Unique identifier of the metro replication session assigned to the volume.
- remote
Appliance StringId - Specific remote appliance to assign the volume. If not specified, the system chooses based on space, load, and connectivity.
- remote
Resource StringId - Unique identifier of the remote storage resource.
- remote
System StringId - 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
Id String - Unique identifier of the existing volume to configure as a metro volume.
Package Details
- Repository
- powerstore dell/terraform-provider-powerstore
- License
- Notes
- This Pulumi package is based on the
powerstoreTerraform Provider.
published on Wednesday, Jun 24, 2026 by dell