1. Packages
  2. Azure Native
  3. API Docs
  4. avs
  5. Datastore
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

azure-native.avs.Datastore

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

    A datastore resource Azure REST API version: 2022-05-01. Prior API version in Azure Native 1.x: 2021-01-01-preview.

    Other available API versions: 2023-03-01, 2023-09-01.

    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",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/avs/v2"
    	"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
    	})
    }
    
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    datastore = azure_native.avs.Datastore("datastore",
        cluster_name="cluster1",
        datastore_name="datastore1",
        net_app_volume=azure_native.avs.NetAppVolumeArgs(
            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")
    
    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",
    });
    
    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
    

    Create Datastore Resource

    new Datastore(name: string, args: DatastoreArgs, opts?: CustomResourceOptions);
    @overload
    def Datastore(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  cluster_name: Optional[str] = None,
                  datastore_name: Optional[str] = None,
                  disk_pool_volume: Optional[DiskPoolVolumeArgs] = None,
                  net_app_volume: Optional[NetAppVolumeArgs] = None,
                  private_cloud_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None)
    @overload
    def Datastore(resource_name: str,
                  args: DatastoreArgs,
                  opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DatastoreArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The Datastore resource accepts the following input properties:

    ClusterName string
    Name of the cluster in the private cloud
    PrivateCloudName string
    Name of the private cloud
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DatastoreName string
    Name of the datastore in the private cloud cluster
    DiskPoolVolume Pulumi.AzureNative.AVS.Inputs.DiskPoolVolume
    An iSCSI volume
    NetAppVolume Pulumi.AzureNative.AVS.Inputs.NetAppVolume
    An Azure NetApp Files volume
    ClusterName string
    Name of the cluster in the private cloud
    PrivateCloudName string
    Name of the private cloud
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    DatastoreName string
    Name of the datastore in the private cloud cluster
    DiskPoolVolume DiskPoolVolumeArgs
    An iSCSI volume
    NetAppVolume NetAppVolumeArgs
    An Azure NetApp Files volume
    clusterName String
    Name of the cluster in the private cloud
    privateCloudName String
    Name of the private cloud
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    datastoreName String
    Name of the datastore in the private cloud cluster
    diskPoolVolume DiskPoolVolume
    An iSCSI volume
    netAppVolume NetAppVolume
    An Azure NetApp Files volume
    clusterName string
    Name of the cluster in the private cloud
    privateCloudName string
    Name of the private cloud
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    datastoreName string
    Name of the datastore in the private cloud cluster
    diskPoolVolume DiskPoolVolume
    An iSCSI volume
    netAppVolume NetAppVolume
    An Azure NetApp Files volume
    cluster_name str
    Name of the cluster in the private cloud
    private_cloud_name str
    Name of the private cloud
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    datastore_name str
    Name of the datastore in the private cloud cluster
    disk_pool_volume DiskPoolVolumeArgs
    An iSCSI volume
    net_app_volume NetAppVolumeArgs
    An Azure NetApp Files volume
    clusterName String
    Name of the cluster in the private cloud
    privateCloudName String
    Name of the private cloud
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    datastoreName String
    Name of the datastore in the private cloud cluster
    diskPoolVolume Property Map
    An iSCSI 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:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    ProvisioningState string
    The state of the datastore provisioning
    Status string
    The operational status of the datastore
    Type string
    Resource type.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Resource name.
    ProvisioningState string
    The state of the datastore provisioning
    Status string
    The operational status of the datastore
    Type string
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    provisioningState String
    The state of the datastore provisioning
    status String
    The operational status of the datastore
    type String
    Resource type.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Resource name.
    provisioningState string
    The state of the datastore provisioning
    status string
    The operational status of the datastore
    type string
    Resource type.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Resource name.
    provisioning_state str
    The state of the datastore provisioning
    status str
    The operational status of the datastore
    type str
    Resource type.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Resource name.
    provisioningState String
    The state of the datastore provisioning
    status String
    The operational status of the datastore
    type String
    Resource type.

    Supporting Types

    DiskPoolVolume, DiskPoolVolumeArgs

    LunName string
    Name of the LUN to be used for datastore
    TargetId 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 string
    Name of the LUN to be used for datastore
    TargetId 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 String
    Name of the LUN to be used for datastore
    targetId 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 string
    Name of the LUN to be used for datastore
    targetId 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 str
    Name of the LUN to be used for datastore
    target_id 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 String
    Name of the LUN to be used for datastore
    targetId 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 string
    Name of the LUN to be used for datastore
    Path string
    Device path
    TargetId 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 string
    Name of the LUN to be used for datastore
    Path string
    Device path
    TargetId 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 String
    Name of the LUN to be used for datastore
    path String
    Device path
    targetId 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 string
    Name of the LUN to be used for datastore
    path string
    Device path
    targetId 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 str
    Name of the LUN to be used for datastore
    path str
    Device path
    target_id 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 String
    Name of the LUN to be used for datastore
    path String
    Device path
    targetId 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

    MountOptionEnum, MountOptionEnumArgs

    MOUNT
    MOUNT
    ATTACH
    ATTACH
    MountOptionEnumMOUNT
    MOUNT
    MountOptionEnumATTACH
    ATTACH
    MOUNT
    MOUNT
    ATTACH
    ATTACH
    MOUNT
    MOUNT
    ATTACH
    ATTACH
    MOUNT
    MOUNT
    ATTACH
    ATTACH
    "MOUNT"
    MOUNT
    "ATTACH"
    ATTACH

    NetAppVolume, NetAppVolumeArgs

    Id string
    Azure resource ID of the NetApp volume
    Id string
    Azure resource ID of the NetApp volume
    id String
    Azure resource ID of the NetApp volume
    id string
    Azure resource ID of the NetApp volume
    id str
    Azure resource ID of the NetApp volume
    id String
    Azure resource ID of the NetApp volume

    NetAppVolumeResponse, NetAppVolumeResponseArgs

    Id string
    Azure resource ID of the NetApp volume
    Id string
    Azure resource ID of the NetApp volume
    id String
    Azure resource ID of the NetApp volume
    id string
    Azure resource ID of the NetApp volume
    id str
    Azure resource ID of the NetApp volume
    id String
    Azure resource ID of the NetApp volume

    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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi