1. Packages
  2. Azure Native
  3. API Docs
  4. avs
  5. Datastore
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.avs.Datastore

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

A datastore resource

Uses Azure REST API version 2023-09-01. In version 2.x of the Azure Native provider, it used API version 2022-05-01.

Other available API versions: 2022-05-01, 2023-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native avs [ApiVersion]. See the version guide for details.

Example Usage

Datastores_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var datastore = new AzureNative.AVS.Datastore("datastore", new()
    {
        ClusterName = "cluster1",
        DatastoreName = "datastore1",
        NetAppVolume = new AzureNative.AVS.Inputs.NetAppVolumeArgs
        {
            Id = "/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/ResourceGroup1/providers/Microsoft.NetApp/netAppAccounts/NetAppAccount1/capacityPools/CapacityPool1/volumes/NFSVol1",
        },
        PrivateCloudName = "cloud1",
        ResourceGroupName = "group1",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := avs.NewDatastore(ctx, "datastore", &avs.DatastoreArgs{
			ClusterName:   pulumi.String("cluster1"),
			DatastoreName: pulumi.String("datastore1"),
			NetAppVolume: &avs.NetAppVolumeArgs{
				Id: pulumi.String("/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/ResourceGroup1/providers/Microsoft.NetApp/netAppAccounts/NetAppAccount1/capacityPools/CapacityPool1/volumes/NFSVol1"),
			},
			PrivateCloudName:  pulumi.String("cloud1"),
			ResourceGroupName: pulumi.String("group1"),
		})
		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.avs.Datastore;
import com.pulumi.azurenative.avs.DatastoreArgs;
import com.pulumi.azurenative.avs.inputs.NetAppVolumeArgs;
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 datastore = new Datastore("datastore", DatastoreArgs.builder()
            .clusterName("cluster1")
            .datastoreName("datastore1")
            .netAppVolume(NetAppVolumeArgs.builder()
                .id("/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/ResourceGroup1/providers/Microsoft.NetApp/netAppAccounts/NetAppAccount1/capacityPools/CapacityPool1/volumes/NFSVol1")
                .build())
            .privateCloudName("cloud1")
            .resourceGroupName("group1")
            .build());

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

const datastore = new azure_native.avs.Datastore("datastore", {
    clusterName: "cluster1",
    datastoreName: "datastore1",
    netAppVolume: {
        id: "/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/ResourceGroup1/providers/Microsoft.NetApp/netAppAccounts/NetAppAccount1/capacityPools/CapacityPool1/volumes/NFSVol1",
    },
    privateCloudName: "cloud1",
    resourceGroupName: "group1",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

datastore = azure_native.avs.Datastore("datastore",
    cluster_name="cluster1",
    datastore_name="datastore1",
    net_app_volume={
        "id": "/subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/ResourceGroup1/providers/Microsoft.NetApp/netAppAccounts/NetAppAccount1/capacityPools/CapacityPool1/volumes/NFSVol1",
    },
    private_cloud_name="cloud1",
    resource_group_name="group1")
Copy
resources:
  datastore:
    type: azure-native:avs:Datastore
    properties:
      clusterName: cluster1
      datastoreName: datastore1
      netAppVolume:
        id: /subscriptions/11111111-1111-1111-1111-111111111111/resourceGroups/ResourceGroup1/providers/Microsoft.NetApp/netAppAccounts/NetAppAccount1/capacityPools/CapacityPool1/volumes/NFSVol1
      privateCloudName: cloud1
      resourceGroupName: group1
Copy

Create Datastore Resource

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

Constructor syntax

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

@overload
def Datastore(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              cluster_name: Optional[str] = None,
              private_cloud_name: Optional[str] = None,
              resource_group_name: Optional[str] = None,
              datastore_name: Optional[str] = None,
              disk_pool_volume: Optional[DiskPoolVolumeArgs] = None,
              elastic_san_volume: Optional[ElasticSanVolumeArgs] = None,
              net_app_volume: Optional[NetAppVolumeArgs] = None)
func NewDatastore(ctx *Context, name string, args DatastoreArgs, opts ...ResourceOption) (*Datastore, error)
public Datastore(string name, DatastoreArgs args, CustomResourceOptions? opts = null)
public Datastore(String name, DatastoreArgs args)
public Datastore(String name, DatastoreArgs args, CustomResourceOptions options)
type: azure-native:avs:Datastore
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. DatastoreArgs
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. DatastoreArgs
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. DatastoreArgs
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. DatastoreArgs
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. DatastoreArgs
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 datastoreResource = new AzureNative.AVS.Datastore("datastoreResource", new()
{
    ClusterName = "string",
    PrivateCloudName = "string",
    ResourceGroupName = "string",
    DatastoreName = "string",
    DiskPoolVolume = new AzureNative.AVS.Inputs.DiskPoolVolumeArgs
    {
        LunName = "string",
        TargetId = "string",
        MountOption = "string",
    },
    ElasticSanVolume = new AzureNative.AVS.Inputs.ElasticSanVolumeArgs
    {
        TargetId = "string",
    },
    NetAppVolume = new AzureNative.AVS.Inputs.NetAppVolumeArgs
    {
        Id = "string",
    },
});
Copy
example, err := avs.NewDatastore(ctx, "datastoreResource", &avs.DatastoreArgs{
	ClusterName:       pulumi.String("string"),
	PrivateCloudName:  pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	DatastoreName:     pulumi.String("string"),
	DiskPoolVolume: &avs.DiskPoolVolumeArgs{
		LunName:     pulumi.String("string"),
		TargetId:    pulumi.String("string"),
		MountOption: pulumi.String("string"),
	},
	ElasticSanVolume: &avs.ElasticSanVolumeArgs{
		TargetId: pulumi.String("string"),
	},
	NetAppVolume: &avs.NetAppVolumeArgs{
		Id: pulumi.String("string"),
	},
})
Copy
var datastoreResource = new Datastore("datastoreResource", DatastoreArgs.builder()
    .clusterName("string")
    .privateCloudName("string")
    .resourceGroupName("string")
    .datastoreName("string")
    .diskPoolVolume(DiskPoolVolumeArgs.builder()
        .lunName("string")
        .targetId("string")
        .mountOption("string")
        .build())
    .elasticSanVolume(ElasticSanVolumeArgs.builder()
        .targetId("string")
        .build())
    .netAppVolume(NetAppVolumeArgs.builder()
        .id("string")
        .build())
    .build());
Copy
datastore_resource = azure_native.avs.Datastore("datastoreResource",
    cluster_name="string",
    private_cloud_name="string",
    resource_group_name="string",
    datastore_name="string",
    disk_pool_volume={
        "lun_name": "string",
        "target_id": "string",
        "mount_option": "string",
    },
    elastic_san_volume={
        "target_id": "string",
    },
    net_app_volume={
        "id": "string",
    })
Copy
const datastoreResource = new azure_native.avs.Datastore("datastoreResource", {
    clusterName: "string",
    privateCloudName: "string",
    resourceGroupName: "string",
    datastoreName: "string",
    diskPoolVolume: {
        lunName: "string",
        targetId: "string",
        mountOption: "string",
    },
    elasticSanVolume: {
        targetId: "string",
    },
    netAppVolume: {
        id: "string",
    },
});
Copy
type: azure-native:avs:Datastore
properties:
    clusterName: string
    datastoreName: string
    diskPoolVolume:
        lunName: string
        mountOption: string
        targetId: string
    elasticSanVolume:
        targetId: string
    netAppVolume:
        id: string
    privateCloudName: string
    resourceGroupName: string
Copy

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

ClusterName
This property is required.
Changes to this property will trigger replacement.
string
Name of the cluster
PrivateCloudName
This property is required.
Changes to this property will trigger replacement.
string
Name of the private cloud
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DatastoreName Changes to this property will trigger replacement. string
Name of the datastore
DiskPoolVolume Pulumi.AzureNative.AVS.Inputs.DiskPoolVolume
An iSCSI volume
ElasticSanVolume Pulumi.AzureNative.AVS.Inputs.ElasticSanVolume
An Elastic SAN volume
NetAppVolume Pulumi.AzureNative.AVS.Inputs.NetAppVolume
An Azure NetApp Files volume
ClusterName
This property is required.
Changes to this property will trigger replacement.
string
Name of the cluster
PrivateCloudName
This property is required.
Changes to this property will trigger replacement.
string
Name of the private cloud
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DatastoreName Changes to this property will trigger replacement. string
Name of the datastore
DiskPoolVolume DiskPoolVolumeArgs
An iSCSI volume
ElasticSanVolume ElasticSanVolumeArgs
An Elastic SAN volume
NetAppVolume NetAppVolumeArgs
An Azure NetApp Files volume
clusterName
This property is required.
Changes to this property will trigger replacement.
String
Name of the cluster
privateCloudName
This property is required.
Changes to this property will trigger replacement.
String
Name of the private cloud
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
datastoreName Changes to this property will trigger replacement. String
Name of the datastore
diskPoolVolume DiskPoolVolume
An iSCSI volume
elasticSanVolume ElasticSanVolume
An Elastic SAN volume
netAppVolume NetAppVolume
An Azure NetApp Files volume
clusterName
This property is required.
Changes to this property will trigger replacement.
string
Name of the cluster
privateCloudName
This property is required.
Changes to this property will trigger replacement.
string
Name of the private cloud
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
datastoreName Changes to this property will trigger replacement. string
Name of the datastore
diskPoolVolume DiskPoolVolume
An iSCSI volume
elasticSanVolume ElasticSanVolume
An Elastic SAN volume
netAppVolume NetAppVolume
An Azure NetApp Files volume
cluster_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the cluster
private_cloud_name
This property is required.
Changes to this property will trigger replacement.
str
Name of the private cloud
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.
datastore_name Changes to this property will trigger replacement. str
Name of the datastore
disk_pool_volume DiskPoolVolumeArgs
An iSCSI volume
elastic_san_volume ElasticSanVolumeArgs
An Elastic SAN volume
net_app_volume NetAppVolumeArgs
An Azure NetApp Files volume
clusterName
This property is required.
Changes to this property will trigger replacement.
String
Name of the cluster
privateCloudName
This property is required.
Changes to this property will trigger replacement.
String
Name of the private cloud
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
datastoreName Changes to this property will trigger replacement. String
Name of the datastore
diskPoolVolume Property Map
An iSCSI volume
elasticSanVolume Property Map
An Elastic SAN volume
netAppVolume Property Map
An Azure NetApp Files volume

Outputs

All input properties are implicitly available as output properties. Additionally, the Datastore 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
The name of the resource
ProvisioningState string
The state of the datastore provisioning
Status string
The operational status of the datastore
SystemData Pulumi.AzureNative.AVS.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The state of the datastore provisioning
Status string
The operational status of the datastore
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The state of the datastore provisioning
status String
The operational status of the datastore
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The state of the datastore provisioning
status string
The operational status of the datastore
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The state of the datastore provisioning
status str
The operational status of the datastore
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The state of the datastore provisioning
status String
The operational status of the datastore
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

DiskPoolVolume
, DiskPoolVolumeArgs

LunName This property is required. string
Name of the LUN to be used for datastore
TargetId This property is required. string
Azure resource ID of the iSCSI target
MountOption string | Pulumi.AzureNative.AVS.MountOptionEnum
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
LunName This property is required. string
Name of the LUN to be used for datastore
TargetId This property is required. string
Azure resource ID of the iSCSI target
MountOption string | MountOptionEnum
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lunName This property is required. String
Name of the LUN to be used for datastore
targetId This property is required. String
Azure resource ID of the iSCSI target
mountOption String | MountOptionEnum
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lunName This property is required. string
Name of the LUN to be used for datastore
targetId This property is required. string
Azure resource ID of the iSCSI target
mountOption string | MountOptionEnum
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lun_name This property is required. str
Name of the LUN to be used for datastore
target_id This property is required. str
Azure resource ID of the iSCSI target
mount_option str | MountOptionEnum
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lunName This property is required. String
Name of the LUN to be used for datastore
targetId This property is required. String
Azure resource ID of the iSCSI target
mountOption String | "MOUNT" | "ATTACH"
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN

DiskPoolVolumeResponse
, DiskPoolVolumeResponseArgs

LunName This property is required. string
Name of the LUN to be used for datastore
Path This property is required. string
Device path
TargetId This property is required. string
Azure resource ID of the iSCSI target
MountOption string
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
LunName This property is required. string
Name of the LUN to be used for datastore
Path This property is required. string
Device path
TargetId This property is required. string
Azure resource ID of the iSCSI target
MountOption string
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lunName This property is required. String
Name of the LUN to be used for datastore
path This property is required. String
Device path
targetId This property is required. String
Azure resource ID of the iSCSI target
mountOption String
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lunName This property is required. string
Name of the LUN to be used for datastore
path This property is required. string
Device path
targetId This property is required. string
Azure resource ID of the iSCSI target
mountOption string
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lun_name This property is required. str
Name of the LUN to be used for datastore
path This property is required. str
Device path
target_id This property is required. str
Azure resource ID of the iSCSI target
mount_option str
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN
lunName This property is required. String
Name of the LUN to be used for datastore
path This property is required. String
Device path
targetId This property is required. String
Azure resource ID of the iSCSI target
mountOption String
Mode that describes whether the LUN has to be mounted as a datastore or attached as a LUN

ElasticSanVolume
, ElasticSanVolumeArgs

TargetId This property is required. string
Azure resource ID of the Elastic SAN Volume
TargetId This property is required. string
Azure resource ID of the Elastic SAN Volume
targetId This property is required. String
Azure resource ID of the Elastic SAN Volume
targetId This property is required. string
Azure resource ID of the Elastic SAN Volume
target_id This property is required. str
Azure resource ID of the Elastic SAN Volume
targetId This property is required. String
Azure resource ID of the Elastic SAN Volume

ElasticSanVolumeResponse
, ElasticSanVolumeResponseArgs

TargetId This property is required. string
Azure resource ID of the Elastic SAN Volume
TargetId This property is required. string
Azure resource ID of the Elastic SAN Volume
targetId This property is required. String
Azure resource ID of the Elastic SAN Volume
targetId This property is required. string
Azure resource ID of the Elastic SAN Volume
target_id This property is required. str
Azure resource ID of the Elastic SAN Volume
targetId This property is required. String
Azure resource ID of the Elastic SAN Volume

MountOptionEnum
, MountOptionEnumArgs

MOUNT
MOUNTis mount
ATTACH
ATTACHis attach
MountOptionEnumMOUNT
MOUNTis mount
MountOptionEnumATTACH
ATTACHis attach
MOUNT
MOUNTis mount
ATTACH
ATTACHis attach
MOUNT
MOUNTis mount
ATTACH
ATTACHis attach
MOUNT
MOUNTis mount
ATTACH
ATTACHis attach
"MOUNT"
MOUNTis mount
"ATTACH"
ATTACHis attach

NetAppVolume
, NetAppVolumeArgs

Id This property is required. string
Azure resource ID of the NetApp volume
Id This property is required. string
Azure resource ID of the NetApp volume
id This property is required. String
Azure resource ID of the NetApp volume
id This property is required. string
Azure resource ID of the NetApp volume
id This property is required. str
Azure resource ID of the NetApp volume
id This property is required. String
Azure resource ID of the NetApp volume

NetAppVolumeResponse
, NetAppVolumeResponseArgs

Id This property is required. string
Azure resource ID of the NetApp volume
Id This property is required. string
Azure resource ID of the NetApp volume
id This property is required. String
Azure resource ID of the NetApp volume
id This property is required. string
Azure resource ID of the NetApp volume
id This property is required. str
Azure resource ID of the NetApp volume
id This property is required. String
Azure resource ID of the NetApp volume

SystemDataResponse
, SystemDataResponseArgs

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

Import

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

$ pulumi import azure-native:avs:Datastore datastore1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AVS/privateClouds/{privateCloudName}/clusters/{clusterName}/datastores/{datastoreName} 
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