1. Packages
  2. Azure Native
  3. API Docs
  4. datareplication
  5. ReplicationExtension
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.datareplication.ReplicationExtension

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

Replication extension model.

Uses Azure REST API version 2021-02-16-preview.

Other available API versions: 2024-09-01.

Example Usage

ReplicationExtension_Create

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var replicationExtension = new AzureNative.DataReplication.ReplicationExtension("replicationExtension", new()
    {
        Properties = new AzureNative.DataReplication.Inputs.ReplicationExtensionModelPropertiesArgs
        {
            CustomProperties = 
            {
                { "instanceType", "ReplicationExtensionModelCustomProperties" },
            },
        },
        ReplicationExtensionName = "g16yjJ",
        ResourceGroupName = "rgrecoveryservicesdatareplication",
        VaultName = "4",
    });

});
Copy
package main

import (
	datareplication "github.com/pulumi/pulumi-azure-native-sdk/datareplication/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datareplication.NewReplicationExtension(ctx, "replicationExtension", &datareplication.ReplicationExtensionArgs{
			Properties: &datareplication.ReplicationExtensionModelPropertiesArgs{
				CustomProperties: pulumi.Any{
					InstanceType: pulumi.String("ReplicationExtensionModelCustomProperties"),
				},
			},
			ReplicationExtensionName: pulumi.String("g16yjJ"),
			ResourceGroupName:        pulumi.String("rgrecoveryservicesdatareplication"),
			VaultName:                pulumi.String("4"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.datareplication.ReplicationExtension;
import com.pulumi.azurenative.datareplication.ReplicationExtensionArgs;
import com.pulumi.azurenative.datareplication.inputs.ReplicationExtensionModelPropertiesArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var replicationExtension = new ReplicationExtension("replicationExtension", ReplicationExtensionArgs.builder()
            .properties(ReplicationExtensionModelPropertiesArgs.builder()
                .customProperties(HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesArgs.builder()
                    .instanceType("ReplicationExtensionModelCustomProperties")
                    .build())
                .build())
            .replicationExtensionName("g16yjJ")
            .resourceGroupName("rgrecoveryservicesdatareplication")
            .vaultName("4")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const replicationExtension = new azure_native.datareplication.ReplicationExtension("replicationExtension", {
    properties: {
        customProperties: {
            instanceType: "ReplicationExtensionModelCustomProperties",
        },
    },
    replicationExtensionName: "g16yjJ",
    resourceGroupName: "rgrecoveryservicesdatareplication",
    vaultName: "4",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

replication_extension = azure_native.datareplication.ReplicationExtension("replicationExtension",
    properties={
        "custom_properties": {
            "instance_type": "ReplicationExtensionModelCustomProperties",
        },
    },
    replication_extension_name="g16yjJ",
    resource_group_name="rgrecoveryservicesdatareplication",
    vault_name="4")
Copy
resources:
  replicationExtension:
    type: azure-native:datareplication:ReplicationExtension
    properties:
      properties:
        customProperties:
          instanceType: ReplicationExtensionModelCustomProperties
      replicationExtensionName: g16yjJ
      resourceGroupName: rgrecoveryservicesdatareplication
      vaultName: '4'
Copy

Create ReplicationExtension Resource

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

Constructor syntax

new ReplicationExtension(name: string, args: ReplicationExtensionArgs, opts?: CustomResourceOptions);
@overload
def ReplicationExtension(resource_name: str,
                         args: ReplicationExtensionArgs,
                         opts: Optional[ResourceOptions] = None)

@overload
def ReplicationExtension(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         properties: Optional[ReplicationExtensionModelPropertiesArgs] = None,
                         resource_group_name: Optional[str] = None,
                         vault_name: Optional[str] = None,
                         replication_extension_name: Optional[str] = None)
func NewReplicationExtension(ctx *Context, name string, args ReplicationExtensionArgs, opts ...ResourceOption) (*ReplicationExtension, error)
public ReplicationExtension(string name, ReplicationExtensionArgs args, CustomResourceOptions? opts = null)
public ReplicationExtension(String name, ReplicationExtensionArgs args)
public ReplicationExtension(String name, ReplicationExtensionArgs args, CustomResourceOptions options)
type: azure-native:datareplication:ReplicationExtension
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ReplicationExtensionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ReplicationExtensionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ReplicationExtensionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ReplicationExtensionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ReplicationExtensionArgs
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 replicationExtensionResource = new AzureNative.DataReplication.ReplicationExtension("replicationExtensionResource", new()
{
    Properties = new AzureNative.DataReplication.Inputs.ReplicationExtensionModelPropertiesArgs
    {
        CustomProperties = new AzureNative.DataReplication.Inputs.HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesArgs
        {
            AzStackHciFabricArmId = "string",
            HyperVFabricArmId = "string",
            InstanceType = "HyperVToAzStackHCI",
            StorageAccountId = "string",
            StorageAccountSasSecretName = "string",
        },
    },
    ResourceGroupName = "string",
    VaultName = "string",
    ReplicationExtensionName = "string",
});
Copy
example, err := datareplication.NewReplicationExtension(ctx, "replicationExtensionResource", &datareplication.ReplicationExtensionArgs{
	Properties: &datareplication.ReplicationExtensionModelPropertiesArgs{
		CustomProperties: datareplication.HyperVToAzStackHCIReplicationExtensionModelCustomProperties{
			AzStackHciFabricArmId:       "string",
			HyperVFabricArmId:           "string",
			InstanceType:                "HyperVToAzStackHCI",
			StorageAccountId:            "string",
			StorageAccountSasSecretName: "string",
		},
	},
	ResourceGroupName:        pulumi.String("string"),
	VaultName:                pulumi.String("string"),
	ReplicationExtensionName: pulumi.String("string"),
})
Copy
var replicationExtensionResource = new ReplicationExtension("replicationExtensionResource", ReplicationExtensionArgs.builder()
    .properties(ReplicationExtensionModelPropertiesArgs.builder()
        .customProperties(HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesArgs.builder()
            .azStackHciFabricArmId("string")
            .hyperVFabricArmId("string")
            .instanceType("HyperVToAzStackHCI")
            .storageAccountId("string")
            .storageAccountSasSecretName("string")
            .build())
        .build())
    .resourceGroupName("string")
    .vaultName("string")
    .replicationExtensionName("string")
    .build());
Copy
replication_extension_resource = azure_native.datareplication.ReplicationExtension("replicationExtensionResource",
    properties={
        "custom_properties": {
            "az_stack_hci_fabric_arm_id": "string",
            "hyper_v_fabric_arm_id": "string",
            "instance_type": "HyperVToAzStackHCI",
            "storage_account_id": "string",
            "storage_account_sas_secret_name": "string",
        },
    },
    resource_group_name="string",
    vault_name="string",
    replication_extension_name="string")
Copy
const replicationExtensionResource = new azure_native.datareplication.ReplicationExtension("replicationExtensionResource", {
    properties: {
        customProperties: {
            azStackHciFabricArmId: "string",
            hyperVFabricArmId: "string",
            instanceType: "HyperVToAzStackHCI",
            storageAccountId: "string",
            storageAccountSasSecretName: "string",
        },
    },
    resourceGroupName: "string",
    vaultName: "string",
    replicationExtensionName: "string",
});
Copy
type: azure-native:datareplication:ReplicationExtension
properties:
    properties:
        customProperties:
            azStackHciFabricArmId: string
            hyperVFabricArmId: string
            instanceType: HyperVToAzStackHCI
            storageAccountId: string
            storageAccountSasSecretName: string
    replicationExtensionName: string
    resourceGroupName: string
    vaultName: string
Copy

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

Properties This property is required. Pulumi.AzureNative.DataReplication.Inputs.ReplicationExtensionModelProperties
Replication extension model properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
VaultName
This property is required.
Changes to this property will trigger replacement.
string
The vault name.
ReplicationExtensionName Changes to this property will trigger replacement. string
The replication extension name.
Properties This property is required. ReplicationExtensionModelPropertiesArgs
Replication extension model properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
VaultName
This property is required.
Changes to this property will trigger replacement.
string
The vault name.
ReplicationExtensionName Changes to this property will trigger replacement. string
The replication extension name.
properties This property is required. ReplicationExtensionModelProperties
Replication extension model properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
vaultName
This property is required.
Changes to this property will trigger replacement.
String
The vault name.
replicationExtensionName Changes to this property will trigger replacement. String
The replication extension name.
properties This property is required. ReplicationExtensionModelProperties
Replication extension model properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
vaultName
This property is required.
Changes to this property will trigger replacement.
string
The vault name.
replicationExtensionName Changes to this property will trigger replacement. string
The replication extension name.
properties This property is required. ReplicationExtensionModelPropertiesArgs
Replication extension model properties.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
vault_name
This property is required.
Changes to this property will trigger replacement.
str
The vault name.
replication_extension_name Changes to this property will trigger replacement. str
The replication extension name.
properties This property is required. Property Map
Replication extension model properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
vaultName
This property is required.
Changes to this property will trigger replacement.
String
The vault name.
replicationExtensionName Changes to this property will trigger replacement. String
The replication extension name.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets or sets the name of the resource.
SystemData Pulumi.AzureNative.DataReplication.Outputs.ReplicationExtensionModelResponseSystemData
Type string
Gets or sets the type of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Gets or sets the name of the resource.
SystemData ReplicationExtensionModelResponseSystemData
Type string
Gets or sets the type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets or sets the name of the resource.
systemData ReplicationExtensionModelResponseSystemData
type String
Gets or sets the type of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
Gets or sets the name of the resource.
systemData ReplicationExtensionModelResponseSystemData
type string
Gets or sets the type of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
Gets or sets the name of the resource.
system_data ReplicationExtensionModelResponseSystemData
type str
Gets or sets the type of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
Gets or sets the name of the resource.
systemData Property Map
type String
Gets or sets the type of the resource.

Supporting Types

HyperVToAzStackHCIReplicationExtensionModelCustomProperties
, HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesArgs

AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
HyperVFabricArmId This property is required. string
Gets or sets the ARM Id of the source HyperV fabric.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
HyperVFabricArmId This property is required. string
Gets or sets the ARM Id of the source HyperV fabric.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
hyperVFabricArmId This property is required. String
Gets or sets the ARM Id of the source HyperV fabric.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.
azStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
hyperVFabricArmId This property is required. string
Gets or sets the ARM Id of the source HyperV fabric.
storageAccountId string
Gets or sets the storage account Id.
storageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
az_stack_hci_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the target AzStackHCI fabric.
hyper_v_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the source HyperV fabric.
storage_account_id str
Gets or sets the storage account Id.
storage_account_sas_secret_name str
Gets or sets the Sas Secret of storage account.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
hyperVFabricArmId This property is required. String
Gets or sets the ARM Id of the source HyperV fabric.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.

HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
, HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponseArgs

AsrServiceUri This property is required. string
Gets or sets the Uri of ASR.
AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
GatewayServiceUri This property is required. string
Gets or sets the Uri of Gateway.
HyperVFabricArmId This property is required. string
Gets or sets the ARM Id of the source HyperV fabric.
HyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
RcmServiceUri This property is required. string
Gets or sets the Uri of Rcm.
ResourceGroup This property is required. string
Gets or sets the resource group.
ResourceLocation This property is required. string
Gets or sets the resource location.
SourceGatewayServiceId This property is required. string
Gets or sets the gateway service Id of source.
SourceStorageContainerName This property is required. string
Gets or sets the source storage container name.
SubscriptionId This property is required. string
Gets or sets the subscription.
TargetGatewayServiceId This property is required. string
Gets or sets the gateway service Id of target.
TargetStorageContainerName This property is required. string
Gets or sets the target storage container name.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
AsrServiceUri This property is required. string
Gets or sets the Uri of ASR.
AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
GatewayServiceUri This property is required. string
Gets or sets the Uri of Gateway.
HyperVFabricArmId This property is required. string
Gets or sets the ARM Id of the source HyperV fabric.
HyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
RcmServiceUri This property is required. string
Gets or sets the Uri of Rcm.
ResourceGroup This property is required. string
Gets or sets the resource group.
ResourceLocation This property is required. string
Gets or sets the resource location.
SourceGatewayServiceId This property is required. string
Gets or sets the gateway service Id of source.
SourceStorageContainerName This property is required. string
Gets or sets the source storage container name.
SubscriptionId This property is required. string
Gets or sets the subscription.
TargetGatewayServiceId This property is required. string
Gets or sets the gateway service Id of target.
TargetStorageContainerName This property is required. string
Gets or sets the target storage container name.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
asrServiceUri This property is required. String
Gets or sets the Uri of ASR.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
gatewayServiceUri This property is required. String
Gets or sets the Uri of Gateway.
hyperVFabricArmId This property is required. String
Gets or sets the ARM Id of the source HyperV fabric.
hyperVSiteId This property is required. String
Gets or sets the ARM Id of the HyperV site.
rcmServiceUri This property is required. String
Gets or sets the Uri of Rcm.
resourceGroup This property is required. String
Gets or sets the resource group.
resourceLocation This property is required. String
Gets or sets the resource location.
sourceGatewayServiceId This property is required. String
Gets or sets the gateway service Id of source.
sourceStorageContainerName This property is required. String
Gets or sets the source storage container name.
subscriptionId This property is required. String
Gets or sets the subscription.
targetGatewayServiceId This property is required. String
Gets or sets the gateway service Id of target.
targetStorageContainerName This property is required. String
Gets or sets the target storage container name.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.
asrServiceUri This property is required. string
Gets or sets the Uri of ASR.
azStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
azStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
gatewayServiceUri This property is required. string
Gets or sets the Uri of Gateway.
hyperVFabricArmId This property is required. string
Gets or sets the ARM Id of the source HyperV fabric.
hyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
rcmServiceUri This property is required. string
Gets or sets the Uri of Rcm.
resourceGroup This property is required. string
Gets or sets the resource group.
resourceLocation This property is required. string
Gets or sets the resource location.
sourceGatewayServiceId This property is required. string
Gets or sets the gateway service Id of source.
sourceStorageContainerName This property is required. string
Gets or sets the source storage container name.
subscriptionId This property is required. string
Gets or sets the subscription.
targetGatewayServiceId This property is required. string
Gets or sets the gateway service Id of target.
targetStorageContainerName This property is required. string
Gets or sets the target storage container name.
storageAccountId string
Gets or sets the storage account Id.
storageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
asr_service_uri This property is required. str
Gets or sets the Uri of ASR.
az_stack_hci_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the target AzStackHCI fabric.
az_stack_hci_site_id This property is required. str
Gets or sets the ARM Id of the AzStackHCI site.
gateway_service_uri This property is required. str
Gets or sets the Uri of Gateway.
hyper_v_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the source HyperV fabric.
hyper_v_site_id This property is required. str
Gets or sets the ARM Id of the HyperV site.
rcm_service_uri This property is required. str
Gets or sets the Uri of Rcm.
resource_group This property is required. str
Gets or sets the resource group.
resource_location This property is required. str
Gets or sets the resource location.
source_gateway_service_id This property is required. str
Gets or sets the gateway service Id of source.
source_storage_container_name This property is required. str
Gets or sets the source storage container name.
subscription_id This property is required. str
Gets or sets the subscription.
target_gateway_service_id This property is required. str
Gets or sets the gateway service Id of target.
target_storage_container_name This property is required. str
Gets or sets the target storage container name.
storage_account_id str
Gets or sets the storage account Id.
storage_account_sas_secret_name str
Gets or sets the Sas Secret of storage account.
asrServiceUri This property is required. String
Gets or sets the Uri of ASR.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
gatewayServiceUri This property is required. String
Gets or sets the Uri of Gateway.
hyperVFabricArmId This property is required. String
Gets or sets the ARM Id of the source HyperV fabric.
hyperVSiteId This property is required. String
Gets or sets the ARM Id of the HyperV site.
rcmServiceUri This property is required. String
Gets or sets the Uri of Rcm.
resourceGroup This property is required. String
Gets or sets the resource group.
resourceLocation This property is required. String
Gets or sets the resource location.
sourceGatewayServiceId This property is required. String
Gets or sets the gateway service Id of source.
sourceStorageContainerName This property is required. String
Gets or sets the source storage container name.
subscriptionId This property is required. String
Gets or sets the subscription.
targetGatewayServiceId This property is required. String
Gets or sets the gateway service Id of target.
targetStorageContainerName This property is required. String
Gets or sets the target storage container name.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.

ReplicationExtensionModelProperties
, ReplicationExtensionModelPropertiesArgs

customProperties This property is required. Property Map | Property Map
Replication extension model custom properties.

ReplicationExtensionModelPropertiesResponse
, ReplicationExtensionModelPropertiesResponseArgs

CustomProperties This property is required. Pulumi.AzureNative.DataReplication.Inputs.HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponse | Pulumi.AzureNative.DataReplication.Inputs.VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
Replication extension model custom properties.
ProvisioningState This property is required. string
Gets or sets the provisioning state of the replication extension.
CustomProperties This property is required. HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponse | VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
Replication extension model custom properties.
ProvisioningState This property is required. string
Gets or sets the provisioning state of the replication extension.
customProperties This property is required. HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponse | VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
Replication extension model custom properties.
provisioningState This property is required. String
Gets or sets the provisioning state of the replication extension.
customProperties This property is required. HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponse | VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
Replication extension model custom properties.
provisioningState This property is required. string
Gets or sets the provisioning state of the replication extension.
custom_properties This property is required. HyperVToAzStackHCIReplicationExtensionModelCustomPropertiesResponse | VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
Replication extension model custom properties.
provisioning_state This property is required. str
Gets or sets the provisioning state of the replication extension.
customProperties This property is required. Property Map | Property Map
Replication extension model custom properties.
provisioningState This property is required. String
Gets or sets the provisioning state of the replication extension.

ReplicationExtensionModelResponseSystemData
, ReplicationExtensionModelResponseSystemDataArgs

CreatedAt string
Gets or sets the timestamp of resource creation (UTC).
CreatedBy string
Gets or sets identity that created the resource.
CreatedByType string
Gets or sets the type of identity that created the resource: user, application, managedIdentity.
LastModifiedAt string
Gets or sets the timestamp of resource last modification (UTC).
LastModifiedBy string
Gets or sets the identity that last modified the resource.
LastModifiedByType string
Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
CreatedAt string
Gets or sets the timestamp of resource creation (UTC).
CreatedBy string
Gets or sets identity that created the resource.
CreatedByType string
Gets or sets the type of identity that created the resource: user, application, managedIdentity.
LastModifiedAt string
Gets or sets the timestamp of resource last modification (UTC).
LastModifiedBy string
Gets or sets the identity that last modified the resource.
LastModifiedByType string
Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
createdAt String
Gets or sets the timestamp of resource creation (UTC).
createdBy String
Gets or sets identity that created the resource.
createdByType String
Gets or sets the type of identity that created the resource: user, application, managedIdentity.
lastModifiedAt String
Gets or sets the timestamp of resource last modification (UTC).
lastModifiedBy String
Gets or sets the identity that last modified the resource.
lastModifiedByType String
Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
createdAt string
Gets or sets the timestamp of resource creation (UTC).
createdBy string
Gets or sets identity that created the resource.
createdByType string
Gets or sets the type of identity that created the resource: user, application, managedIdentity.
lastModifiedAt string
Gets or sets the timestamp of resource last modification (UTC).
lastModifiedBy string
Gets or sets the identity that last modified the resource.
lastModifiedByType string
Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
created_at str
Gets or sets the timestamp of resource creation (UTC).
created_by str
Gets or sets identity that created the resource.
created_by_type str
Gets or sets the type of identity that created the resource: user, application, managedIdentity.
last_modified_at str
Gets or sets the timestamp of resource last modification (UTC).
last_modified_by str
Gets or sets the identity that last modified the resource.
last_modified_by_type str
Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.
createdAt String
Gets or sets the timestamp of resource creation (UTC).
createdBy String
Gets or sets identity that created the resource.
createdByType String
Gets or sets the type of identity that created the resource: user, application, managedIdentity.
lastModifiedAt String
Gets or sets the timestamp of resource last modification (UTC).
lastModifiedBy String
Gets or sets the identity that last modified the resource.
lastModifiedByType String
Gets or sets the type of identity that last modified the resource: user, application, managedIdentity.

VMwareToAzStackHCIReplicationExtensionModelCustomProperties
, VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesArgs

AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
VmwareFabricArmId This property is required. string
Gets or sets the ARM Id of the source VMware fabric.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
VmwareFabricArmId This property is required. string
Gets or sets the ARM Id of the source VMware fabric.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
vmwareFabricArmId This property is required. String
Gets or sets the ARM Id of the source VMware fabric.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.
azStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
vmwareFabricArmId This property is required. string
Gets or sets the ARM Id of the source VMware fabric.
storageAccountId string
Gets or sets the storage account Id.
storageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
az_stack_hci_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the target AzStackHCI fabric.
vmware_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the source VMware fabric.
storage_account_id str
Gets or sets the storage account Id.
storage_account_sas_secret_name str
Gets or sets the Sas Secret of storage account.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
vmwareFabricArmId This property is required. String
Gets or sets the ARM Id of the source VMware fabric.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.

VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponse
, VMwareToAzStackHCIReplicationExtensionModelCustomPropertiesResponseArgs

AsrServiceUri This property is required. string
Gets or sets the Uri of ASR.
AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
GatewayServiceUri This property is required. string
Gets or sets the Uri of Gateway.
RcmServiceUri This property is required. string
Gets or sets the Uri of Rcm.
ResourceGroup This property is required. string
Gets or sets the resource group.
ResourceLocation This property is required. string
Gets or sets the resource location.
SourceGatewayServiceId This property is required. string
Gets or sets the gateway service Id of source.
SourceStorageContainerName This property is required. string
Gets or sets the source storage container name.
SubscriptionId This property is required. string
Gets or sets the subscription.
TargetGatewayServiceId This property is required. string
Gets or sets the gateway service Id of target.
TargetStorageContainerName This property is required. string
Gets or sets the target storage container name.
VmwareFabricArmId This property is required. string
Gets or sets the ARM Id of the source VMware fabric.
VmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
AsrServiceUri This property is required. string
Gets or sets the Uri of ASR.
AzStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
GatewayServiceUri This property is required. string
Gets or sets the Uri of Gateway.
RcmServiceUri This property is required. string
Gets or sets the Uri of Rcm.
ResourceGroup This property is required. string
Gets or sets the resource group.
ResourceLocation This property is required. string
Gets or sets the resource location.
SourceGatewayServiceId This property is required. string
Gets or sets the gateway service Id of source.
SourceStorageContainerName This property is required. string
Gets or sets the source storage container name.
SubscriptionId This property is required. string
Gets or sets the subscription.
TargetGatewayServiceId This property is required. string
Gets or sets the gateway service Id of target.
TargetStorageContainerName This property is required. string
Gets or sets the target storage container name.
VmwareFabricArmId This property is required. string
Gets or sets the ARM Id of the source VMware fabric.
VmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
StorageAccountId string
Gets or sets the storage account Id.
StorageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
asrServiceUri This property is required. String
Gets or sets the Uri of ASR.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
gatewayServiceUri This property is required. String
Gets or sets the Uri of Gateway.
rcmServiceUri This property is required. String
Gets or sets the Uri of Rcm.
resourceGroup This property is required. String
Gets or sets the resource group.
resourceLocation This property is required. String
Gets or sets the resource location.
sourceGatewayServiceId This property is required. String
Gets or sets the gateway service Id of source.
sourceStorageContainerName This property is required. String
Gets or sets the source storage container name.
subscriptionId This property is required. String
Gets or sets the subscription.
targetGatewayServiceId This property is required. String
Gets or sets the gateway service Id of target.
targetStorageContainerName This property is required. String
Gets or sets the target storage container name.
vmwareFabricArmId This property is required. String
Gets or sets the ARM Id of the source VMware fabric.
vmwareSiteId This property is required. String
Gets or sets the ARM Id of the VMware site.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.
asrServiceUri This property is required. string
Gets or sets the Uri of ASR.
azStackHciFabricArmId This property is required. string
Gets or sets the ARM Id of the target AzStackHCI fabric.
azStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
gatewayServiceUri This property is required. string
Gets or sets the Uri of Gateway.
rcmServiceUri This property is required. string
Gets or sets the Uri of Rcm.
resourceGroup This property is required. string
Gets or sets the resource group.
resourceLocation This property is required. string
Gets or sets the resource location.
sourceGatewayServiceId This property is required. string
Gets or sets the gateway service Id of source.
sourceStorageContainerName This property is required. string
Gets or sets the source storage container name.
subscriptionId This property is required. string
Gets or sets the subscription.
targetGatewayServiceId This property is required. string
Gets or sets the gateway service Id of target.
targetStorageContainerName This property is required. string
Gets or sets the target storage container name.
vmwareFabricArmId This property is required. string
Gets or sets the ARM Id of the source VMware fabric.
vmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
storageAccountId string
Gets or sets the storage account Id.
storageAccountSasSecretName string
Gets or sets the Sas Secret of storage account.
asr_service_uri This property is required. str
Gets or sets the Uri of ASR.
az_stack_hci_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the target AzStackHCI fabric.
az_stack_hci_site_id This property is required. str
Gets or sets the ARM Id of the AzStackHCI site.
gateway_service_uri This property is required. str
Gets or sets the Uri of Gateway.
rcm_service_uri This property is required. str
Gets or sets the Uri of Rcm.
resource_group This property is required. str
Gets or sets the resource group.
resource_location This property is required. str
Gets or sets the resource location.
source_gateway_service_id This property is required. str
Gets or sets the gateway service Id of source.
source_storage_container_name This property is required. str
Gets or sets the source storage container name.
subscription_id This property is required. str
Gets or sets the subscription.
target_gateway_service_id This property is required. str
Gets or sets the gateway service Id of target.
target_storage_container_name This property is required. str
Gets or sets the target storage container name.
vmware_fabric_arm_id This property is required. str
Gets or sets the ARM Id of the source VMware fabric.
vmware_site_id This property is required. str
Gets or sets the ARM Id of the VMware site.
storage_account_id str
Gets or sets the storage account Id.
storage_account_sas_secret_name str
Gets or sets the Sas Secret of storage account.
asrServiceUri This property is required. String
Gets or sets the Uri of ASR.
azStackHciFabricArmId This property is required. String
Gets or sets the ARM Id of the target AzStackHCI fabric.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
gatewayServiceUri This property is required. String
Gets or sets the Uri of Gateway.
rcmServiceUri This property is required. String
Gets or sets the Uri of Rcm.
resourceGroup This property is required. String
Gets or sets the resource group.
resourceLocation This property is required. String
Gets or sets the resource location.
sourceGatewayServiceId This property is required. String
Gets or sets the gateway service Id of source.
sourceStorageContainerName This property is required. String
Gets or sets the source storage container name.
subscriptionId This property is required. String
Gets or sets the subscription.
targetGatewayServiceId This property is required. String
Gets or sets the gateway service Id of target.
targetStorageContainerName This property is required. String
Gets or sets the target storage container name.
vmwareFabricArmId This property is required. String
Gets or sets the ARM Id of the source VMware fabric.
vmwareSiteId This property is required. String
Gets or sets the ARM Id of the VMware site.
storageAccountId String
Gets or sets the storage account Id.
storageAccountSasSecretName String
Gets or sets the Sas Secret of storage account.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:datareplication:ReplicationExtension xvjffbiecsd /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationVaults/{vaultName}/replicationExtensions/{replicationExtensionName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi