powerflex.ReplicationConsistencyGroup
Explore with Pulumi AI
Import
/*
Copyright (c) 2024 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.
*/
import Replication Consistency Group by its id
$ pulumi import powerflex:index/replicationConsistencyGroup:ReplicationConsistencyGroup example "<id>"
This will import the resource instance with specified ID into your Terraform state.
After successful import, you can run terraform state list to ensure the resource has been imported successfully.
Now, you can fill in the resource block with the appropriate arguments and settings that match the imported resource’s real-world configuration.
Execute pulumi preview to see if your configuration and the imported resource are in sync. Make adjustments if needed.
Finally, execute pulumi up to bring the resource fully under Terraform’s management.
Now, the resource which was not part of terraform became part of Terraform managed infrastructure.
Create ReplicationConsistencyGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReplicationConsistencyGroup(name: string, args: ReplicationConsistencyGroupArgs, opts?: CustomResourceOptions);
@overload
def ReplicationConsistencyGroup(resource_name: str,
args: ReplicationConsistencyGroupArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ReplicationConsistencyGroup(resource_name: str,
opts: Optional[ResourceOptions] = None,
destination_system_id: Optional[str] = None,
protection_domain_id: Optional[str] = None,
remote_protection_domain_id: Optional[str] = None,
curr_consist_mode: Optional[str] = None,
freeze_state: Optional[str] = None,
local_activity_state: Optional[str] = None,
name: Optional[str] = None,
pause_mode: Optional[str] = None,
rpo_in_seconds: Optional[float] = None,
target_volume_access_mode: Optional[str] = None)
func NewReplicationConsistencyGroup(ctx *Context, name string, args ReplicationConsistencyGroupArgs, opts ...ResourceOption) (*ReplicationConsistencyGroup, error)
public ReplicationConsistencyGroup(string name, ReplicationConsistencyGroupArgs args, CustomResourceOptions? opts = null)
public ReplicationConsistencyGroup(String name, ReplicationConsistencyGroupArgs args)
public ReplicationConsistencyGroup(String name, ReplicationConsistencyGroupArgs args, CustomResourceOptions options)
type: powerflex:ReplicationConsistencyGroup
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 ReplicationConsistencyGroupArgs
- 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 ReplicationConsistencyGroupArgs
- 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 ReplicationConsistencyGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReplicationConsistencyGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReplicationConsistencyGroupArgs
- 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 replicationConsistencyGroupResource = new Powerflex.ReplicationConsistencyGroup("replicationConsistencyGroupResource", new()
{
DestinationSystemId = "string",
ProtectionDomainId = "string",
RemoteProtectionDomainId = "string",
CurrConsistMode = "string",
FreezeState = "string",
LocalActivityState = "string",
Name = "string",
PauseMode = "string",
RpoInSeconds = 0,
TargetVolumeAccessMode = "string",
});
example, err := powerflex.NewReplicationConsistencyGroup(ctx, "replicationConsistencyGroupResource", &powerflex.ReplicationConsistencyGroupArgs{
DestinationSystemId: pulumi.String("string"),
ProtectionDomainId: pulumi.String("string"),
RemoteProtectionDomainId: pulumi.String("string"),
CurrConsistMode: pulumi.String("string"),
FreezeState: pulumi.String("string"),
LocalActivityState: pulumi.String("string"),
Name: pulumi.String("string"),
PauseMode: pulumi.String("string"),
RpoInSeconds: pulumi.Float64(0),
TargetVolumeAccessMode: pulumi.String("string"),
})
var replicationConsistencyGroupResource = new ReplicationConsistencyGroup("replicationConsistencyGroupResource", ReplicationConsistencyGroupArgs.builder()
.destinationSystemId("string")
.protectionDomainId("string")
.remoteProtectionDomainId("string")
.currConsistMode("string")
.freezeState("string")
.localActivityState("string")
.name("string")
.pauseMode("string")
.rpoInSeconds(0)
.targetVolumeAccessMode("string")
.build());
replication_consistency_group_resource = powerflex.ReplicationConsistencyGroup("replicationConsistencyGroupResource",
destination_system_id="string",
protection_domain_id="string",
remote_protection_domain_id="string",
curr_consist_mode="string",
freeze_state="string",
local_activity_state="string",
name="string",
pause_mode="string",
rpo_in_seconds=0,
target_volume_access_mode="string")
const replicationConsistencyGroupResource = new powerflex.ReplicationConsistencyGroup("replicationConsistencyGroupResource", {
destinationSystemId: "string",
protectionDomainId: "string",
remoteProtectionDomainId: "string",
currConsistMode: "string",
freezeState: "string",
localActivityState: "string",
name: "string",
pauseMode: "string",
rpoInSeconds: 0,
targetVolumeAccessMode: "string",
});
type: powerflex:ReplicationConsistencyGroup
properties:
currConsistMode: string
destinationSystemId: string
freezeState: string
localActivityState: string
name: string
pauseMode: string
protectionDomainId: string
remoteProtectionDomainId: string
rpoInSeconds: 0
targetVolumeAccessMode: string
ReplicationConsistencyGroup 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 ReplicationConsistencyGroup resource accepts the following input properties:
- Destination
System stringId - Replication Consistency Group Destination System ID
- Protection
Domain stringId - Replication Consistency Group Protection Domain ID
- Remote
Protection stringDomain Id - Replication Consistency Group Remote Protection Domain ID
- Curr
Consist stringMode - Consistency Mode of the replication consistency group instance.
- Freeze
State string - Freeze State of the replication consistency group instance.
- Local
Activity stringState - Local Activity State of the replication consistency group instance.
- Name string
- Replication Consistency Group Name
- Pause
Mode string - Pause Mode of the replication consistency group instance.
- Rpo
In doubleSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- Target
Volume stringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- Destination
System stringId - Replication Consistency Group Destination System ID
- Protection
Domain stringId - Replication Consistency Group Protection Domain ID
- Remote
Protection stringDomain Id - Replication Consistency Group Remote Protection Domain ID
- Curr
Consist stringMode - Consistency Mode of the replication consistency group instance.
- Freeze
State string - Freeze State of the replication consistency group instance.
- Local
Activity stringState - Local Activity State of the replication consistency group instance.
- Name string
- Replication Consistency Group Name
- Pause
Mode string - Pause Mode of the replication consistency group instance.
- Rpo
In float64Seconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- Target
Volume stringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- destination
System StringId - Replication Consistency Group Destination System ID
- protection
Domain StringId - Replication Consistency Group Protection Domain ID
- remote
Protection StringDomain Id - Replication Consistency Group Remote Protection Domain ID
- curr
Consist StringMode - Consistency Mode of the replication consistency group instance.
- freeze
State String - Freeze State of the replication consistency group instance.
- local
Activity StringState - Local Activity State of the replication consistency group instance.
- name String
- Replication Consistency Group Name
- pause
Mode String - Pause Mode of the replication consistency group instance.
- rpo
In DoubleSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- target
Volume StringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- destination
System stringId - Replication Consistency Group Destination System ID
- protection
Domain stringId - Replication Consistency Group Protection Domain ID
- remote
Protection stringDomain Id - Replication Consistency Group Remote Protection Domain ID
- curr
Consist stringMode - Consistency Mode of the replication consistency group instance.
- freeze
State string - Freeze State of the replication consistency group instance.
- local
Activity stringState - Local Activity State of the replication consistency group instance.
- name string
- Replication Consistency Group Name
- pause
Mode string - Pause Mode of the replication consistency group instance.
- rpo
In numberSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- target
Volume stringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- destination_
system_ strid - Replication Consistency Group Destination System ID
- protection_
domain_ strid - Replication Consistency Group Protection Domain ID
- remote_
protection_ strdomain_ id - Replication Consistency Group Remote Protection Domain ID
- curr_
consist_ strmode - Consistency Mode of the replication consistency group instance.
- freeze_
state str - Freeze State of the replication consistency group instance.
- local_
activity_ strstate - Local Activity State of the replication consistency group instance.
- name str
- Replication Consistency Group Name
- pause_
mode str - Pause Mode of the replication consistency group instance.
- rpo_
in_ floatseconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- target_
volume_ straccess_ mode - Target Volume Access Mode of the replication consistency group instance.
- destination
System StringId - Replication Consistency Group Destination System ID
- protection
Domain StringId - Replication Consistency Group Protection Domain ID
- remote
Protection StringDomain Id - Replication Consistency Group Remote Protection Domain ID
- curr
Consist StringMode - Consistency Mode of the replication consistency group instance.
- freeze
State String - Freeze State of the replication consistency group instance.
- local
Activity StringState - Local Activity State of the replication consistency group instance.
- name String
- Replication Consistency Group Name
- pause
Mode String - Pause Mode of the replication consistency group instance.
- rpo
In NumberSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- target
Volume StringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the ReplicationConsistencyGroup resource produces the following output properties:
- Abstract
State string - Abstract State of the replication consistency group instance.
- Active
Local bool - Active Local of the replication consistency group instance.
- Active
Remote bool - Active Remote of the replication consistency group instance.
- Disaster
Recovery stringState - Disaster Recovery State of the replication consistency group instance.
- Error double
- Error of the replication consistency group instance.
- Failover
State string - Failover State of the replication consistency group instance.
- Failover
Type string - Failover Type of the replication consistency group instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Inactive
Reason double - Inactive Reason of the replication consistency group instance.
- Last
Snap stringGroup Id - Last Snap Group ID of the replication consistency group instance.
- Lifetime
State string - Lifetime State of the replication consistency group instance.
- Peer
Mdm stringId - Replication Consistency Group Peer Mdm ID
- Remote
Activity stringState - Remote Activity State of the replication consistency group instance.
- Remote
Disaster stringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- Remote
Id string - Remote ID of the replication consistency group instance.
- Remote
Mdm stringId - Remote MDM ID of the replication consistency group instance.
- Replication
Direction string - Replication Direction of the replication consistency group instance.
- Snap
Creation boolIn Progress - Snap Creation In Progress of the replication consistency group instance.
- Type string
- Type of the replication consistency group instance.
- Abstract
State string - Abstract State of the replication consistency group instance.
- Active
Local bool - Active Local of the replication consistency group instance.
- Active
Remote bool - Active Remote of the replication consistency group instance.
- Disaster
Recovery stringState - Disaster Recovery State of the replication consistency group instance.
- Error float64
- Error of the replication consistency group instance.
- Failover
State string - Failover State of the replication consistency group instance.
- Failover
Type string - Failover Type of the replication consistency group instance.
- Id string
- The provider-assigned unique ID for this managed resource.
- Inactive
Reason float64 - Inactive Reason of the replication consistency group instance.
- Last
Snap stringGroup Id - Last Snap Group ID of the replication consistency group instance.
- Lifetime
State string - Lifetime State of the replication consistency group instance.
- Peer
Mdm stringId - Replication Consistency Group Peer Mdm ID
- Remote
Activity stringState - Remote Activity State of the replication consistency group instance.
- Remote
Disaster stringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- Remote
Id string - Remote ID of the replication consistency group instance.
- Remote
Mdm stringId - Remote MDM ID of the replication consistency group instance.
- Replication
Direction string - Replication Direction of the replication consistency group instance.
- Snap
Creation boolIn Progress - Snap Creation In Progress of the replication consistency group instance.
- Type string
- Type of the replication consistency group instance.
- abstract
State String - Abstract State of the replication consistency group instance.
- active
Local Boolean - Active Local of the replication consistency group instance.
- active
Remote Boolean - Active Remote of the replication consistency group instance.
- disaster
Recovery StringState - Disaster Recovery State of the replication consistency group instance.
- error Double
- Error of the replication consistency group instance.
- failover
State String - Failover State of the replication consistency group instance.
- failover
Type String - Failover Type of the replication consistency group instance.
- id String
- The provider-assigned unique ID for this managed resource.
- inactive
Reason Double - Inactive Reason of the replication consistency group instance.
- last
Snap StringGroup Id - Last Snap Group ID of the replication consistency group instance.
- lifetime
State String - Lifetime State of the replication consistency group instance.
- peer
Mdm StringId - Replication Consistency Group Peer Mdm ID
- remote
Activity StringState - Remote Activity State of the replication consistency group instance.
- remote
Disaster StringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- remote
Id String - Remote ID of the replication consistency group instance.
- remote
Mdm StringId - Remote MDM ID of the replication consistency group instance.
- replication
Direction String - Replication Direction of the replication consistency group instance.
- snap
Creation BooleanIn Progress - Snap Creation In Progress of the replication consistency group instance.
- type String
- Type of the replication consistency group instance.
- abstract
State string - Abstract State of the replication consistency group instance.
- active
Local boolean - Active Local of the replication consistency group instance.
- active
Remote boolean - Active Remote of the replication consistency group instance.
- disaster
Recovery stringState - Disaster Recovery State of the replication consistency group instance.
- error number
- Error of the replication consistency group instance.
- failover
State string - Failover State of the replication consistency group instance.
- failover
Type string - Failover Type of the replication consistency group instance.
- id string
- The provider-assigned unique ID for this managed resource.
- inactive
Reason number - Inactive Reason of the replication consistency group instance.
- last
Snap stringGroup Id - Last Snap Group ID of the replication consistency group instance.
- lifetime
State string - Lifetime State of the replication consistency group instance.
- peer
Mdm stringId - Replication Consistency Group Peer Mdm ID
- remote
Activity stringState - Remote Activity State of the replication consistency group instance.
- remote
Disaster stringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- remote
Id string - Remote ID of the replication consistency group instance.
- remote
Mdm stringId - Remote MDM ID of the replication consistency group instance.
- replication
Direction string - Replication Direction of the replication consistency group instance.
- snap
Creation booleanIn Progress - Snap Creation In Progress of the replication consistency group instance.
- type string
- Type of the replication consistency group instance.
- abstract_
state str - Abstract State of the replication consistency group instance.
- active_
local bool - Active Local of the replication consistency group instance.
- active_
remote bool - Active Remote of the replication consistency group instance.
- disaster_
recovery_ strstate - Disaster Recovery State of the replication consistency group instance.
- error float
- Error of the replication consistency group instance.
- failover_
state str - Failover State of the replication consistency group instance.
- failover_
type str - Failover Type of the replication consistency group instance.
- id str
- The provider-assigned unique ID for this managed resource.
- inactive_
reason float - Inactive Reason of the replication consistency group instance.
- last_
snap_ strgroup_ id - Last Snap Group ID of the replication consistency group instance.
- lifetime_
state str - Lifetime State of the replication consistency group instance.
- peer_
mdm_ strid - Replication Consistency Group Peer Mdm ID
- remote_
activity_ strstate - Remote Activity State of the replication consistency group instance.
- remote_
disaster_ strrecovery_ state - Remote Disaster Recovery State of the replication consistency group instance.
- remote_
id str - Remote ID of the replication consistency group instance.
- remote_
mdm_ strid - Remote MDM ID of the replication consistency group instance.
- replication_
direction str - Replication Direction of the replication consistency group instance.
- snap_
creation_ boolin_ progress - Snap Creation In Progress of the replication consistency group instance.
- type str
- Type of the replication consistency group instance.
- abstract
State String - Abstract State of the replication consistency group instance.
- active
Local Boolean - Active Local of the replication consistency group instance.
- active
Remote Boolean - Active Remote of the replication consistency group instance.
- disaster
Recovery StringState - Disaster Recovery State of the replication consistency group instance.
- error Number
- Error of the replication consistency group instance.
- failover
State String - Failover State of the replication consistency group instance.
- failover
Type String - Failover Type of the replication consistency group instance.
- id String
- The provider-assigned unique ID for this managed resource.
- inactive
Reason Number - Inactive Reason of the replication consistency group instance.
- last
Snap StringGroup Id - Last Snap Group ID of the replication consistency group instance.
- lifetime
State String - Lifetime State of the replication consistency group instance.
- peer
Mdm StringId - Replication Consistency Group Peer Mdm ID
- remote
Activity StringState - Remote Activity State of the replication consistency group instance.
- remote
Disaster StringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- remote
Id String - Remote ID of the replication consistency group instance.
- remote
Mdm StringId - Remote MDM ID of the replication consistency group instance.
- replication
Direction String - Replication Direction of the replication consistency group instance.
- snap
Creation BooleanIn Progress - Snap Creation In Progress of the replication consistency group instance.
- type String
- Type of the replication consistency group instance.
Look up Existing ReplicationConsistencyGroup Resource
Get an existing ReplicationConsistencyGroup 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?: ReplicationConsistencyGroupState, opts?: CustomResourceOptions): ReplicationConsistencyGroup
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
abstract_state: Optional[str] = None,
active_local: Optional[bool] = None,
active_remote: Optional[bool] = None,
curr_consist_mode: Optional[str] = None,
destination_system_id: Optional[str] = None,
disaster_recovery_state: Optional[str] = None,
error: Optional[float] = None,
failover_state: Optional[str] = None,
failover_type: Optional[str] = None,
freeze_state: Optional[str] = None,
inactive_reason: Optional[float] = None,
last_snap_group_id: Optional[str] = None,
lifetime_state: Optional[str] = None,
local_activity_state: Optional[str] = None,
name: Optional[str] = None,
pause_mode: Optional[str] = None,
peer_mdm_id: Optional[str] = None,
protection_domain_id: Optional[str] = None,
remote_activity_state: Optional[str] = None,
remote_disaster_recovery_state: Optional[str] = None,
remote_id: Optional[str] = None,
remote_mdm_id: Optional[str] = None,
remote_protection_domain_id: Optional[str] = None,
replication_direction: Optional[str] = None,
rpo_in_seconds: Optional[float] = None,
snap_creation_in_progress: Optional[bool] = None,
target_volume_access_mode: Optional[str] = None,
type: Optional[str] = None) -> ReplicationConsistencyGroup
func GetReplicationConsistencyGroup(ctx *Context, name string, id IDInput, state *ReplicationConsistencyGroupState, opts ...ResourceOption) (*ReplicationConsistencyGroup, error)
public static ReplicationConsistencyGroup Get(string name, Input<string> id, ReplicationConsistencyGroupState? state, CustomResourceOptions? opts = null)
public static ReplicationConsistencyGroup get(String name, Output<String> id, ReplicationConsistencyGroupState state, CustomResourceOptions options)
resources: _: type: powerflex:ReplicationConsistencyGroup 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.
- Abstract
State string - Abstract State of the replication consistency group instance.
- Active
Local bool - Active Local of the replication consistency group instance.
- Active
Remote bool - Active Remote of the replication consistency group instance.
- Curr
Consist stringMode - Consistency Mode of the replication consistency group instance.
- Destination
System stringId - Replication Consistency Group Destination System ID
- Disaster
Recovery stringState - Disaster Recovery State of the replication consistency group instance.
- Error double
- Error of the replication consistency group instance.
- Failover
State string - Failover State of the replication consistency group instance.
- Failover
Type string - Failover Type of the replication consistency group instance.
- Freeze
State string - Freeze State of the replication consistency group instance.
- Inactive
Reason double - Inactive Reason of the replication consistency group instance.
- Last
Snap stringGroup Id - Last Snap Group ID of the replication consistency group instance.
- Lifetime
State string - Lifetime State of the replication consistency group instance.
- Local
Activity stringState - Local Activity State of the replication consistency group instance.
- Name string
- Replication Consistency Group Name
- Pause
Mode string - Pause Mode of the replication consistency group instance.
- Peer
Mdm stringId - Replication Consistency Group Peer Mdm ID
- Protection
Domain stringId - Replication Consistency Group Protection Domain ID
- Remote
Activity stringState - Remote Activity State of the replication consistency group instance.
- Remote
Disaster stringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- Remote
Id string - Remote ID of the replication consistency group instance.
- Remote
Mdm stringId - Remote MDM ID of the replication consistency group instance.
- Remote
Protection stringDomain Id - Replication Consistency Group Remote Protection Domain ID
- Replication
Direction string - Replication Direction of the replication consistency group instance.
- Rpo
In doubleSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- Snap
Creation boolIn Progress - Snap Creation In Progress of the replication consistency group instance.
- Target
Volume stringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- Type string
- Type of the replication consistency group instance.
- Abstract
State string - Abstract State of the replication consistency group instance.
- Active
Local bool - Active Local of the replication consistency group instance.
- Active
Remote bool - Active Remote of the replication consistency group instance.
- Curr
Consist stringMode - Consistency Mode of the replication consistency group instance.
- Destination
System stringId - Replication Consistency Group Destination System ID
- Disaster
Recovery stringState - Disaster Recovery State of the replication consistency group instance.
- Error float64
- Error of the replication consistency group instance.
- Failover
State string - Failover State of the replication consistency group instance.
- Failover
Type string - Failover Type of the replication consistency group instance.
- Freeze
State string - Freeze State of the replication consistency group instance.
- Inactive
Reason float64 - Inactive Reason of the replication consistency group instance.
- Last
Snap stringGroup Id - Last Snap Group ID of the replication consistency group instance.
- Lifetime
State string - Lifetime State of the replication consistency group instance.
- Local
Activity stringState - Local Activity State of the replication consistency group instance.
- Name string
- Replication Consistency Group Name
- Pause
Mode string - Pause Mode of the replication consistency group instance.
- Peer
Mdm stringId - Replication Consistency Group Peer Mdm ID
- Protection
Domain stringId - Replication Consistency Group Protection Domain ID
- Remote
Activity stringState - Remote Activity State of the replication consistency group instance.
- Remote
Disaster stringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- Remote
Id string - Remote ID of the replication consistency group instance.
- Remote
Mdm stringId - Remote MDM ID of the replication consistency group instance.
- Remote
Protection stringDomain Id - Replication Consistency Group Remote Protection Domain ID
- Replication
Direction string - Replication Direction of the replication consistency group instance.
- Rpo
In float64Seconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- Snap
Creation boolIn Progress - Snap Creation In Progress of the replication consistency group instance.
- Target
Volume stringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- Type string
- Type of the replication consistency group instance.
- abstract
State String - Abstract State of the replication consistency group instance.
- active
Local Boolean - Active Local of the replication consistency group instance.
- active
Remote Boolean - Active Remote of the replication consistency group instance.
- curr
Consist StringMode - Consistency Mode of the replication consistency group instance.
- destination
System StringId - Replication Consistency Group Destination System ID
- disaster
Recovery StringState - Disaster Recovery State of the replication consistency group instance.
- error Double
- Error of the replication consistency group instance.
- failover
State String - Failover State of the replication consistency group instance.
- failover
Type String - Failover Type of the replication consistency group instance.
- freeze
State String - Freeze State of the replication consistency group instance.
- inactive
Reason Double - Inactive Reason of the replication consistency group instance.
- last
Snap StringGroup Id - Last Snap Group ID of the replication consistency group instance.
- lifetime
State String - Lifetime State of the replication consistency group instance.
- local
Activity StringState - Local Activity State of the replication consistency group instance.
- name String
- Replication Consistency Group Name
- pause
Mode String - Pause Mode of the replication consistency group instance.
- peer
Mdm StringId - Replication Consistency Group Peer Mdm ID
- protection
Domain StringId - Replication Consistency Group Protection Domain ID
- remote
Activity StringState - Remote Activity State of the replication consistency group instance.
- remote
Disaster StringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- remote
Id String - Remote ID of the replication consistency group instance.
- remote
Mdm StringId - Remote MDM ID of the replication consistency group instance.
- remote
Protection StringDomain Id - Replication Consistency Group Remote Protection Domain ID
- replication
Direction String - Replication Direction of the replication consistency group instance.
- rpo
In DoubleSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- snap
Creation BooleanIn Progress - Snap Creation In Progress of the replication consistency group instance.
- target
Volume StringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- type String
- Type of the replication consistency group instance.
- abstract
State string - Abstract State of the replication consistency group instance.
- active
Local boolean - Active Local of the replication consistency group instance.
- active
Remote boolean - Active Remote of the replication consistency group instance.
- curr
Consist stringMode - Consistency Mode of the replication consistency group instance.
- destination
System stringId - Replication Consistency Group Destination System ID
- disaster
Recovery stringState - Disaster Recovery State of the replication consistency group instance.
- error number
- Error of the replication consistency group instance.
- failover
State string - Failover State of the replication consistency group instance.
- failover
Type string - Failover Type of the replication consistency group instance.
- freeze
State string - Freeze State of the replication consistency group instance.
- inactive
Reason number - Inactive Reason of the replication consistency group instance.
- last
Snap stringGroup Id - Last Snap Group ID of the replication consistency group instance.
- lifetime
State string - Lifetime State of the replication consistency group instance.
- local
Activity stringState - Local Activity State of the replication consistency group instance.
- name string
- Replication Consistency Group Name
- pause
Mode string - Pause Mode of the replication consistency group instance.
- peer
Mdm stringId - Replication Consistency Group Peer Mdm ID
- protection
Domain stringId - Replication Consistency Group Protection Domain ID
- remote
Activity stringState - Remote Activity State of the replication consistency group instance.
- remote
Disaster stringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- remote
Id string - Remote ID of the replication consistency group instance.
- remote
Mdm stringId - Remote MDM ID of the replication consistency group instance.
- remote
Protection stringDomain Id - Replication Consistency Group Remote Protection Domain ID
- replication
Direction string - Replication Direction of the replication consistency group instance.
- rpo
In numberSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- snap
Creation booleanIn Progress - Snap Creation In Progress of the replication consistency group instance.
- target
Volume stringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- type string
- Type of the replication consistency group instance.
- abstract_
state str - Abstract State of the replication consistency group instance.
- active_
local bool - Active Local of the replication consistency group instance.
- active_
remote bool - Active Remote of the replication consistency group instance.
- curr_
consist_ strmode - Consistency Mode of the replication consistency group instance.
- destination_
system_ strid - Replication Consistency Group Destination System ID
- disaster_
recovery_ strstate - Disaster Recovery State of the replication consistency group instance.
- error float
- Error of the replication consistency group instance.
- failover_
state str - Failover State of the replication consistency group instance.
- failover_
type str - Failover Type of the replication consistency group instance.
- freeze_
state str - Freeze State of the replication consistency group instance.
- inactive_
reason float - Inactive Reason of the replication consistency group instance.
- last_
snap_ strgroup_ id - Last Snap Group ID of the replication consistency group instance.
- lifetime_
state str - Lifetime State of the replication consistency group instance.
- local_
activity_ strstate - Local Activity State of the replication consistency group instance.
- name str
- Replication Consistency Group Name
- pause_
mode str - Pause Mode of the replication consistency group instance.
- peer_
mdm_ strid - Replication Consistency Group Peer Mdm ID
- protection_
domain_ strid - Replication Consistency Group Protection Domain ID
- remote_
activity_ strstate - Remote Activity State of the replication consistency group instance.
- remote_
disaster_ strrecovery_ state - Remote Disaster Recovery State of the replication consistency group instance.
- remote_
id str - Remote ID of the replication consistency group instance.
- remote_
mdm_ strid - Remote MDM ID of the replication consistency group instance.
- remote_
protection_ strdomain_ id - Replication Consistency Group Remote Protection Domain ID
- replication_
direction str - Replication Direction of the replication consistency group instance.
- rpo_
in_ floatseconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- snap_
creation_ boolin_ progress - Snap Creation In Progress of the replication consistency group instance.
- target_
volume_ straccess_ mode - Target Volume Access Mode of the replication consistency group instance.
- type str
- Type of the replication consistency group instance.
- abstract
State String - Abstract State of the replication consistency group instance.
- active
Local Boolean - Active Local of the replication consistency group instance.
- active
Remote Boolean - Active Remote of the replication consistency group instance.
- curr
Consist StringMode - Consistency Mode of the replication consistency group instance.
- destination
System StringId - Replication Consistency Group Destination System ID
- disaster
Recovery StringState - Disaster Recovery State of the replication consistency group instance.
- error Number
- Error of the replication consistency group instance.
- failover
State String - Failover State of the replication consistency group instance.
- failover
Type String - Failover Type of the replication consistency group instance.
- freeze
State String - Freeze State of the replication consistency group instance.
- inactive
Reason Number - Inactive Reason of the replication consistency group instance.
- last
Snap StringGroup Id - Last Snap Group ID of the replication consistency group instance.
- lifetime
State String - Lifetime State of the replication consistency group instance.
- local
Activity StringState - Local Activity State of the replication consistency group instance.
- name String
- Replication Consistency Group Name
- pause
Mode String - Pause Mode of the replication consistency group instance.
- peer
Mdm StringId - Replication Consistency Group Peer Mdm ID
- protection
Domain StringId - Replication Consistency Group Protection Domain ID
- remote
Activity StringState - Remote Activity State of the replication consistency group instance.
- remote
Disaster StringRecovery State - Remote Disaster Recovery State of the replication consistency group instance.
- remote
Id String - Remote ID of the replication consistency group instance.
- remote
Mdm StringId - Remote MDM ID of the replication consistency group instance.
- remote
Protection StringDomain Id - Replication Consistency Group Remote Protection Domain ID
- replication
Direction String - Replication Direction of the replication consistency group instance.
- rpo
In NumberSeconds - Replication Consistency Group RPO in Seconds (min: 15, default 15, max: 3600)
- snap
Creation BooleanIn Progress - Snap Creation In Progress of the replication consistency group instance.
- target
Volume StringAccess Mode - Target Volume Access Mode of the replication consistency group instance.
- type String
- Type of the replication consistency group instance.
Package Details
- Repository
- powerflex dell/terraform-provider-powerflex
- License
- Notes
- This Pulumi package is based on the
powerflex
Terraform Provider.