azure-native.avs.Datastore
Explore with Pulumi AI
A datastore resource API Version: 2021-01-01-preview.
Example Usage
Datastores_Create
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
{
NfsFilePath = "ANFVol2",
NfsProviderIp = "12.0.0.4",
},
PrivateCloudName = "cloud1",
ResourceGroupName = "group1",
});
});
package main
import (
avs "github.com/pulumi/pulumi-azure-native-sdk/avs"
"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{
NfsFilePath: pulumi.String("ANFVol2"),
NfsProviderIp: pulumi.String("12.0.0.4"),
},
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 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(Map.ofEntries(
Map.entry("nfsFilePath", "ANFVol2"),
Map.entry("nfsProviderIp", "12.0.0.4")
))
.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(
nfs_file_path="ANFVol2",
nfs_provider_ip="12.0.0.4",
),
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: {
nfsFilePath: "ANFVol2",
nfsProviderIp: "12.0.0.4",
},
privateCloudName: "cloud1",
resourceGroupName: "group1",
});
resources:
datastore:
type: azure-native:avs:Datastore
properties:
clusterName: cluster1
datastoreName: datastore1
netAppVolume:
nfsFilePath: ANFVol2
nfsProviderIp: 12.0.0.4
privateCloudName: cloud1
resourceGroupName: group1
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,
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 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.
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 =
{
{ "endpoints", new[]
{
"string",
} },
{ "lunName", "string" },
},
NetAppVolume =
{
{ "nfsFilePath", "string" },
{ "nfsProviderIp", "string" },
},
});
example, err := avs.NewDatastore(ctx, "datastoreResource", &avs.DatastoreArgs{
ClusterName: "string",
PrivateCloudName: "string",
ResourceGroupName: "string",
DatastoreName: "string",
DiskPoolVolume: map[string]interface{}{
"endpoints": []string{
"string",
},
"lunName": "string",
},
NetAppVolume: map[string]interface{}{
"nfsFilePath": "string",
"nfsProviderIp": "string",
},
})
var datastoreResource = new Datastore("datastoreResource", DatastoreArgs.builder()
.clusterName("string")
.privateCloudName("string")
.resourceGroupName("string")
.datastoreName("string")
.diskPoolVolume(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.netAppVolume(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
datastore_resource = azure_native.avs.Datastore("datastoreResource",
cluster_name=string,
private_cloud_name=string,
resource_group_name=string,
datastore_name=string,
disk_pool_volume={
endpoints: [string],
lunName: string,
},
net_app_volume={
nfsFilePath: string,
nfsProviderIp: string,
})
const datastoreResource = new azure_native.avs.Datastore("datastoreResource", {
clusterName: "string",
privateCloudName: "string",
resourceGroupName: "string",
datastoreName: "string",
diskPoolVolume: {
endpoints: ["string"],
lunName: "string",
},
netAppVolume: {
nfsFilePath: "string",
nfsProviderIp: "string",
},
});
type: azure-native:avs:Datastore
properties:
clusterName: string
datastoreName: string
diskPoolVolume:
endpoints:
- string
lunName: string
netAppVolume:
nfsFilePath: string
nfsProviderIp: string
privateCloudName: string
resourceGroupName: string
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:
- Cluster
Name string - Name of the cluster in the private cloud
- Private
Cloud stringName - Name of the private cloud
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Datastore
Name string - Name of the datastore in the private cloud cluster
- Disk
Pool Pulumi.Volume Azure Native. AVS. Inputs. Disk Pool Volume - An iSCSI volume
- Net
App Pulumi.Volume Azure Native. AVS. Inputs. Net App Volume - An Azure NetApp Files volume
- Cluster
Name string - Name of the cluster in the private cloud
- Private
Cloud stringName - Name of the private cloud
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Datastore
Name string - Name of the datastore in the private cloud cluster
- Disk
Pool DiskVolume Pool Volume Args - An iSCSI volume
- Net
App NetVolume App Volume Args - An Azure NetApp Files volume
- cluster
Name String - Name of the cluster in the private cloud
- private
Cloud StringName - Name of the private cloud
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- datastore
Name String - Name of the datastore in the private cloud cluster
- disk
Pool DiskVolume Pool Volume - An iSCSI volume
- net
App NetVolume App Volume - An Azure NetApp Files volume
- cluster
Name string - Name of the cluster in the private cloud
- private
Cloud stringName - Name of the private cloud
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- datastore
Name string - Name of the datastore in the private cloud cluster
- disk
Pool DiskVolume Pool Volume - An iSCSI volume
- net
App NetVolume App Volume - An Azure NetApp Files volume
- cluster_
name str - Name of the cluster in the private cloud
- private_
cloud_ strname - Name of the private cloud
- resource_
group_ strname - 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_ Diskvolume Pool Volume Args - An iSCSI volume
- net_
app_ Netvolume App Volume Args - An Azure NetApp Files volume
- cluster
Name String - Name of the cluster in the private cloud
- private
Cloud StringName - Name of the private cloud
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- datastore
Name String - Name of the datastore in the private cloud cluster
- disk
Pool Property MapVolume - An iSCSI volume
- net
App Property MapVolume - 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.
- Provisioning
State string - The state of the datastore provisioning
- Type string
- Resource type.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name.
- Provisioning
State string - The state of the datastore provisioning
- Type string
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - The state of the datastore provisioning
- type String
- Resource type.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name.
- provisioning
State string - The state of the datastore provisioning
- 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
- type str
- Resource type.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name.
- provisioning
State String - The state of the datastore provisioning
- type String
- Resource type.
Supporting Types
DiskPoolVolume, DiskPoolVolumeArgs
DiskPoolVolumeResponse, DiskPoolVolumeResponseArgs
NetAppVolume, NetAppVolumeArgs
- Nfs
File stringPath - File path through which the NFS volume is exposed by the provider
- Nfs
Provider stringIp - IP address of the NFS provider
- Nfs
File stringPath - File path through which the NFS volume is exposed by the provider
- Nfs
Provider stringIp - IP address of the NFS provider
- nfs
File StringPath - File path through which the NFS volume is exposed by the provider
- nfs
Provider StringIp - IP address of the NFS provider
- nfs
File stringPath - File path through which the NFS volume is exposed by the provider
- nfs
Provider stringIp - IP address of the NFS provider
- nfs_
file_ strpath - File path through which the NFS volume is exposed by the provider
- nfs_
provider_ strip - IP address of the NFS provider
- nfs
File StringPath - File path through which the NFS volume is exposed by the provider
- nfs
Provider StringIp - IP address of the NFS provider
NetAppVolumeResponse, NetAppVolumeResponseArgs
- Nfs
File stringPath - File path through which the NFS volume is exposed by the provider
- Nfs
Provider stringIp - IP address of the NFS provider
- Nfs
File stringPath - File path through which the NFS volume is exposed by the provider
- Nfs
Provider stringIp - IP address of the NFS provider
- nfs
File StringPath - File path through which the NFS volume is exposed by the provider
- nfs
Provider StringIp - IP address of the NFS provider
- nfs
File stringPath - File path through which the NFS volume is exposed by the provider
- nfs
Provider stringIp - IP address of the NFS provider
- nfs_
file_ strpath - File path through which the NFS volume is exposed by the provider
- nfs_
provider_ strip - IP address of the NFS provider
- nfs
File StringPath - File path through which the NFS volume is exposed by the provider
- nfs
Provider StringIp - IP address of the NFS provider
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:avs:Datastore datastore1 /subscriptions/{subscription-id}/resourceGroups/group1/providers/Microsoft.AVS/privateClouds/cloud1/clusters/cluster1/datastores/datastore1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0