1. Packages
  2. Azure Native
  3. API Docs
  4. datareplication
  5. Fabric
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.datareplication.Fabric

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 v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Fabric model.

Uses Azure REST API version 2021-02-16-preview. In version 2.x of the Azure Native provider, it used API version 2021-02-16-preview.

Other available API versions: 2024-09-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native datareplication [ApiVersion]. See the version guide for details.

Example Usage

Fabric_Create

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

return await Deployment.RunAsync(() => 
{
    var fabric = new AzureNative.DataReplication.Fabric("fabric", new()
    {
        FabricName = "wPR",
        Location = "tqygutlpob",
        Properties = new AzureNative.DataReplication.Inputs.FabricModelPropertiesArgs
        {
            CustomProperties = 
            {
                { "instanceType", "FabricModelCustomProperties" },
            },
        },
        ResourceGroupName = "rgrecoveryservicesdatareplication",
        Tags = 
        {
            { "key3917", "vgralu" },
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := datareplication.NewFabric(ctx, "fabric", &datareplication.FabricArgs{
			FabricName: pulumi.String("wPR"),
			Location:   pulumi.String("tqygutlpob"),
			Properties: &datareplication.FabricModelPropertiesArgs{
				CustomProperties: pulumi.Any{
					InstanceType: pulumi.String("FabricModelCustomProperties"),
				},
			},
			ResourceGroupName: pulumi.String("rgrecoveryservicesdatareplication"),
			Tags: pulumi.StringMap{
				"key3917": pulumi.String("vgralu"),
			},
		})
		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.Fabric;
import com.pulumi.azurenative.datareplication.FabricArgs;
import com.pulumi.azurenative.datareplication.inputs.FabricModelPropertiesArgs;
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 fabric = new Fabric("fabric", FabricArgs.builder()
            .fabricName("wPR")
            .location("tqygutlpob")
            .properties(FabricModelPropertiesArgs.builder()
                .customProperties(Map.of("instanceType", "FabricModelCustomProperties"))
                .build())
            .resourceGroupName("rgrecoveryservicesdatareplication")
            .tags(Map.of("key3917", "vgralu"))
            .build());

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

const fabric = new azure_native.datareplication.Fabric("fabric", {
    fabricName: "wPR",
    location: "tqygutlpob",
    properties: {
        customProperties: {
            instanceType: "FabricModelCustomProperties",
        },
    },
    resourceGroupName: "rgrecoveryservicesdatareplication",
    tags: {
        key3917: "vgralu",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

fabric = azure_native.datareplication.Fabric("fabric",
    fabric_name="wPR",
    location="tqygutlpob",
    properties={
        "custom_properties": {
            "instance_type": "FabricModelCustomProperties",
        },
    },
    resource_group_name="rgrecoveryservicesdatareplication",
    tags={
        "key3917": "vgralu",
    })
Copy
resources:
  fabric:
    type: azure-native:datareplication:Fabric
    properties:
      fabricName: wPR
      location: tqygutlpob
      properties:
        customProperties:
          instanceType: FabricModelCustomProperties
      resourceGroupName: rgrecoveryservicesdatareplication
      tags:
        key3917: vgralu
Copy

Create Fabric Resource

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

Constructor syntax

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

@overload
def Fabric(resource_name: str,
           opts: Optional[ResourceOptions] = None,
           properties: Optional[FabricModelPropertiesArgs] = None,
           resource_group_name: Optional[str] = None,
           fabric_name: Optional[str] = None,
           location: Optional[str] = None,
           tags: Optional[Mapping[str, str]] = None)
func NewFabric(ctx *Context, name string, args FabricArgs, opts ...ResourceOption) (*Fabric, error)
public Fabric(string name, FabricArgs args, CustomResourceOptions? opts = null)
public Fabric(String name, FabricArgs args)
public Fabric(String name, FabricArgs args, CustomResourceOptions options)
type: azure-native:datareplication:Fabric
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. FabricArgs
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. FabricArgs
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. FabricArgs
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. FabricArgs
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. FabricArgs
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 fabricResource = new AzureNative.DataReplication.Fabric("fabricResource", new()
{
    Properties = new AzureNative.DataReplication.Inputs.FabricModelPropertiesArgs
    {
        CustomProperties = new AzureNative.DataReplication.Inputs.AzStackHCIFabricModelCustomPropertiesArgs
        {
            AzStackHciSiteId = "string",
            Cluster = new AzureNative.DataReplication.Inputs.AzStackHCIClusterPropertiesArgs
            {
                ClusterName = "string",
                ResourceName = "string",
                StorageAccountName = "string",
                StorageContainers = new[]
                {
                    new AzureNative.DataReplication.Inputs.StorageContainerPropertiesArgs
                    {
                        ClusterSharedVolumePath = "string",
                        Name = "string",
                    },
                },
            },
            InstanceType = "AzStackHCI",
            MigrationSolutionId = "string",
        },
    },
    ResourceGroupName = "string",
    FabricName = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := datareplication.NewFabric(ctx, "fabricResource", &datareplication.FabricArgs{
	Properties: &datareplication.FabricModelPropertiesArgs{
		CustomProperties: datareplication.AzStackHCIFabricModelCustomProperties{
			AzStackHciSiteId: "string",
			Cluster: datareplication.AzStackHCIClusterProperties{
				ClusterName:        "string",
				ResourceName:       "string",
				StorageAccountName: "string",
				StorageContainers: []datareplication.StorageContainerProperties{
					{
						ClusterSharedVolumePath: "string",
						Name:                    "string",
					},
				},
			},
			InstanceType:        "AzStackHCI",
			MigrationSolutionId: "string",
		},
	},
	ResourceGroupName: pulumi.String("string"),
	FabricName:        pulumi.String("string"),
	Location:          pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var fabricResource = new Fabric("fabricResource", FabricArgs.builder()
    .properties(FabricModelPropertiesArgs.builder()
        .customProperties(AzStackHCIFabricModelCustomPropertiesArgs.builder()
            .azStackHciSiteId("string")
            .cluster(AzStackHCIClusterPropertiesArgs.builder()
                .clusterName("string")
                .resourceName("string")
                .storageAccountName("string")
                .storageContainers(StorageContainerPropertiesArgs.builder()
                    .clusterSharedVolumePath("string")
                    .name("string")
                    .build())
                .build())
            .instanceType("AzStackHCI")
            .migrationSolutionId("string")
            .build())
        .build())
    .resourceGroupName("string")
    .fabricName("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
fabric_resource = azure_native.datareplication.Fabric("fabricResource",
    properties={
        "custom_properties": {
            "az_stack_hci_site_id": "string",
            "cluster": {
                "cluster_name": "string",
                "resource_name": "string",
                "storage_account_name": "string",
                "storage_containers": [{
                    "cluster_shared_volume_path": "string",
                    "name": "string",
                }],
            },
            "instance_type": "AzStackHCI",
            "migration_solution_id": "string",
        },
    },
    resource_group_name="string",
    fabric_name="string",
    location="string",
    tags={
        "string": "string",
    })
Copy
const fabricResource = new azure_native.datareplication.Fabric("fabricResource", {
    properties: {
        customProperties: {
            azStackHciSiteId: "string",
            cluster: {
                clusterName: "string",
                resourceName: "string",
                storageAccountName: "string",
                storageContainers: [{
                    clusterSharedVolumePath: "string",
                    name: "string",
                }],
            },
            instanceType: "AzStackHCI",
            migrationSolutionId: "string",
        },
    },
    resourceGroupName: "string",
    fabricName: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:datareplication:Fabric
properties:
    fabricName: string
    location: string
    properties:
        customProperties:
            azStackHciSiteId: string
            cluster:
                clusterName: string
                resourceName: string
                storageAccountName: string
                storageContainers:
                    - clusterSharedVolumePath: string
                      name: string
            instanceType: AzStackHCI
            migrationSolutionId: string
    resourceGroupName: string
    tags:
        string: string
Copy

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

Properties This property is required. Pulumi.AzureNative.DataReplication.Inputs.FabricModelProperties
Fabric 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.
FabricName Changes to this property will trigger replacement. string
The fabric name.
Location Changes to this property will trigger replacement. string
Gets or sets the location of the fabric.
Tags Dictionary<string, string>
Gets or sets the resource tags.
Properties This property is required. FabricModelPropertiesArgs
Fabric 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.
FabricName Changes to this property will trigger replacement. string
The fabric name.
Location Changes to this property will trigger replacement. string
Gets or sets the location of the fabric.
Tags map[string]string
Gets or sets the resource tags.
properties This property is required. FabricModelProperties
Fabric 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.
fabricName Changes to this property will trigger replacement. String
The fabric name.
location Changes to this property will trigger replacement. String
Gets or sets the location of the fabric.
tags Map<String,String>
Gets or sets the resource tags.
properties This property is required. FabricModelProperties
Fabric 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.
fabricName Changes to this property will trigger replacement. string
The fabric name.
location Changes to this property will trigger replacement. string
Gets or sets the location of the fabric.
tags {[key: string]: string}
Gets or sets the resource tags.
properties This property is required. FabricModelPropertiesArgs
Fabric 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.
fabric_name Changes to this property will trigger replacement. str
The fabric name.
location Changes to this property will trigger replacement. str
Gets or sets the location of the fabric.
tags Mapping[str, str]
Gets or sets the resource tags.
properties This property is required. Property Map
Fabric 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.
fabricName Changes to this property will trigger replacement. String
The fabric name.
location Changes to this property will trigger replacement. String
Gets or sets the location of the fabric.
tags Map<String>
Gets or sets the resource tags.

Outputs

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

AzureApiVersion string
The Azure API version 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 Pulumi.AzureNative.DataReplication.Outputs.FabricModelResponseSystemData
Type string
Gets or sets the type of the resource.
AzureApiVersion string
The Azure API version 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 FabricModelResponseSystemData
Type string
Gets or sets the type of the resource.
azureApiVersion String
The Azure API version 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 FabricModelResponseSystemData
type String
Gets or sets the type of the resource.
azureApiVersion string
The Azure API version 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 FabricModelResponseSystemData
type string
Gets or sets the type of the resource.
azure_api_version str
The Azure API version 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 FabricModelResponseSystemData
type str
Gets or sets the type of the resource.
azureApiVersion String
The Azure API version 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

AzStackHCIClusterProperties
, AzStackHCIClusterPropertiesArgs

ClusterName This property is required. string
Gets or sets the AzStackHCICluster FQDN name.
ResourceName This property is required. string
Gets or sets the AzStackHCICluster resource name.
StorageAccountName This property is required. string
Gets or sets the Storage account name.
StorageContainers This property is required. List<Pulumi.AzureNative.DataReplication.Inputs.StorageContainerProperties>
Gets or sets the list of AzStackHCICluster Storage Container.
ClusterName This property is required. string
Gets or sets the AzStackHCICluster FQDN name.
ResourceName This property is required. string
Gets or sets the AzStackHCICluster resource name.
StorageAccountName This property is required. string
Gets or sets the Storage account name.
StorageContainers This property is required. []StorageContainerProperties
Gets or sets the list of AzStackHCICluster Storage Container.
clusterName This property is required. String
Gets or sets the AzStackHCICluster FQDN name.
resourceName This property is required. String
Gets or sets the AzStackHCICluster resource name.
storageAccountName This property is required. String
Gets or sets the Storage account name.
storageContainers This property is required. List<StorageContainerProperties>
Gets or sets the list of AzStackHCICluster Storage Container.
clusterName This property is required. string
Gets or sets the AzStackHCICluster FQDN name.
resourceName This property is required. string
Gets or sets the AzStackHCICluster resource name.
storageAccountName This property is required. string
Gets or sets the Storage account name.
storageContainers This property is required. StorageContainerProperties[]
Gets or sets the list of AzStackHCICluster Storage Container.
cluster_name This property is required. str
Gets or sets the AzStackHCICluster FQDN name.
resource_name This property is required. str
Gets or sets the AzStackHCICluster resource name.
storage_account_name This property is required. str
Gets or sets the Storage account name.
storage_containers This property is required. Sequence[StorageContainerProperties]
Gets or sets the list of AzStackHCICluster Storage Container.
clusterName This property is required. String
Gets or sets the AzStackHCICluster FQDN name.
resourceName This property is required. String
Gets or sets the AzStackHCICluster resource name.
storageAccountName This property is required. String
Gets or sets the Storage account name.
storageContainers This property is required. List<Property Map>
Gets or sets the list of AzStackHCICluster Storage Container.

AzStackHCIClusterPropertiesResponse
, AzStackHCIClusterPropertiesResponseArgs

ClusterName This property is required. string
Gets or sets the AzStackHCICluster FQDN name.
ResourceName This property is required. string
Gets or sets the AzStackHCICluster resource name.
StorageAccountName This property is required. string
Gets or sets the Storage account name.
StorageContainers This property is required. List<Pulumi.AzureNative.DataReplication.Inputs.StorageContainerPropertiesResponse>
Gets or sets the list of AzStackHCICluster Storage Container.
ClusterName This property is required. string
Gets or sets the AzStackHCICluster FQDN name.
ResourceName This property is required. string
Gets or sets the AzStackHCICluster resource name.
StorageAccountName This property is required. string
Gets or sets the Storage account name.
StorageContainers This property is required. []StorageContainerPropertiesResponse
Gets or sets the list of AzStackHCICluster Storage Container.
clusterName This property is required. String
Gets or sets the AzStackHCICluster FQDN name.
resourceName This property is required. String
Gets or sets the AzStackHCICluster resource name.
storageAccountName This property is required. String
Gets or sets the Storage account name.
storageContainers This property is required. List<StorageContainerPropertiesResponse>
Gets or sets the list of AzStackHCICluster Storage Container.
clusterName This property is required. string
Gets or sets the AzStackHCICluster FQDN name.
resourceName This property is required. string
Gets or sets the AzStackHCICluster resource name.
storageAccountName This property is required. string
Gets or sets the Storage account name.
storageContainers This property is required. StorageContainerPropertiesResponse[]
Gets or sets the list of AzStackHCICluster Storage Container.
cluster_name This property is required. str
Gets or sets the AzStackHCICluster FQDN name.
resource_name This property is required. str
Gets or sets the AzStackHCICluster resource name.
storage_account_name This property is required. str
Gets or sets the Storage account name.
storage_containers This property is required. Sequence[StorageContainerPropertiesResponse]
Gets or sets the list of AzStackHCICluster Storage Container.
clusterName This property is required. String
Gets or sets the AzStackHCICluster FQDN name.
resourceName This property is required. String
Gets or sets the AzStackHCICluster resource name.
storageAccountName This property is required. String
Gets or sets the Storage account name.
storageContainers This property is required. List<Property Map>
Gets or sets the list of AzStackHCICluster Storage Container.

AzStackHCIFabricModelCustomProperties
, AzStackHCIFabricModelCustomPropertiesArgs

AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
Cluster This property is required. Pulumi.AzureNative.DataReplication.Inputs.AzStackHCIClusterProperties
AzStackHCI cluster properties.
MigrationSolutionId This property is required. string
Gets or sets the Migration solution ARM Id.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
Cluster This property is required. AzStackHCIClusterProperties
AzStackHCI cluster properties.
MigrationSolutionId This property is required. string
Gets or sets the Migration solution ARM Id.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. AzStackHCIClusterProperties
AzStackHCI cluster properties.
migrationSolutionId This property is required. String
Gets or sets the Migration solution ARM Id.
azStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. AzStackHCIClusterProperties
AzStackHCI cluster properties.
migrationSolutionId This property is required. string
Gets or sets the Migration solution ARM Id.
az_stack_hci_site_id This property is required. str
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. AzStackHCIClusterProperties
AzStackHCI cluster properties.
migration_solution_id This property is required. str
Gets or sets the Migration solution ARM Id.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. Property Map
AzStackHCI cluster properties.
migrationSolutionId This property is required. String
Gets or sets the Migration solution ARM Id.

AzStackHCIFabricModelCustomPropertiesResponse
, AzStackHCIFabricModelCustomPropertiesResponseArgs

ApplianceName This property is required. List<string>
Gets or sets the Appliance name.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
Cluster This property is required. Pulumi.AzureNative.DataReplication.Inputs.AzStackHCIClusterPropertiesResponse
AzStackHCI cluster properties.
FabricContainerId This property is required. string
Gets or sets the fabric container Id.
FabricResourceId This property is required. string
Gets or sets the fabric resource Id.
MigrationHubUri This property is required. string
Gets or sets the migration hub Uri.
MigrationSolutionId This property is required. string
Gets or sets the Migration solution ARM Id.
ApplianceName This property is required. []string
Gets or sets the Appliance name.
AzStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
Cluster This property is required. AzStackHCIClusterPropertiesResponse
AzStackHCI cluster properties.
FabricContainerId This property is required. string
Gets or sets the fabric container Id.
FabricResourceId This property is required. string
Gets or sets the fabric resource Id.
MigrationHubUri This property is required. string
Gets or sets the migration hub Uri.
MigrationSolutionId This property is required. string
Gets or sets the Migration solution ARM Id.
applianceName This property is required. List<String>
Gets or sets the Appliance name.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. AzStackHCIClusterPropertiesResponse
AzStackHCI cluster properties.
fabricContainerId This property is required. String
Gets or sets the fabric container Id.
fabricResourceId This property is required. String
Gets or sets the fabric resource Id.
migrationHubUri This property is required. String
Gets or sets the migration hub Uri.
migrationSolutionId This property is required. String
Gets or sets the Migration solution ARM Id.
applianceName This property is required. string[]
Gets or sets the Appliance name.
azStackHciSiteId This property is required. string
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. AzStackHCIClusterPropertiesResponse
AzStackHCI cluster properties.
fabricContainerId This property is required. string
Gets or sets the fabric container Id.
fabricResourceId This property is required. string
Gets or sets the fabric resource Id.
migrationHubUri This property is required. string
Gets or sets the migration hub Uri.
migrationSolutionId This property is required. string
Gets or sets the Migration solution ARM Id.
appliance_name This property is required. Sequence[str]
Gets or sets the Appliance name.
az_stack_hci_site_id This property is required. str
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. AzStackHCIClusterPropertiesResponse
AzStackHCI cluster properties.
fabric_container_id This property is required. str
Gets or sets the fabric container Id.
fabric_resource_id This property is required. str
Gets or sets the fabric resource Id.
migration_hub_uri This property is required. str
Gets or sets the migration hub Uri.
migration_solution_id This property is required. str
Gets or sets the Migration solution ARM Id.
applianceName This property is required. List<String>
Gets or sets the Appliance name.
azStackHciSiteId This property is required. String
Gets or sets the ARM Id of the AzStackHCI site.
cluster This property is required. Property Map
AzStackHCI cluster properties.
fabricContainerId This property is required. String
Gets or sets the fabric container Id.
fabricResourceId This property is required. String
Gets or sets the fabric resource Id.
migrationHubUri This property is required. String
Gets or sets the migration hub Uri.
migrationSolutionId This property is required. String
Gets or sets the Migration solution ARM Id.

FabricModelProperties
, FabricModelPropertiesArgs

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

FabricModelPropertiesResponse
, FabricModelPropertiesResponseArgs

CustomProperties This property is required. Pulumi.AzureNative.DataReplication.Inputs.AzStackHCIFabricModelCustomPropertiesResponse | Pulumi.AzureNative.DataReplication.Inputs.HyperVMigrateFabricModelCustomPropertiesResponse | Pulumi.AzureNative.DataReplication.Inputs.VMwareMigrateFabricModelCustomPropertiesResponse
Fabric model custom properties.
Health This property is required. string
Gets or sets the fabric health.
HealthErrors This property is required. List<Pulumi.AzureNative.DataReplication.Inputs.HealthErrorModelResponse>
Gets or sets the list of health errors.
ProvisioningState This property is required. string
Gets or sets the provisioning state of the fabric.
ServiceEndpoint This property is required. string
Gets or sets the service endpoint.
ServiceResourceId This property is required. string
Gets or sets the service resource Id.
CustomProperties This property is required. AzStackHCIFabricModelCustomPropertiesResponse | HyperVMigrateFabricModelCustomPropertiesResponse | VMwareMigrateFabricModelCustomPropertiesResponse
Fabric model custom properties.
Health This property is required. string
Gets or sets the fabric health.
HealthErrors This property is required. []HealthErrorModelResponse
Gets or sets the list of health errors.
ProvisioningState This property is required. string
Gets or sets the provisioning state of the fabric.
ServiceEndpoint This property is required. string
Gets or sets the service endpoint.
ServiceResourceId This property is required. string
Gets or sets the service resource Id.
customProperties This property is required. AzStackHCIFabricModelCustomPropertiesResponse | HyperVMigrateFabricModelCustomPropertiesResponse | VMwareMigrateFabricModelCustomPropertiesResponse
Fabric model custom properties.
health This property is required. String
Gets or sets the fabric health.
healthErrors This property is required. List<HealthErrorModelResponse>
Gets or sets the list of health errors.
provisioningState This property is required. String
Gets or sets the provisioning state of the fabric.
serviceEndpoint This property is required. String
Gets or sets the service endpoint.
serviceResourceId This property is required. String
Gets or sets the service resource Id.
customProperties This property is required. AzStackHCIFabricModelCustomPropertiesResponse | HyperVMigrateFabricModelCustomPropertiesResponse | VMwareMigrateFabricModelCustomPropertiesResponse
Fabric model custom properties.
health This property is required. string
Gets or sets the fabric health.
healthErrors This property is required. HealthErrorModelResponse[]
Gets or sets the list of health errors.
provisioningState This property is required. string
Gets or sets the provisioning state of the fabric.
serviceEndpoint This property is required. string
Gets or sets the service endpoint.
serviceResourceId This property is required. string
Gets or sets the service resource Id.
custom_properties This property is required. AzStackHCIFabricModelCustomPropertiesResponse | HyperVMigrateFabricModelCustomPropertiesResponse | VMwareMigrateFabricModelCustomPropertiesResponse
Fabric model custom properties.
health This property is required. str
Gets or sets the fabric health.
health_errors This property is required. Sequence[HealthErrorModelResponse]
Gets or sets the list of health errors.
provisioning_state This property is required. str
Gets or sets the provisioning state of the fabric.
service_endpoint This property is required. str
Gets or sets the service endpoint.
service_resource_id This property is required. str
Gets or sets the service resource Id.
customProperties This property is required. Property Map | Property Map | Property Map
Fabric model custom properties.
health This property is required. String
Gets or sets the fabric health.
healthErrors This property is required. List<Property Map>
Gets or sets the list of health errors.
provisioningState This property is required. String
Gets or sets the provisioning state of the fabric.
serviceEndpoint This property is required. String
Gets or sets the service endpoint.
serviceResourceId This property is required. String
Gets or sets the service resource Id.

FabricModelResponseSystemData
, FabricModelResponseSystemDataArgs

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.

HealthErrorModelResponse
, HealthErrorModelResponseArgs

Category This property is required. string
Gets or sets the error category.
Causes This property is required. string
Gets or sets possible causes of the error.
Code This property is required. string
Gets or sets the error code.
CreationTime This property is required. string
Gets or sets the error creation time.
HealthCategory This property is required. string
Gets or sets the health category.
IsCustomerResolvable This property is required. bool
Gets or sets a value indicating whether the error is customer resolvable.
Message This property is required. string
Gets or sets the error message.
Recommendation This property is required. string
Gets or sets recommended action to resolve the error.
Severity This property is required. string
Gets or sets the error severity.
Source This property is required. string
Gets or sets the error source.
Summary This property is required. string
Gets or sets the error summary.
AffectedResourceCorrelationIds List<string>
Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
AffectedResourceType string
Gets or sets the type of affected resource type.
ChildErrors List<Pulumi.AzureNative.DataReplication.Inputs.InnerHealthErrorModelResponse>
Gets or sets a list of child health errors associated with this error.
Category This property is required. string
Gets or sets the error category.
Causes This property is required. string
Gets or sets possible causes of the error.
Code This property is required. string
Gets or sets the error code.
CreationTime This property is required. string
Gets or sets the error creation time.
HealthCategory This property is required. string
Gets or sets the health category.
IsCustomerResolvable This property is required. bool
Gets or sets a value indicating whether the error is customer resolvable.
Message This property is required. string
Gets or sets the error message.
Recommendation This property is required. string
Gets or sets recommended action to resolve the error.
Severity This property is required. string
Gets or sets the error severity.
Source This property is required. string
Gets or sets the error source.
Summary This property is required. string
Gets or sets the error summary.
AffectedResourceCorrelationIds []string
Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
AffectedResourceType string
Gets or sets the type of affected resource type.
ChildErrors []InnerHealthErrorModelResponse
Gets or sets a list of child health errors associated with this error.
category This property is required. String
Gets or sets the error category.
causes This property is required. String
Gets or sets possible causes of the error.
code This property is required. String
Gets or sets the error code.
creationTime This property is required. String
Gets or sets the error creation time.
healthCategory This property is required. String
Gets or sets the health category.
isCustomerResolvable This property is required. Boolean
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. String
Gets or sets the error message.
recommendation This property is required. String
Gets or sets recommended action to resolve the error.
severity This property is required. String
Gets or sets the error severity.
source This property is required. String
Gets or sets the error source.
summary This property is required. String
Gets or sets the error summary.
affectedResourceCorrelationIds List<String>
Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
affectedResourceType String
Gets or sets the type of affected resource type.
childErrors List<InnerHealthErrorModelResponse>
Gets or sets a list of child health errors associated with this error.
category This property is required. string
Gets or sets the error category.
causes This property is required. string
Gets or sets possible causes of the error.
code This property is required. string
Gets or sets the error code.
creationTime This property is required. string
Gets or sets the error creation time.
healthCategory This property is required. string
Gets or sets the health category.
isCustomerResolvable This property is required. boolean
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. string
Gets or sets the error message.
recommendation This property is required. string
Gets or sets recommended action to resolve the error.
severity This property is required. string
Gets or sets the error severity.
source This property is required. string
Gets or sets the error source.
summary This property is required. string
Gets or sets the error summary.
affectedResourceCorrelationIds string[]
Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
affectedResourceType string
Gets or sets the type of affected resource type.
childErrors InnerHealthErrorModelResponse[]
Gets or sets a list of child health errors associated with this error.
category This property is required. str
Gets or sets the error category.
causes This property is required. str
Gets or sets possible causes of the error.
code This property is required. str
Gets or sets the error code.
creation_time This property is required. str
Gets or sets the error creation time.
health_category This property is required. str
Gets or sets the health category.
is_customer_resolvable This property is required. bool
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. str
Gets or sets the error message.
recommendation This property is required. str
Gets or sets recommended action to resolve the error.
severity This property is required. str
Gets or sets the error severity.
source This property is required. str
Gets or sets the error source.
summary This property is required. str
Gets or sets the error summary.
affected_resource_correlation_ids Sequence[str]
Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
affected_resource_type str
Gets or sets the type of affected resource type.
child_errors Sequence[InnerHealthErrorModelResponse]
Gets or sets a list of child health errors associated with this error.
category This property is required. String
Gets or sets the error category.
causes This property is required. String
Gets or sets possible causes of the error.
code This property is required. String
Gets or sets the error code.
creationTime This property is required. String
Gets or sets the error creation time.
healthCategory This property is required. String
Gets or sets the health category.
isCustomerResolvable This property is required. Boolean
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. String
Gets or sets the error message.
recommendation This property is required. String
Gets or sets recommended action to resolve the error.
severity This property is required. String
Gets or sets the error severity.
source This property is required. String
Gets or sets the error source.
summary This property is required. String
Gets or sets the error summary.
affectedResourceCorrelationIds List<String>
Gets or sets the list of affected resource correlation Ids. This can be used to uniquely identify the count of items affected by a specific category and severity as well as count of item affected by an specific issue.
affectedResourceType String
Gets or sets the type of affected resource type.
childErrors List<Property Map>
Gets or sets a list of child health errors associated with this error.

HyperVMigrateFabricModelCustomProperties
, HyperVMigrateFabricModelCustomPropertiesArgs

HyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
MigrationSolutionId This property is required. string
Gets or sets the migration solution ARM Id.
HyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
MigrationSolutionId This property is required. string
Gets or sets the migration solution ARM Id.
hyperVSiteId This property is required. String
Gets or sets the ARM Id of the HyperV site.
migrationSolutionId This property is required. String
Gets or sets the migration solution ARM Id.
hyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
migrationSolutionId This property is required. string
Gets or sets the migration solution ARM Id.
hyper_v_site_id This property is required. str
Gets or sets the ARM Id of the HyperV site.
migration_solution_id This property is required. str
Gets or sets the migration solution ARM Id.
hyperVSiteId This property is required. String
Gets or sets the ARM Id of the HyperV site.
migrationSolutionId This property is required. String
Gets or sets the migration solution ARM Id.

HyperVMigrateFabricModelCustomPropertiesResponse
, HyperVMigrateFabricModelCustomPropertiesResponseArgs

FabricContainerId This property is required. string
Gets or sets the fabric container Id.
FabricResourceId This property is required. string
Gets or sets the fabric resource Id.
HyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
MigrationHubUri This property is required. string
Gets or sets the migration hub Uri.
MigrationSolutionId This property is required. string
Gets or sets the migration solution ARM Id.
FabricContainerId This property is required. string
Gets or sets the fabric container Id.
FabricResourceId This property is required. string
Gets or sets the fabric resource Id.
HyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
MigrationHubUri This property is required. string
Gets or sets the migration hub Uri.
MigrationSolutionId This property is required. string
Gets or sets the migration solution ARM Id.
fabricContainerId This property is required. String
Gets or sets the fabric container Id.
fabricResourceId This property is required. String
Gets or sets the fabric resource Id.
hyperVSiteId This property is required. String
Gets or sets the ARM Id of the HyperV site.
migrationHubUri This property is required. String
Gets or sets the migration hub Uri.
migrationSolutionId This property is required. String
Gets or sets the migration solution ARM Id.
fabricContainerId This property is required. string
Gets or sets the fabric container Id.
fabricResourceId This property is required. string
Gets or sets the fabric resource Id.
hyperVSiteId This property is required. string
Gets or sets the ARM Id of the HyperV site.
migrationHubUri This property is required. string
Gets or sets the migration hub Uri.
migrationSolutionId This property is required. string
Gets or sets the migration solution ARM Id.
fabric_container_id This property is required. str
Gets or sets the fabric container Id.
fabric_resource_id This property is required. str
Gets or sets the fabric resource Id.
hyper_v_site_id This property is required. str
Gets or sets the ARM Id of the HyperV site.
migration_hub_uri This property is required. str
Gets or sets the migration hub Uri.
migration_solution_id This property is required. str
Gets or sets the migration solution ARM Id.
fabricContainerId This property is required. String
Gets or sets the fabric container Id.
fabricResourceId This property is required. String
Gets or sets the fabric resource Id.
hyperVSiteId This property is required. String
Gets or sets the ARM Id of the HyperV site.
migrationHubUri This property is required. String
Gets or sets the migration hub Uri.
migrationSolutionId This property is required. String
Gets or sets the migration solution ARM Id.

InnerHealthErrorModelResponse
, InnerHealthErrorModelResponseArgs

Category This property is required. string
Gets or sets the error category.
Causes This property is required. string
Gets or sets possible causes of the error.
Code This property is required. string
Gets or sets the error code.
CreationTime This property is required. string
Gets or sets the error creation time.
HealthCategory This property is required. string
Gets or sets the health category.
IsCustomerResolvable This property is required. bool
Gets or sets a value indicating whether the error is customer resolvable.
Message This property is required. string
Gets or sets the error message.
Recommendation This property is required. string
Gets or sets recommended action to resolve the error.
Severity This property is required. string
Gets or sets the error severity.
Source This property is required. string
Gets or sets the error source.
Summary This property is required. string
Gets or sets the error summary.
Category This property is required. string
Gets or sets the error category.
Causes This property is required. string
Gets or sets possible causes of the error.
Code This property is required. string
Gets or sets the error code.
CreationTime This property is required. string
Gets or sets the error creation time.
HealthCategory This property is required. string
Gets or sets the health category.
IsCustomerResolvable This property is required. bool
Gets or sets a value indicating whether the error is customer resolvable.
Message This property is required. string
Gets or sets the error message.
Recommendation This property is required. string
Gets or sets recommended action to resolve the error.
Severity This property is required. string
Gets or sets the error severity.
Source This property is required. string
Gets or sets the error source.
Summary This property is required. string
Gets or sets the error summary.
category This property is required. String
Gets or sets the error category.
causes This property is required. String
Gets or sets possible causes of the error.
code This property is required. String
Gets or sets the error code.
creationTime This property is required. String
Gets or sets the error creation time.
healthCategory This property is required. String
Gets or sets the health category.
isCustomerResolvable This property is required. Boolean
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. String
Gets or sets the error message.
recommendation This property is required. String
Gets or sets recommended action to resolve the error.
severity This property is required. String
Gets or sets the error severity.
source This property is required. String
Gets or sets the error source.
summary This property is required. String
Gets or sets the error summary.
category This property is required. string
Gets or sets the error category.
causes This property is required. string
Gets or sets possible causes of the error.
code This property is required. string
Gets or sets the error code.
creationTime This property is required. string
Gets or sets the error creation time.
healthCategory This property is required. string
Gets or sets the health category.
isCustomerResolvable This property is required. boolean
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. string
Gets or sets the error message.
recommendation This property is required. string
Gets or sets recommended action to resolve the error.
severity This property is required. string
Gets or sets the error severity.
source This property is required. string
Gets or sets the error source.
summary This property is required. string
Gets or sets the error summary.
category This property is required. str
Gets or sets the error category.
causes This property is required. str
Gets or sets possible causes of the error.
code This property is required. str
Gets or sets the error code.
creation_time This property is required. str
Gets or sets the error creation time.
health_category This property is required. str
Gets or sets the health category.
is_customer_resolvable This property is required. bool
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. str
Gets or sets the error message.
recommendation This property is required. str
Gets or sets recommended action to resolve the error.
severity This property is required. str
Gets or sets the error severity.
source This property is required. str
Gets or sets the error source.
summary This property is required. str
Gets or sets the error summary.
category This property is required. String
Gets or sets the error category.
causes This property is required. String
Gets or sets possible causes of the error.
code This property is required. String
Gets or sets the error code.
creationTime This property is required. String
Gets or sets the error creation time.
healthCategory This property is required. String
Gets or sets the health category.
isCustomerResolvable This property is required. Boolean
Gets or sets a value indicating whether the error is customer resolvable.
message This property is required. String
Gets or sets the error message.
recommendation This property is required. String
Gets or sets recommended action to resolve the error.
severity This property is required. String
Gets or sets the error severity.
source This property is required. String
Gets or sets the error source.
summary This property is required. String
Gets or sets the error summary.

StorageContainerProperties
, StorageContainerPropertiesArgs

ClusterSharedVolumePath This property is required. string
Gets or sets the ClusterSharedVolumePath.
Name This property is required. string
Gets or sets the Name.
ClusterSharedVolumePath This property is required. string
Gets or sets the ClusterSharedVolumePath.
Name This property is required. string
Gets or sets the Name.
clusterSharedVolumePath This property is required. String
Gets or sets the ClusterSharedVolumePath.
name This property is required. String
Gets or sets the Name.
clusterSharedVolumePath This property is required. string
Gets or sets the ClusterSharedVolumePath.
name This property is required. string
Gets or sets the Name.
cluster_shared_volume_path This property is required. str
Gets or sets the ClusterSharedVolumePath.
name This property is required. str
Gets or sets the Name.
clusterSharedVolumePath This property is required. String
Gets or sets the ClusterSharedVolumePath.
name This property is required. String
Gets or sets the Name.

StorageContainerPropertiesResponse
, StorageContainerPropertiesResponseArgs

ClusterSharedVolumePath This property is required. string
Gets or sets the ClusterSharedVolumePath.
Name This property is required. string
Gets or sets the Name.
ClusterSharedVolumePath This property is required. string
Gets or sets the ClusterSharedVolumePath.
Name This property is required. string
Gets or sets the Name.
clusterSharedVolumePath This property is required. String
Gets or sets the ClusterSharedVolumePath.
name This property is required. String
Gets or sets the Name.
clusterSharedVolumePath This property is required. string
Gets or sets the ClusterSharedVolumePath.
name This property is required. string
Gets or sets the Name.
cluster_shared_volume_path This property is required. str
Gets or sets the ClusterSharedVolumePath.
name This property is required. str
Gets or sets the Name.
clusterSharedVolumePath This property is required. String
Gets or sets the ClusterSharedVolumePath.
name This property is required. String
Gets or sets the Name.

VMwareMigrateFabricModelCustomProperties
, VMwareMigrateFabricModelCustomPropertiesArgs

MigrationSolutionId This property is required. string
Gets or sets the ARM Id of the migration solution.
VmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
MigrationSolutionId This property is required. string
Gets or sets the ARM Id of the migration solution.
VmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
migrationSolutionId This property is required. String
Gets or sets the ARM Id of the migration solution.
vmwareSiteId This property is required. String
Gets or sets the ARM Id of the VMware site.
migrationSolutionId This property is required. string
Gets or sets the ARM Id of the migration solution.
vmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
migration_solution_id This property is required. str
Gets or sets the ARM Id of the migration solution.
vmware_site_id This property is required. str
Gets or sets the ARM Id of the VMware site.
migrationSolutionId This property is required. String
Gets or sets the ARM Id of the migration solution.
vmwareSiteId This property is required. String
Gets or sets the ARM Id of the VMware site.

VMwareMigrateFabricModelCustomPropertiesResponse
, VMwareMigrateFabricModelCustomPropertiesResponseArgs

MigrationSolutionId This property is required. string
Gets or sets the ARM Id of the migration solution.
VmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
MigrationSolutionId This property is required. string
Gets or sets the ARM Id of the migration solution.
VmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
migrationSolutionId This property is required. String
Gets or sets the ARM Id of the migration solution.
vmwareSiteId This property is required. String
Gets or sets the ARM Id of the VMware site.
migrationSolutionId This property is required. string
Gets or sets the ARM Id of the migration solution.
vmwareSiteId This property is required. string
Gets or sets the ARM Id of the VMware site.
migration_solution_id This property is required. str
Gets or sets the ARM Id of the migration solution.
vmware_site_id This property is required. str
Gets or sets the ARM Id of the VMware site.
migrationSolutionId This property is required. String
Gets or sets the ARM Id of the migration solution.
vmwareSiteId This property is required. String
Gets or sets the ARM Id of the VMware site.

Import

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

$ pulumi import azure-native:datareplication:Fabric rhojydcwjgvgexpdwswjib /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataReplication/replicationFabrics/{fabricName} 
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 v3.2.0 published on Monday, Apr 14, 2025 by Pulumi