azure-native.netapp.Volume
Explore with Pulumi AI
Volume resource API Version: 2020-12-01.
Example Usage
Volumes_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volume = new AzureNative.NetApp.Volume("volume", new()
{
AccountName = "account1",
CreationToken = "my-unique-file-path",
Location = "eastus",
PoolName = "pool1",
ResourceGroupName = "myRG",
ServiceLevel = "Premium",
SubnetId = "/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
UsageThreshold = 107374182400,
VolumeName = "volume1",
});
});
package main
import (
netapp "github.com/pulumi/pulumi-azure-native-sdk/netapp"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := netapp.NewVolume(ctx, "volume", &netapp.VolumeArgs{
AccountName: pulumi.String("account1"),
CreationToken: pulumi.String("my-unique-file-path"),
Location: pulumi.String("eastus"),
PoolName: pulumi.String("pool1"),
ResourceGroupName: pulumi.String("myRG"),
ServiceLevel: pulumi.String("Premium"),
SubnetId: pulumi.String("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3"),
UsageThreshold: pulumi.Float64(107374182400),
VolumeName: pulumi.String("volume1"),
})
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.netapp.Volume;
import com.pulumi.azurenative.netapp.VolumeArgs;
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 volume = new Volume("volume", VolumeArgs.builder()
.accountName("account1")
.creationToken("my-unique-file-path")
.location("eastus")
.poolName("pool1")
.resourceGroupName("myRG")
.serviceLevel("Premium")
.subnetId("/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3")
.usageThreshold(107374182400)
.volumeName("volume1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
volume = azure_native.netapp.Volume("volume",
account_name="account1",
creation_token="my-unique-file-path",
location="eastus",
pool_name="pool1",
resource_group_name="myRG",
service_level="Premium",
subnet_id="/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
usage_threshold=107374182400,
volume_name="volume1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const volume = new azure_native.netapp.Volume("volume", {
accountName: "account1",
creationToken: "my-unique-file-path",
location: "eastus",
poolName: "pool1",
resourceGroupName: "myRG",
serviceLevel: "Premium",
subnetId: "/subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3",
usageThreshold: 107374182400,
volumeName: "volume1",
});
resources:
volume:
type: azure-native:netapp:Volume
properties:
accountName: account1
creationToken: my-unique-file-path
location: eastus
poolName: pool1
resourceGroupName: myRG
serviceLevel: Premium
subnetId: /subscriptions/9760acf5-4638-11e7-9bdb-020073ca7778/resourceGroups/myRP/providers/Microsoft.Network/virtualNetworks/testvnet3/subnets/testsubnet3
usageThreshold: 1.073741824e+11
volumeName: volume1
Create Volume Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
usage_threshold: Optional[float] = None,
creation_token: Optional[str] = None,
subnet_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
pool_name: Optional[str] = None,
is_restoring: Optional[bool] = None,
smb_continuously_available: Optional[bool] = None,
ldap_enabled: Optional[bool] = None,
location: Optional[str] = None,
export_policy: Optional[VolumePropertiesExportPolicyArgs] = None,
protocol_types: Optional[Sequence[str]] = None,
encryption_key_source: Optional[str] = None,
security_style: Optional[Union[str, SecurityStyle]] = None,
service_level: Optional[Union[str, ServiceLevel]] = None,
kerberos_enabled: Optional[bool] = None,
smb_encryption: Optional[bool] = None,
snapshot_directory_visible: Optional[bool] = None,
snapshot_id: Optional[str] = None,
data_protection: Optional[VolumePropertiesDataProtectionArgs] = None,
tags: Optional[Mapping[str, str]] = None,
throughput_mibps: Optional[float] = None,
backup_id: Optional[str] = None,
volume_name: Optional[str] = None,
volume_type: Optional[str] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: azure-native:netapp:Volume
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 VolumeArgs
- 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 VolumeArgs
- 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 VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- 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 examplevolumeResourceResourceFromNetapp = new AzureNative.Netapp.Volume("examplevolumeResourceResourceFromNetapp", new()
{
AccountName = "string",
UsageThreshold = 0,
CreationToken = "string",
SubnetId = "string",
ResourceGroupName = "string",
PoolName = "string",
IsRestoring = false,
SmbContinuouslyAvailable = false,
LdapEnabled = false,
Location = "string",
ExportPolicy =
{
{ "rules", new[]
{
{
{ "allowedClients", "string" },
{ "chownMode", "string" },
{ "cifs", false },
{ "hasRootAccess", false },
{ "kerberos5ReadOnly", false },
{ "kerberos5ReadWrite", false },
{ "kerberos5iReadOnly", false },
{ "kerberos5iReadWrite", false },
{ "kerberos5pReadOnly", false },
{ "kerberos5pReadWrite", false },
{ "nfsv3", false },
{ "nfsv41", false },
{ "ruleIndex", 0 },
{ "unixReadOnly", false },
{ "unixReadWrite", false },
},
} },
},
ProtocolTypes = new[]
{
"string",
},
EncryptionKeySource = "string",
SecurityStyle = "string",
ServiceLevel = "string",
KerberosEnabled = false,
SmbEncryption = false,
SnapshotDirectoryVisible = false,
SnapshotId = "string",
DataProtection =
{
{ "backup",
{
{ "backupEnabled", false },
{ "backupPolicyId", "string" },
{ "policyEnforced", false },
{ "vaultId", "string" },
} },
{ "replication",
{
{ "remoteVolumeResourceId", "string" },
{ "endpointType", "string" },
{ "remoteVolumeRegion", "string" },
{ "replicationId", "string" },
{ "replicationSchedule", "string" },
} },
{ "snapshot",
{
{ "snapshotPolicyId", "string" },
} },
},
Tags =
{
{ "string", "string" },
},
ThroughputMibps = 0,
BackupId = "string",
VolumeName = "string",
VolumeType = "string",
});
example, err := netapp.NewVolume(ctx, "examplevolumeResourceResourceFromNetapp", &netapp.VolumeArgs{
AccountName: "string",
UsageThreshold: 0,
CreationToken: "string",
SubnetId: "string",
ResourceGroupName: "string",
PoolName: "string",
IsRestoring: false,
SmbContinuouslyAvailable: false,
LdapEnabled: false,
Location: "string",
ExportPolicy: map[string]interface{}{
"rules": []map[string]interface{}{
map[string]interface{}{
"allowedClients": "string",
"chownMode": "string",
"cifs": false,
"hasRootAccess": false,
"kerberos5ReadOnly": false,
"kerberos5ReadWrite": false,
"kerberos5iReadOnly": false,
"kerberos5iReadWrite": false,
"kerberos5pReadOnly": false,
"kerberos5pReadWrite": false,
"nfsv3": false,
"nfsv41": false,
"ruleIndex": 0,
"unixReadOnly": false,
"unixReadWrite": false,
},
},
},
ProtocolTypes: []string{
"string",
},
EncryptionKeySource: "string",
SecurityStyle: "string",
ServiceLevel: "string",
KerberosEnabled: false,
SmbEncryption: false,
SnapshotDirectoryVisible: false,
SnapshotId: "string",
DataProtection: map[string]interface{}{
"backup": map[string]interface{}{
"backupEnabled": false,
"backupPolicyId": "string",
"policyEnforced": false,
"vaultId": "string",
},
"replication": map[string]interface{}{
"remoteVolumeResourceId": "string",
"endpointType": "string",
"remoteVolumeRegion": "string",
"replicationId": "string",
"replicationSchedule": "string",
},
"snapshot": map[string]interface{}{
"snapshotPolicyId": "string",
},
},
Tags: map[string]interface{}{
"string": "string",
},
ThroughputMibps: 0,
BackupId: "string",
VolumeName: "string",
VolumeType: "string",
})
var examplevolumeResourceResourceFromNetapp = new Volume("examplevolumeResourceResourceFromNetapp", VolumeArgs.builder()
.accountName("string")
.usageThreshold(0)
.creationToken("string")
.subnetId("string")
.resourceGroupName("string")
.poolName("string")
.isRestoring(false)
.smbContinuouslyAvailable(false)
.ldapEnabled(false)
.location("string")
.exportPolicy(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.protocolTypes("string")
.encryptionKeySource("string")
.securityStyle("string")
.serviceLevel("string")
.kerberosEnabled(false)
.smbEncryption(false)
.snapshotDirectoryVisible(false)
.snapshotId("string")
.dataProtection(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.throughputMibps(0)
.backupId("string")
.volumeName("string")
.volumeType("string")
.build());
examplevolume_resource_resource_from_netapp = azure_native.netapp.Volume("examplevolumeResourceResourceFromNetapp",
account_name=string,
usage_threshold=0,
creation_token=string,
subnet_id=string,
resource_group_name=string,
pool_name=string,
is_restoring=False,
smb_continuously_available=False,
ldap_enabled=False,
location=string,
export_policy={
rules: [{
allowedClients: string,
chownMode: string,
cifs: False,
hasRootAccess: False,
kerberos5ReadOnly: False,
kerberos5ReadWrite: False,
kerberos5iReadOnly: False,
kerberos5iReadWrite: False,
kerberos5pReadOnly: False,
kerberos5pReadWrite: False,
nfsv3: False,
nfsv41: False,
ruleIndex: 0,
unixReadOnly: False,
unixReadWrite: False,
}],
},
protocol_types=[string],
encryption_key_source=string,
security_style=string,
service_level=string,
kerberos_enabled=False,
smb_encryption=False,
snapshot_directory_visible=False,
snapshot_id=string,
data_protection={
backup: {
backupEnabled: False,
backupPolicyId: string,
policyEnforced: False,
vaultId: string,
},
replication: {
remoteVolumeResourceId: string,
endpointType: string,
remoteVolumeRegion: string,
replicationId: string,
replicationSchedule: string,
},
snapshot: {
snapshotPolicyId: string,
},
},
tags={
string: string,
},
throughput_mibps=0,
backup_id=string,
volume_name=string,
volume_type=string)
const examplevolumeResourceResourceFromNetapp = new azure_native.netapp.Volume("examplevolumeResourceResourceFromNetapp", {
accountName: "string",
usageThreshold: 0,
creationToken: "string",
subnetId: "string",
resourceGroupName: "string",
poolName: "string",
isRestoring: false,
smbContinuouslyAvailable: false,
ldapEnabled: false,
location: "string",
exportPolicy: {
rules: [{
allowedClients: "string",
chownMode: "string",
cifs: false,
hasRootAccess: false,
kerberos5ReadOnly: false,
kerberos5ReadWrite: false,
kerberos5iReadOnly: false,
kerberos5iReadWrite: false,
kerberos5pReadOnly: false,
kerberos5pReadWrite: false,
nfsv3: false,
nfsv41: false,
ruleIndex: 0,
unixReadOnly: false,
unixReadWrite: false,
}],
},
protocolTypes: ["string"],
encryptionKeySource: "string",
securityStyle: "string",
serviceLevel: "string",
kerberosEnabled: false,
smbEncryption: false,
snapshotDirectoryVisible: false,
snapshotId: "string",
dataProtection: {
backup: {
backupEnabled: false,
backupPolicyId: "string",
policyEnforced: false,
vaultId: "string",
},
replication: {
remoteVolumeResourceId: "string",
endpointType: "string",
remoteVolumeRegion: "string",
replicationId: "string",
replicationSchedule: "string",
},
snapshot: {
snapshotPolicyId: "string",
},
},
tags: {
string: "string",
},
throughputMibps: 0,
backupId: "string",
volumeName: "string",
volumeType: "string",
});
type: azure-native:netapp:Volume
properties:
accountName: string
backupId: string
creationToken: string
dataProtection:
backup:
backupEnabled: false
backupPolicyId: string
policyEnforced: false
vaultId: string
replication:
endpointType: string
remoteVolumeRegion: string
remoteVolumeResourceId: string
replicationId: string
replicationSchedule: string
snapshot:
snapshotPolicyId: string
encryptionKeySource: string
exportPolicy:
rules:
- allowedClients: string
chownMode: string
cifs: false
hasRootAccess: false
kerberos5ReadOnly: false
kerberos5ReadWrite: false
kerberos5iReadOnly: false
kerberos5iReadWrite: false
kerberos5pReadOnly: false
kerberos5pReadWrite: false
nfsv3: false
nfsv41: false
ruleIndex: 0
unixReadOnly: false
unixReadWrite: false
isRestoring: false
kerberosEnabled: false
ldapEnabled: false
location: string
poolName: string
protocolTypes:
- string
resourceGroupName: string
securityStyle: string
serviceLevel: string
smbContinuouslyAvailable: false
smbEncryption: false
snapshotDirectoryVisible: false
snapshotId: string
subnetId: string
tags:
string: string
throughputMibps: 0
usageThreshold: 0
volumeName: string
volumeType: string
Volume 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 Volume resource accepts the following input properties:
- Account
Name string - The name of the NetApp account
- Creation
Token string - A unique file path for the volume. Used when creating mount targets
- Pool
Name string - The name of the capacity pool
- Resource
Group stringName - The name of the resource group.
- Subnet
Id string - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- Usage
Threshold double - Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
- Backup
Id string - UUID v4 or resource identifier used to identify the Backup.
- Data
Protection Pulumi.Azure Native. Net App. Inputs. Volume Properties Data Protection - DataProtection type volumes include an object containing details of the replication
- Encryption
Key stringSource - Encryption Key Source. Possible values are: 'Microsoft.NetApp'
- Export
Policy Pulumi.Azure Native. Net App. Inputs. Volume Properties Export Policy - Set of export policy rules
- Is
Restoring bool - Restoring
- Kerberos
Enabled bool - Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
- Ldap
Enabled bool - Specifies whether LDAP is enabled or not for a given NFS volume.
- Location string
- Resource location
- Protocol
Types List<string> - Set of protocol types, default NFSv3, CIFS for SMB protocol
- Security
Style string | Pulumi.Azure Native. Net App. Security Style - The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- Service
Level string | Pulumi.Azure Native. Net App. Service Level - The service level of the file system
- Smb
Continuously boolAvailable - Enables continuously available share property for smb volume. Only applicable for SMB volume
- Smb
Encryption bool - Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
- Snapshot
Directory boolVisible - If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (default to true).
- Snapshot
Id string - UUID v4 or resource identifier used to identify the Snapshot.
- Dictionary<string, string>
- Resource tags
- Throughput
Mibps double - Volume
Name string - The name of the volume
- Volume
Type string - What type of volume is this
- Account
Name string - The name of the NetApp account
- Creation
Token string - A unique file path for the volume. Used when creating mount targets
- Pool
Name string - The name of the capacity pool
- Resource
Group stringName - The name of the resource group.
- Subnet
Id string - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- Usage
Threshold float64 - Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
- Backup
Id string - UUID v4 or resource identifier used to identify the Backup.
- Data
Protection VolumeProperties Data Protection Args - DataProtection type volumes include an object containing details of the replication
- Encryption
Key stringSource - Encryption Key Source. Possible values are: 'Microsoft.NetApp'
- Export
Policy VolumeProperties Export Policy Args - Set of export policy rules
- Is
Restoring bool - Restoring
- Kerberos
Enabled bool - Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
- Ldap
Enabled bool - Specifies whether LDAP is enabled or not for a given NFS volume.
- Location string
- Resource location
- Protocol
Types []string - Set of protocol types, default NFSv3, CIFS for SMB protocol
- Security
Style string | SecurityStyle - The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- Service
Level string | ServiceLevel - The service level of the file system
- Smb
Continuously boolAvailable - Enables continuously available share property for smb volume. Only applicable for SMB volume
- Smb
Encryption bool - Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
- Snapshot
Directory boolVisible - If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (default to true).
- Snapshot
Id string - UUID v4 or resource identifier used to identify the Snapshot.
- map[string]string
- Resource tags
- Throughput
Mibps float64 - Volume
Name string - The name of the volume
- Volume
Type string - What type of volume is this
- account
Name String - The name of the NetApp account
- creation
Token String - A unique file path for the volume. Used when creating mount targets
- pool
Name String - The name of the capacity pool
- resource
Group StringName - The name of the resource group.
- subnet
Id String - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usage
Threshold Double - Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
- backup
Id String - UUID v4 or resource identifier used to identify the Backup.
- data
Protection VolumeProperties Data Protection - DataProtection type volumes include an object containing details of the replication
- encryption
Key StringSource - Encryption Key Source. Possible values are: 'Microsoft.NetApp'
- export
Policy VolumeProperties Export Policy - Set of export policy rules
- is
Restoring Boolean - Restoring
- kerberos
Enabled Boolean - Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
- ldap
Enabled Boolean - Specifies whether LDAP is enabled or not for a given NFS volume.
- location String
- Resource location
- protocol
Types List<String> - Set of protocol types, default NFSv3, CIFS for SMB protocol
- security
Style String | SecurityStyle - The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- service
Level String | ServiceLevel - The service level of the file system
- smb
Continuously BooleanAvailable - Enables continuously available share property for smb volume. Only applicable for SMB volume
- smb
Encryption Boolean - Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
- snapshot
Directory BooleanVisible - If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (default to true).
- snapshot
Id String - UUID v4 or resource identifier used to identify the Snapshot.
- Map<String,String>
- Resource tags
- throughput
Mibps Double - volume
Name String - The name of the volume
- volume
Type String - What type of volume is this
- account
Name string - The name of the NetApp account
- creation
Token string - A unique file path for the volume. Used when creating mount targets
- pool
Name string - The name of the capacity pool
- resource
Group stringName - The name of the resource group.
- subnet
Id string - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usage
Threshold number - Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
- backup
Id string - UUID v4 or resource identifier used to identify the Backup.
- data
Protection VolumeProperties Data Protection - DataProtection type volumes include an object containing details of the replication
- encryption
Key stringSource - Encryption Key Source. Possible values are: 'Microsoft.NetApp'
- export
Policy VolumeProperties Export Policy - Set of export policy rules
- is
Restoring boolean - Restoring
- kerberos
Enabled boolean - Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
- ldap
Enabled boolean - Specifies whether LDAP is enabled or not for a given NFS volume.
- location string
- Resource location
- protocol
Types string[] - Set of protocol types, default NFSv3, CIFS for SMB protocol
- security
Style string | SecurityStyle - The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- service
Level string | ServiceLevel - The service level of the file system
- smb
Continuously booleanAvailable - Enables continuously available share property for smb volume. Only applicable for SMB volume
- smb
Encryption boolean - Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
- snapshot
Directory booleanVisible - If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (default to true).
- snapshot
Id string - UUID v4 or resource identifier used to identify the Snapshot.
- {[key: string]: string}
- Resource tags
- throughput
Mibps number - volume
Name string - The name of the volume
- volume
Type string - What type of volume is this
- account_
name str - The name of the NetApp account
- creation_
token str - A unique file path for the volume. Used when creating mount targets
- pool_
name str - The name of the capacity pool
- resource_
group_ strname - The name of the resource group.
- subnet_
id str - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usage_
threshold float - Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
- backup_
id str - UUID v4 or resource identifier used to identify the Backup.
- data_
protection VolumeProperties Data Protection Args - DataProtection type volumes include an object containing details of the replication
- encryption_
key_ strsource - Encryption Key Source. Possible values are: 'Microsoft.NetApp'
- export_
policy VolumeProperties Export Policy Args - Set of export policy rules
- is_
restoring bool - Restoring
- kerberos_
enabled bool - Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
- ldap_
enabled bool - Specifies whether LDAP is enabled or not for a given NFS volume.
- location str
- Resource location
- protocol_
types Sequence[str] - Set of protocol types, default NFSv3, CIFS for SMB protocol
- security_
style str | SecurityStyle - The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- service_
level str | ServiceLevel - The service level of the file system
- smb_
continuously_ boolavailable - Enables continuously available share property for smb volume. Only applicable for SMB volume
- smb_
encryption bool - Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
- snapshot_
directory_ boolvisible - If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (default to true).
- snapshot_
id str - UUID v4 or resource identifier used to identify the Snapshot.
- Mapping[str, str]
- Resource tags
- throughput_
mibps float - volume_
name str - The name of the volume
- volume_
type str - What type of volume is this
- account
Name String - The name of the NetApp account
- creation
Token String - A unique file path for the volume. Used when creating mount targets
- pool
Name String - The name of the capacity pool
- resource
Group StringName - The name of the resource group.
- subnet
Id String - The Azure Resource URI for a delegated subnet. Must have the delegation Microsoft.NetApp/volumes
- usage
Threshold Number - Maximum storage quota allowed for a file system in bytes. This is a soft quota used for alerting only. Minimum size is 100 GiB. Upper limit is 100TiB. Specified in bytes.
- backup
Id String - UUID v4 or resource identifier used to identify the Backup.
- data
Protection Property Map - DataProtection type volumes include an object containing details of the replication
- encryption
Key StringSource - Encryption Key Source. Possible values are: 'Microsoft.NetApp'
- export
Policy Property Map - Set of export policy rules
- is
Restoring Boolean - Restoring
- kerberos
Enabled Boolean - Describe if a volume is KerberosEnabled. To be use with swagger version 2020-05-01 or later
- ldap
Enabled Boolean - Specifies whether LDAP is enabled or not for a given NFS volume.
- location String
- Resource location
- protocol
Types List<String> - Set of protocol types, default NFSv3, CIFS for SMB protocol
- security
Style String | "ntfs" | "unix" - The security style of volume, default unix, defaults to ntfs for dual protocol or CIFS protocol
- service
Level String | "Standard" | "Premium" | "Ultra" | "StandardZRS" - The service level of the file system
- smb
Continuously BooleanAvailable - Enables continuously available share property for smb volume. Only applicable for SMB volume
- smb
Encryption Boolean - Enables encryption for in-flight smb3 data. Only applicable for SMB/DualProtocol volume. To be used with swagger version 2020-08-01 or later
- snapshot
Directory BooleanVisible - If enabled (true) the volume will contain a read-only snapshot directory which provides access to each of the volume's snapshots (default to true).
- snapshot
Id String - UUID v4 or resource identifier used to identify the Snapshot.
- Map<String>
- Resource tags
- throughput
Mibps Number - volume
Name String - The name of the volume
- volume
Type String - What type of volume is this
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Baremetal
Tenant stringId - Unique Baremetal Tenant Identifier.
- File
System stringId - Unique FileSystem Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mount
Targets List<Pulumi.Azure Native. Net App. Outputs. Mount Target Properties Response> - List of mount targets
- Name string
- Resource name
- Provisioning
State string - Azure lifecycle management
- Type string
- Resource type
- Baremetal
Tenant stringId - Unique Baremetal Tenant Identifier.
- File
System stringId - Unique FileSystem Identifier.
- Id string
- The provider-assigned unique ID for this managed resource.
- Mount
Targets []MountTarget Properties Response - List of mount targets
- Name string
- Resource name
- Provisioning
State string - Azure lifecycle management
- Type string
- Resource type
- baremetal
Tenant StringId - Unique Baremetal Tenant Identifier.
- file
System StringId - Unique FileSystem Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- mount
Targets List<MountTarget Properties Response> - List of mount targets
- name String
- Resource name
- provisioning
State String - Azure lifecycle management
- type String
- Resource type
- baremetal
Tenant stringId - Unique Baremetal Tenant Identifier.
- file
System stringId - Unique FileSystem Identifier.
- id string
- The provider-assigned unique ID for this managed resource.
- mount
Targets MountTarget Properties Response[] - List of mount targets
- name string
- Resource name
- provisioning
State string - Azure lifecycle management
- type string
- Resource type
- baremetal_
tenant_ strid - Unique Baremetal Tenant Identifier.
- file_
system_ strid - Unique FileSystem Identifier.
- id str
- The provider-assigned unique ID for this managed resource.
- mount_
targets Sequence[MountTarget Properties Response] - List of mount targets
- name str
- Resource name
- provisioning_
state str - Azure lifecycle management
- type str
- Resource type
- baremetal
Tenant StringId - Unique Baremetal Tenant Identifier.
- file
System StringId - Unique FileSystem Identifier.
- id String
- The provider-assigned unique ID for this managed resource.
- mount
Targets List<Property Map> - List of mount targets
- name String
- Resource name
- provisioning
State String - Azure lifecycle management
- type String
- Resource type
Supporting Types
ChownMode, ChownModeArgs
- Restricted
- Restricted
- Unrestricted
- Unrestricted
- Chown
Mode Restricted - Restricted
- Chown
Mode Unrestricted - Unrestricted
- Restricted
- Restricted
- Unrestricted
- Unrestricted
- Restricted
- Restricted
- Unrestricted
- Unrestricted
- RESTRICTED
- Restricted
- UNRESTRICTED
- Unrestricted
- "Restricted"
- Restricted
- "Unrestricted"
- Unrestricted
EndpointType, EndpointTypeArgs
- Src
- src
- Dst
- dst
- Endpoint
Type Src - src
- Endpoint
Type Dst - dst
- Src
- src
- Dst
- dst
- Src
- src
- Dst
- dst
- SRC
- src
- DST
- dst
- "src"
- src
- "dst"
- dst
ExportPolicyRule, ExportPolicyRuleArgs
- Allowed
Clients string - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- Chown
Mode string | Pulumi.Azure Native. Net App. Chown Mode - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- Cifs bool
- Allows CIFS protocol
- Has
Root boolAccess - Has root access to volume
- Kerberos5Read
Only bool - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5Read
Write bool - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- Nfsv3 bool
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- Nfsv41 bool
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- Rule
Index int - Order index
- Unix
Read boolOnly - Read only access
- Unix
Read boolWrite - Read and write access
- Allowed
Clients string - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- Chown
Mode string | ChownMode - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- Cifs bool
- Allows CIFS protocol
- Has
Root boolAccess - Has root access to volume
- Kerberos5Read
Only bool - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5Read
Write bool - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- Nfsv3 bool
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- Nfsv41 bool
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- Rule
Index int - Order index
- Unix
Read boolOnly - Read only access
- Unix
Read boolWrite - Read and write access
- allowed
Clients String - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown
Mode String | ChownMode - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs Boolean
- Allows CIFS protocol
- has
Root BooleanAccess - Has root access to volume
- kerberos5Read
Only Boolean - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5Read
Write Boolean - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 Boolean
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 Boolean
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule
Index Integer - Order index
- unix
Read BooleanOnly - Read only access
- unix
Read BooleanWrite - Read and write access
- allowed
Clients string - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown
Mode string | ChownMode - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs boolean
- Allows CIFS protocol
- has
Root booleanAccess - Has root access to volume
- kerberos5Read
Only boolean - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5Read
Write boolean - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read booleanOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read booleanWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read booleanOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read booleanWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 boolean
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 boolean
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule
Index number - Order index
- unix
Read booleanOnly - Read only access
- unix
Read booleanWrite - Read and write access
- allowed_
clients str - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown_
mode str | ChownMode - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs bool
- Allows CIFS protocol
- has_
root_ boolaccess - Has root access to volume
- kerberos5_
read_ boolonly - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5_
read_ boolwrite - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i_
read_ boolonly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i_
read_ boolwrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p_
read_ boolonly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p_
read_ boolwrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 bool
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 bool
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule_
index int - Order index
- unix_
read_ boolonly - Read only access
- unix_
read_ boolwrite - Read and write access
- allowed
Clients String - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown
Mode String | "Restricted" | "Unrestricted" - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs Boolean
- Allows CIFS protocol
- has
Root BooleanAccess - Has root access to volume
- kerberos5Read
Only Boolean - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5Read
Write Boolean - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 Boolean
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 Boolean
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule
Index Number - Order index
- unix
Read BooleanOnly - Read only access
- unix
Read BooleanWrite - Read and write access
ExportPolicyRuleResponse, ExportPolicyRuleResponseArgs
- Allowed
Clients string - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- Chown
Mode string - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- Cifs bool
- Allows CIFS protocol
- Has
Root boolAccess - Has root access to volume
- Kerberos5Read
Only bool - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5Read
Write bool - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- Nfsv3 bool
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- Nfsv41 bool
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- Rule
Index int - Order index
- Unix
Read boolOnly - Read only access
- Unix
Read boolWrite - Read and write access
- Allowed
Clients string - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- Chown
Mode string - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- Cifs bool
- Allows CIFS protocol
- Has
Root boolAccess - Has root access to volume
- Kerberos5Read
Only bool - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5Read
Write bool - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5i
Read boolWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- Kerberos5p
Read boolWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- Nfsv3 bool
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- Nfsv41 bool
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- Rule
Index int - Order index
- Unix
Read boolOnly - Read only access
- Unix
Read boolWrite - Read and write access
- allowed
Clients String - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown
Mode String - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs Boolean
- Allows CIFS protocol
- has
Root BooleanAccess - Has root access to volume
- kerberos5Read
Only Boolean - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5Read
Write Boolean - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 Boolean
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 Boolean
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule
Index Integer - Order index
- unix
Read BooleanOnly - Read only access
- unix
Read BooleanWrite - Read and write access
- allowed
Clients string - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown
Mode string - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs boolean
- Allows CIFS protocol
- has
Root booleanAccess - Has root access to volume
- kerberos5Read
Only boolean - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5Read
Write boolean - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read booleanOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read booleanWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read booleanOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read booleanWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 boolean
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 boolean
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule
Index number - Order index
- unix
Read booleanOnly - Read only access
- unix
Read booleanWrite - Read and write access
- allowed_
clients str - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown_
mode str - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs bool
- Allows CIFS protocol
- has_
root_ boolaccess - Has root access to volume
- kerberos5_
read_ boolonly - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5_
read_ boolwrite - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i_
read_ boolonly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i_
read_ boolwrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p_
read_ boolonly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p_
read_ boolwrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 bool
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 bool
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule_
index int - Order index
- unix_
read_ boolonly - Read only access
- unix_
read_ boolwrite - Read and write access
- allowed
Clients String - Client ingress specification as comma separated string with IPv4 CIDRs, IPv4 host addresses and host names
- chown
Mode String - This parameter specifies who is authorized to change the ownership of a file. restricted - Only root user can change the ownership of the file. unrestricted - Non-root users can change ownership of files that they own.
- cifs Boolean
- Allows CIFS protocol
- has
Root BooleanAccess - Has root access to volume
- kerberos5Read
Only Boolean - Kerberos5 Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5Read
Write Boolean - Kerberos5 Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanOnly - Kerberos5i Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5i
Read BooleanWrite - Kerberos5i Read and write access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanOnly - Kerberos5p Read only access. To be use with swagger version 2020-05-01 or later
- kerberos5p
Read BooleanWrite - Kerberos5p Read and write access. To be use with swagger version 2020-05-01 or later
- nfsv3 Boolean
- Allows NFSv3 protocol. Enable only for NFSv3 type volumes
- nfsv41 Boolean
- Allows NFSv4.1 protocol. Enable only for NFSv4.1 type volumes
- rule
Index Number - Order index
- unix
Read BooleanOnly - Read only access
- unix
Read BooleanWrite - Read and write access
MountTargetPropertiesResponse, MountTargetPropertiesResponseArgs
- File
System stringId - UUID v4 used to identify the MountTarget
- Ip
Address string - The mount target's IPv4 address
- Mount
Target stringId - UUID v4 used to identify the MountTarget
- Smb
Server stringFqdn - The SMB server's Fully Qualified Domain Name, FQDN
- File
System stringId - UUID v4 used to identify the MountTarget
- Ip
Address string - The mount target's IPv4 address
- Mount
Target stringId - UUID v4 used to identify the MountTarget
- Smb
Server stringFqdn - The SMB server's Fully Qualified Domain Name, FQDN
- file
System StringId - UUID v4 used to identify the MountTarget
- ip
Address String - The mount target's IPv4 address
- mount
Target StringId - UUID v4 used to identify the MountTarget
- smb
Server StringFqdn - The SMB server's Fully Qualified Domain Name, FQDN
- file
System stringId - UUID v4 used to identify the MountTarget
- ip
Address string - The mount target's IPv4 address
- mount
Target stringId - UUID v4 used to identify the MountTarget
- smb
Server stringFqdn - The SMB server's Fully Qualified Domain Name, FQDN
- file_
system_ strid - UUID v4 used to identify the MountTarget
- ip_
address str - The mount target's IPv4 address
- mount_
target_ strid - UUID v4 used to identify the MountTarget
- smb_
server_ strfqdn - The SMB server's Fully Qualified Domain Name, FQDN
- file
System StringId - UUID v4 used to identify the MountTarget
- ip
Address String - The mount target's IPv4 address
- mount
Target StringId - UUID v4 used to identify the MountTarget
- smb
Server StringFqdn - The SMB server's Fully Qualified Domain Name, FQDN
ReplicationObject, ReplicationObjectArgs
- Remote
Volume stringResource Id - The resource ID of the remote volume.
- Endpoint
Type string | Pulumi.Azure Native. Net App. Endpoint Type - Indicates whether the local volume is the source or destination for the Volume Replication
- Remote
Volume stringRegion - The remote region for the other end of the Volume Replication.
- Replication
Id string - Id
- Replication
Schedule string | Pulumi.Azure Native. Net App. Replication Schedule - Schedule
- Remote
Volume stringResource Id - The resource ID of the remote volume.
- Endpoint
Type string | EndpointType - Indicates whether the local volume is the source or destination for the Volume Replication
- Remote
Volume stringRegion - The remote region for the other end of the Volume Replication.
- Replication
Id string - Id
- Replication
Schedule string | ReplicationSchedule - Schedule
- remote
Volume StringResource Id - The resource ID of the remote volume.
- endpoint
Type String | EndpointType - Indicates whether the local volume is the source or destination for the Volume Replication
- remote
Volume StringRegion - The remote region for the other end of the Volume Replication.
- replication
Id String - Id
- replication
Schedule String | ReplicationSchedule - Schedule
- remote
Volume stringResource Id - The resource ID of the remote volume.
- endpoint
Type string | EndpointType - Indicates whether the local volume is the source or destination for the Volume Replication
- remote
Volume stringRegion - The remote region for the other end of the Volume Replication.
- replication
Id string - Id
- replication
Schedule string | ReplicationSchedule - Schedule
- remote_
volume_ strresource_ id - The resource ID of the remote volume.
- endpoint_
type str | EndpointType - Indicates whether the local volume is the source or destination for the Volume Replication
- remote_
volume_ strregion - The remote region for the other end of the Volume Replication.
- replication_
id str - Id
- replication_
schedule str | ReplicationSchedule - Schedule
- remote
Volume StringResource Id - The resource ID of the remote volume.
- endpoint
Type String | "src" | "dst" - Indicates whether the local volume is the source or destination for the Volume Replication
- remote
Volume StringRegion - The remote region for the other end of the Volume Replication.
- replication
Id String - Id
- replication
Schedule String | "_10minutely" | "hourly" | "daily" - Schedule
ReplicationObjectResponse, ReplicationObjectResponseArgs
- Remote
Volume stringResource Id - The resource ID of the remote volume.
- Endpoint
Type string - Indicates whether the local volume is the source or destination for the Volume Replication
- Remote
Volume stringRegion - The remote region for the other end of the Volume Replication.
- Replication
Id string - Id
- Replication
Schedule string - Schedule
- Remote
Volume stringResource Id - The resource ID of the remote volume.
- Endpoint
Type string - Indicates whether the local volume is the source or destination for the Volume Replication
- Remote
Volume stringRegion - The remote region for the other end of the Volume Replication.
- Replication
Id string - Id
- Replication
Schedule string - Schedule
- remote
Volume StringResource Id - The resource ID of the remote volume.
- endpoint
Type String - Indicates whether the local volume is the source or destination for the Volume Replication
- remote
Volume StringRegion - The remote region for the other end of the Volume Replication.
- replication
Id String - Id
- replication
Schedule String - Schedule
- remote
Volume stringResource Id - The resource ID of the remote volume.
- endpoint
Type string - Indicates whether the local volume is the source or destination for the Volume Replication
- remote
Volume stringRegion - The remote region for the other end of the Volume Replication.
- replication
Id string - Id
- replication
Schedule string - Schedule
- remote_
volume_ strresource_ id - The resource ID of the remote volume.
- endpoint_
type str - Indicates whether the local volume is the source or destination for the Volume Replication
- remote_
volume_ strregion - The remote region for the other end of the Volume Replication.
- replication_
id str - Id
- replication_
schedule str - Schedule
- remote
Volume StringResource Id - The resource ID of the remote volume.
- endpoint
Type String - Indicates whether the local volume is the source or destination for the Volume Replication
- remote
Volume StringRegion - The remote region for the other end of the Volume Replication.
- replication
Id String - Id
- replication
Schedule String - Schedule
ReplicationSchedule, ReplicationScheduleArgs
- Replication
Schedule_10minutely - _10minutely
- Hourly
- hourly
- Daily
- daily
- Replication
Schedule_10minutely - _10minutely
- Replication
Schedule Hourly - hourly
- Replication
Schedule Daily - daily
- _10minutely
- _10minutely
- Hourly
- hourly
- Daily
- daily
- Replication
Schedule_10minutely - _10minutely
- Hourly
- hourly
- Daily
- daily
- REPLICATION_SCHEDULE_10MINUTELY
- _10minutely
- HOURLY
- hourly
- DAILY
- daily
- "_10minutely"
- _10minutely
- "hourly"
- hourly
- "daily"
- daily
SecurityStyle, SecurityStyleArgs
- Ntfs
- ntfs
- Unix
- unix
- Security
Style Ntfs - ntfs
- Security
Style Unix - unix
- Ntfs
- ntfs
- Unix
- unix
- Ntfs
- ntfs
- Unix
- unix
- NTFS
- ntfs
- UNIX
- unix
- "ntfs"
- ntfs
- "unix"
- unix
ServiceLevel, ServiceLevelArgs
- Standard
- StandardStandard service level
- Premium
- PremiumPremium service level
- Ultra
- UltraUltra service level
- Standard
ZRS - StandardZRSZone redundant storage service level
- Service
Level Standard - StandardStandard service level
- Service
Level Premium - PremiumPremium service level
- Service
Level Ultra - UltraUltra service level
- Service
Level Standard ZRS - StandardZRSZone redundant storage service level
- Standard
- StandardStandard service level
- Premium
- PremiumPremium service level
- Ultra
- UltraUltra service level
- Standard
ZRS - StandardZRSZone redundant storage service level
- Standard
- StandardStandard service level
- Premium
- PremiumPremium service level
- Ultra
- UltraUltra service level
- Standard
ZRS - StandardZRSZone redundant storage service level
- STANDARD
- StandardStandard service level
- PREMIUM
- PremiumPremium service level
- ULTRA
- UltraUltra service level
- STANDARD_ZRS
- StandardZRSZone redundant storage service level
- "Standard"
- StandardStandard service level
- "Premium"
- PremiumPremium service level
- "Ultra"
- UltraUltra service level
- "Standard
ZRS" - StandardZRSZone redundant storage service level
VolumeBackupProperties, VolumeBackupPropertiesArgs
- Backup
Enabled bool - Backup Enabled
- Backup
Policy stringId - Backup Policy Resource ID
- Policy
Enforced bool - Policy Enforced
- Vault
Id string - Vault Resource ID
- Backup
Enabled bool - Backup Enabled
- Backup
Policy stringId - Backup Policy Resource ID
- Policy
Enforced bool - Policy Enforced
- Vault
Id string - Vault Resource ID
- backup
Enabled Boolean - Backup Enabled
- backup
Policy StringId - Backup Policy Resource ID
- policy
Enforced Boolean - Policy Enforced
- vault
Id String - Vault Resource ID
- backup
Enabled boolean - Backup Enabled
- backup
Policy stringId - Backup Policy Resource ID
- policy
Enforced boolean - Policy Enforced
- vault
Id string - Vault Resource ID
- backup_
enabled bool - Backup Enabled
- backup_
policy_ strid - Backup Policy Resource ID
- policy_
enforced bool - Policy Enforced
- vault_
id str - Vault Resource ID
- backup
Enabled Boolean - Backup Enabled
- backup
Policy StringId - Backup Policy Resource ID
- policy
Enforced Boolean - Policy Enforced
- vault
Id String - Vault Resource ID
VolumeBackupPropertiesResponse, VolumeBackupPropertiesResponseArgs
- Backup
Enabled bool - Backup Enabled
- Backup
Policy stringId - Backup Policy Resource ID
- Policy
Enforced bool - Policy Enforced
- Vault
Id string - Vault Resource ID
- Backup
Enabled bool - Backup Enabled
- Backup
Policy stringId - Backup Policy Resource ID
- Policy
Enforced bool - Policy Enforced
- Vault
Id string - Vault Resource ID
- backup
Enabled Boolean - Backup Enabled
- backup
Policy StringId - Backup Policy Resource ID
- policy
Enforced Boolean - Policy Enforced
- vault
Id String - Vault Resource ID
- backup
Enabled boolean - Backup Enabled
- backup
Policy stringId - Backup Policy Resource ID
- policy
Enforced boolean - Policy Enforced
- vault
Id string - Vault Resource ID
- backup_
enabled bool - Backup Enabled
- backup_
policy_ strid - Backup Policy Resource ID
- policy_
enforced bool - Policy Enforced
- vault_
id str - Vault Resource ID
- backup
Enabled Boolean - Backup Enabled
- backup
Policy StringId - Backup Policy Resource ID
- policy
Enforced Boolean - Policy Enforced
- vault
Id String - Vault Resource ID
VolumePropertiesDataProtection, VolumePropertiesDataProtectionArgs
- Backup
Pulumi.
Azure Native. Net App. Inputs. Volume Backup Properties - Backup Properties
- Replication
Pulumi.
Azure Native. Net App. Inputs. Replication Object - Replication properties
- Snapshot
Pulumi.
Azure Native. Net App. Inputs. Volume Snapshot Properties - Snapshot properties.
- Backup
Volume
Backup Properties - Backup Properties
- Replication
Replication
Object - Replication properties
- Snapshot
Volume
Snapshot Properties - Snapshot properties.
- backup
Volume
Backup Properties - Backup Properties
- replication
Replication
Object - Replication properties
- snapshot
Volume
Snapshot Properties - Snapshot properties.
- backup
Volume
Backup Properties - Backup Properties
- replication
Replication
Object - Replication properties
- snapshot
Volume
Snapshot Properties - Snapshot properties.
- backup
Volume
Backup Properties - Backup Properties
- replication
Replication
Object - Replication properties
- snapshot
Volume
Snapshot Properties - Snapshot properties.
- backup Property Map
- Backup Properties
- replication Property Map
- Replication properties
- snapshot Property Map
- Snapshot properties.
VolumePropertiesExportPolicy, VolumePropertiesExportPolicyArgs
- Rules
List<Pulumi.
Azure Native. Net App. Inputs. Export Policy Rule> - Export policy rule
- Rules
[]Export
Policy Rule - Export policy rule
- rules
List<Export
Policy Rule> - Export policy rule
- rules
Export
Policy Rule[] - Export policy rule
- rules
Sequence[Export
Policy Rule] - Export policy rule
- rules List<Property Map>
- Export policy rule
VolumePropertiesResponseDataProtection, VolumePropertiesResponseDataProtectionArgs
- Backup
Pulumi.
Azure Native. Net App. Inputs. Volume Backup Properties Response - Backup Properties
- Replication
Pulumi.
Azure Native. Net App. Inputs. Replication Object Response - Replication properties
- Snapshot
Pulumi.
Azure Native. Net App. Inputs. Volume Snapshot Properties Response - Snapshot properties.
- Backup
Volume
Backup Properties Response - Backup Properties
- Replication
Replication
Object Response - Replication properties
- Snapshot
Volume
Snapshot Properties Response - Snapshot properties.
- backup
Volume
Backup Properties Response - Backup Properties
- replication
Replication
Object Response - Replication properties
- snapshot
Volume
Snapshot Properties Response - Snapshot properties.
- backup
Volume
Backup Properties Response - Backup Properties
- replication
Replication
Object Response - Replication properties
- snapshot
Volume
Snapshot Properties Response - Snapshot properties.
- backup
Volume
Backup Properties Response - Backup Properties
- replication
Replication
Object Response - Replication properties
- snapshot
Volume
Snapshot Properties Response - Snapshot properties.
- backup Property Map
- Backup Properties
- replication Property Map
- Replication properties
- snapshot Property Map
- Snapshot properties.
VolumePropertiesResponseExportPolicy, VolumePropertiesResponseExportPolicyArgs
- Rules
List<Pulumi.
Azure Native. Net App. Inputs. Export Policy Rule Response> - Export policy rule
- Rules
[]Export
Policy Rule Response - Export policy rule
- rules
List<Export
Policy Rule Response> - Export policy rule
- rules
Export
Policy Rule Response[] - Export policy rule
- rules
Sequence[Export
Policy Rule Response] - Export policy rule
- rules List<Property Map>
- Export policy rule
VolumeSnapshotProperties, VolumeSnapshotPropertiesArgs
- Snapshot
Policy stringId - Snapshot Policy ResourceId
- Snapshot
Policy stringId - Snapshot Policy ResourceId
- snapshot
Policy StringId - Snapshot Policy ResourceId
- snapshot
Policy stringId - Snapshot Policy ResourceId
- snapshot_
policy_ strid - Snapshot Policy ResourceId
- snapshot
Policy StringId - Snapshot Policy ResourceId
VolumeSnapshotPropertiesResponse, VolumeSnapshotPropertiesResponseArgs
- Snapshot
Policy stringId - Snapshot Policy ResourceId
- Snapshot
Policy stringId - Snapshot Policy ResourceId
- snapshot
Policy StringId - Snapshot Policy ResourceId
- snapshot
Policy stringId - Snapshot Policy ResourceId
- snapshot_
policy_ strid - Snapshot Policy ResourceId
- snapshot
Policy StringId - Snapshot Policy ResourceId
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:netapp:Volume account1/pool1/volume1 /subscriptions/D633CC2E-722B-4AE1-B636-BBD9E4C60ED9/resourceGroups/myRG/providers/Microsoft.NetApp/netAppAccounts/account1/capacityPools/pool1/volumes/volume1
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