1. Packages
  2. AWS Classic
  3. API Docs
  4. fsx
  5. OntapVolume

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.fsx.OntapVolume

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    Manages a FSx ONTAP Volume. See the FSx ONTAP User Guide for more information.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const test = new aws.fsx.OntapVolume("test", {
        name: "test",
        junctionPath: "/test",
        sizeInMegabytes: 1024,
        storageEfficiencyEnabled: true,
        storageVirtualMachineId: testAwsFsxOntapStorageVirtualMachine.id,
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.fsx.OntapVolume("test",
        name="test",
        junction_path="/test",
        size_in_megabytes=1024,
        storage_efficiency_enabled=True,
        storage_virtual_machine_id=test_aws_fsx_ontap_storage_virtual_machine["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/fsx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fsx.NewOntapVolume(ctx, "test", &fsx.OntapVolumeArgs{
    			Name:                     pulumi.String("test"),
    			JunctionPath:             pulumi.String("/test"),
    			SizeInMegabytes:          pulumi.Int(1024),
    			StorageEfficiencyEnabled: pulumi.Bool(true),
    			StorageVirtualMachineId:  pulumi.Any(testAwsFsxOntapStorageVirtualMachine.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Aws.Fsx.OntapVolume("test", new()
        {
            Name = "test",
            JunctionPath = "/test",
            SizeInMegabytes = 1024,
            StorageEfficiencyEnabled = true,
            StorageVirtualMachineId = testAwsFsxOntapStorageVirtualMachine.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.fsx.OntapVolume;
    import com.pulumi.aws.fsx.OntapVolumeArgs;
    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 test = new OntapVolume("test", OntapVolumeArgs.builder()        
                .name("test")
                .junctionPath("/test")
                .sizeInMegabytes(1024)
                .storageEfficiencyEnabled(true)
                .storageVirtualMachineId(testAwsFsxOntapStorageVirtualMachine.id())
                .build());
    
        }
    }
    
    resources:
      test:
        type: aws:fsx:OntapVolume
        properties:
          name: test
          junctionPath: /test
          sizeInMegabytes: 1024
          storageEfficiencyEnabled: true
          storageVirtualMachineId: ${testAwsFsxOntapStorageVirtualMachine.id}
    

    Using Tiering Policy

    Additional information on tiering policy with ONTAP Volumes can be found in the FSx ONTAP Guide.

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const test = new aws.fsx.OntapVolume("test", {
        name: "test",
        junctionPath: "/test",
        sizeInMegabytes: 1024,
        storageEfficiencyEnabled: true,
        storageVirtualMachineId: testAwsFsxOntapStorageVirtualMachine.id,
        tieringPolicy: {
            name: "AUTO",
            coolingPeriod: 31,
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    test = aws.fsx.OntapVolume("test",
        name="test",
        junction_path="/test",
        size_in_megabytes=1024,
        storage_efficiency_enabled=True,
        storage_virtual_machine_id=test_aws_fsx_ontap_storage_virtual_machine["id"],
        tiering_policy=aws.fsx.OntapVolumeTieringPolicyArgs(
            name="AUTO",
            cooling_period=31,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/fsx"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := fsx.NewOntapVolume(ctx, "test", &fsx.OntapVolumeArgs{
    			Name:                     pulumi.String("test"),
    			JunctionPath:             pulumi.String("/test"),
    			SizeInMegabytes:          pulumi.Int(1024),
    			StorageEfficiencyEnabled: pulumi.Bool(true),
    			StorageVirtualMachineId:  pulumi.Any(testAwsFsxOntapStorageVirtualMachine.Id),
    			TieringPolicy: &fsx.OntapVolumeTieringPolicyArgs{
    				Name:          pulumi.String("AUTO"),
    				CoolingPeriod: pulumi.Int(31),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var test = new Aws.Fsx.OntapVolume("test", new()
        {
            Name = "test",
            JunctionPath = "/test",
            SizeInMegabytes = 1024,
            StorageEfficiencyEnabled = true,
            StorageVirtualMachineId = testAwsFsxOntapStorageVirtualMachine.Id,
            TieringPolicy = new Aws.Fsx.Inputs.OntapVolumeTieringPolicyArgs
            {
                Name = "AUTO",
                CoolingPeriod = 31,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.fsx.OntapVolume;
    import com.pulumi.aws.fsx.OntapVolumeArgs;
    import com.pulumi.aws.fsx.inputs.OntapVolumeTieringPolicyArgs;
    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 test = new OntapVolume("test", OntapVolumeArgs.builder()        
                .name("test")
                .junctionPath("/test")
                .sizeInMegabytes(1024)
                .storageEfficiencyEnabled(true)
                .storageVirtualMachineId(testAwsFsxOntapStorageVirtualMachine.id())
                .tieringPolicy(OntapVolumeTieringPolicyArgs.builder()
                    .name("AUTO")
                    .coolingPeriod(31)
                    .build())
                .build());
    
        }
    }
    
    resources:
      test:
        type: aws:fsx:OntapVolume
        properties:
          name: test
          junctionPath: /test
          sizeInMegabytes: 1024
          storageEfficiencyEnabled: true
          storageVirtualMachineId: ${testAwsFsxOntapStorageVirtualMachine.id}
          tieringPolicy:
            name: AUTO
            coolingPeriod: 31
    

    Create OntapVolume Resource

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

    Constructor syntax

    new OntapVolume(name: string, args: OntapVolumeArgs, opts?: CustomResourceOptions);
    @overload
    def OntapVolume(resource_name: str,
                    args: OntapVolumeArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def OntapVolume(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    size_in_megabytes: Optional[int] = None,
                    storage_virtual_machine_id: Optional[str] = None,
                    name: Optional[str] = None,
                    bypass_snaplock_enterprise_retention: Optional[bool] = None,
                    ontap_volume_type: Optional[str] = None,
                    security_style: Optional[str] = None,
                    junction_path: Optional[str] = None,
                    skip_final_backup: Optional[bool] = None,
                    snaplock_configuration: Optional[OntapVolumeSnaplockConfigurationArgs] = None,
                    snapshot_policy: Optional[str] = None,
                    storage_efficiency_enabled: Optional[bool] = None,
                    copy_tags_to_backups: Optional[bool] = None,
                    tags: Optional[Mapping[str, str]] = None,
                    tiering_policy: Optional[OntapVolumeTieringPolicyArgs] = None,
                    volume_type: Optional[str] = None)
    func NewOntapVolume(ctx *Context, name string, args OntapVolumeArgs, opts ...ResourceOption) (*OntapVolume, error)
    public OntapVolume(string name, OntapVolumeArgs args, CustomResourceOptions? opts = null)
    public OntapVolume(String name, OntapVolumeArgs args)
    public OntapVolume(String name, OntapVolumeArgs args, CustomResourceOptions options)
    
    type: aws:fsx:OntapVolume
    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 OntapVolumeArgs
    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 OntapVolumeArgs
    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 OntapVolumeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OntapVolumeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OntapVolumeArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var ontapVolumeResource = new Aws.Fsx.OntapVolume("ontapVolumeResource", new()
    {
        SizeInMegabytes = 0,
        StorageVirtualMachineId = "string",
        Name = "string",
        BypassSnaplockEnterpriseRetention = false,
        OntapVolumeType = "string",
        SecurityStyle = "string",
        JunctionPath = "string",
        SkipFinalBackup = false,
        SnaplockConfiguration = new Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationArgs
        {
            SnaplockType = "string",
            AuditLogVolume = false,
            AutocommitPeriod = new Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationAutocommitPeriodArgs
            {
                Type = "string",
                Value = 0,
            },
            PrivilegedDelete = "string",
            RetentionPeriod = new Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodArgs
            {
                DefaultRetention = new Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetentionArgs
                {
                    Type = "string",
                    Value = 0,
                },
                MaximumRetention = new Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetentionArgs
                {
                    Type = "string",
                    Value = 0,
                },
                MinimumRetention = new Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetentionArgs
                {
                    Type = "string",
                    Value = 0,
                },
            },
            VolumeAppendModeEnabled = false,
        },
        SnapshotPolicy = "string",
        StorageEfficiencyEnabled = false,
        CopyTagsToBackups = false,
        Tags = 
        {
            { "string", "string" },
        },
        TieringPolicy = new Aws.Fsx.Inputs.OntapVolumeTieringPolicyArgs
        {
            CoolingPeriod = 0,
            Name = "string",
        },
        VolumeType = "string",
    });
    
    example, err := fsx.NewOntapVolume(ctx, "ontapVolumeResource", &fsx.OntapVolumeArgs{
    	SizeInMegabytes:                   pulumi.Int(0),
    	StorageVirtualMachineId:           pulumi.String("string"),
    	Name:                              pulumi.String("string"),
    	BypassSnaplockEnterpriseRetention: pulumi.Bool(false),
    	OntapVolumeType:                   pulumi.String("string"),
    	SecurityStyle:                     pulumi.String("string"),
    	JunctionPath:                      pulumi.String("string"),
    	SkipFinalBackup:                   pulumi.Bool(false),
    	SnaplockConfiguration: &fsx.OntapVolumeSnaplockConfigurationArgs{
    		SnaplockType:   pulumi.String("string"),
    		AuditLogVolume: pulumi.Bool(false),
    		AutocommitPeriod: &fsx.OntapVolumeSnaplockConfigurationAutocommitPeriodArgs{
    			Type:  pulumi.String("string"),
    			Value: pulumi.Int(0),
    		},
    		PrivilegedDelete: pulumi.String("string"),
    		RetentionPeriod: &fsx.OntapVolumeSnaplockConfigurationRetentionPeriodArgs{
    			DefaultRetention: &fsx.OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetentionArgs{
    				Type:  pulumi.String("string"),
    				Value: pulumi.Int(0),
    			},
    			MaximumRetention: &fsx.OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetentionArgs{
    				Type:  pulumi.String("string"),
    				Value: pulumi.Int(0),
    			},
    			MinimumRetention: &fsx.OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetentionArgs{
    				Type:  pulumi.String("string"),
    				Value: pulumi.Int(0),
    			},
    		},
    		VolumeAppendModeEnabled: pulumi.Bool(false),
    	},
    	SnapshotPolicy:           pulumi.String("string"),
    	StorageEfficiencyEnabled: pulumi.Bool(false),
    	CopyTagsToBackups:        pulumi.Bool(false),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	TieringPolicy: &fsx.OntapVolumeTieringPolicyArgs{
    		CoolingPeriod: pulumi.Int(0),
    		Name:          pulumi.String("string"),
    	},
    	VolumeType: pulumi.String("string"),
    })
    
    var ontapVolumeResource = new OntapVolume("ontapVolumeResource", OntapVolumeArgs.builder()        
        .sizeInMegabytes(0)
        .storageVirtualMachineId("string")
        .name("string")
        .bypassSnaplockEnterpriseRetention(false)
        .ontapVolumeType("string")
        .securityStyle("string")
        .junctionPath("string")
        .skipFinalBackup(false)
        .snaplockConfiguration(OntapVolumeSnaplockConfigurationArgs.builder()
            .snaplockType("string")
            .auditLogVolume(false)
            .autocommitPeriod(OntapVolumeSnaplockConfigurationAutocommitPeriodArgs.builder()
                .type("string")
                .value(0)
                .build())
            .privilegedDelete("string")
            .retentionPeriod(OntapVolumeSnaplockConfigurationRetentionPeriodArgs.builder()
                .defaultRetention(OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetentionArgs.builder()
                    .type("string")
                    .value(0)
                    .build())
                .maximumRetention(OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetentionArgs.builder()
                    .type("string")
                    .value(0)
                    .build())
                .minimumRetention(OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetentionArgs.builder()
                    .type("string")
                    .value(0)
                    .build())
                .build())
            .volumeAppendModeEnabled(false)
            .build())
        .snapshotPolicy("string")
        .storageEfficiencyEnabled(false)
        .copyTagsToBackups(false)
        .tags(Map.of("string", "string"))
        .tieringPolicy(OntapVolumeTieringPolicyArgs.builder()
            .coolingPeriod(0)
            .name("string")
            .build())
        .volumeType("string")
        .build());
    
    ontap_volume_resource = aws.fsx.OntapVolume("ontapVolumeResource",
        size_in_megabytes=0,
        storage_virtual_machine_id="string",
        name="string",
        bypass_snaplock_enterprise_retention=False,
        ontap_volume_type="string",
        security_style="string",
        junction_path="string",
        skip_final_backup=False,
        snaplock_configuration=aws.fsx.OntapVolumeSnaplockConfigurationArgs(
            snaplock_type="string",
            audit_log_volume=False,
            autocommit_period=aws.fsx.OntapVolumeSnaplockConfigurationAutocommitPeriodArgs(
                type="string",
                value=0,
            ),
            privileged_delete="string",
            retention_period=aws.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodArgs(
                default_retention=aws.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetentionArgs(
                    type="string",
                    value=0,
                ),
                maximum_retention=aws.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetentionArgs(
                    type="string",
                    value=0,
                ),
                minimum_retention=aws.fsx.OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetentionArgs(
                    type="string",
                    value=0,
                ),
            ),
            volume_append_mode_enabled=False,
        ),
        snapshot_policy="string",
        storage_efficiency_enabled=False,
        copy_tags_to_backups=False,
        tags={
            "string": "string",
        },
        tiering_policy=aws.fsx.OntapVolumeTieringPolicyArgs(
            cooling_period=0,
            name="string",
        ),
        volume_type="string")
    
    const ontapVolumeResource = new aws.fsx.OntapVolume("ontapVolumeResource", {
        sizeInMegabytes: 0,
        storageVirtualMachineId: "string",
        name: "string",
        bypassSnaplockEnterpriseRetention: false,
        ontapVolumeType: "string",
        securityStyle: "string",
        junctionPath: "string",
        skipFinalBackup: false,
        snaplockConfiguration: {
            snaplockType: "string",
            auditLogVolume: false,
            autocommitPeriod: {
                type: "string",
                value: 0,
            },
            privilegedDelete: "string",
            retentionPeriod: {
                defaultRetention: {
                    type: "string",
                    value: 0,
                },
                maximumRetention: {
                    type: "string",
                    value: 0,
                },
                minimumRetention: {
                    type: "string",
                    value: 0,
                },
            },
            volumeAppendModeEnabled: false,
        },
        snapshotPolicy: "string",
        storageEfficiencyEnabled: false,
        copyTagsToBackups: false,
        tags: {
            string: "string",
        },
        tieringPolicy: {
            coolingPeriod: 0,
            name: "string",
        },
        volumeType: "string",
    });
    
    type: aws:fsx:OntapVolume
    properties:
        bypassSnaplockEnterpriseRetention: false
        copyTagsToBackups: false
        junctionPath: string
        name: string
        ontapVolumeType: string
        securityStyle: string
        sizeInMegabytes: 0
        skipFinalBackup: false
        snaplockConfiguration:
            auditLogVolume: false
            autocommitPeriod:
                type: string
                value: 0
            privilegedDelete: string
            retentionPeriod:
                defaultRetention:
                    type: string
                    value: 0
                maximumRetention:
                    type: string
                    value: 0
                minimumRetention:
                    type: string
                    value: 0
            snaplockType: string
            volumeAppendModeEnabled: false
        snapshotPolicy: string
        storageEfficiencyEnabled: false
        storageVirtualMachineId: string
        tags:
            string: string
        tieringPolicy:
            coolingPeriod: 0
            name: string
        volumeType: string
    

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

    SizeInMegabytes int
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    StorageVirtualMachineId string
    Specifies the storage virtual machine in which to create the volume.
    BypassSnaplockEnterpriseRetention bool
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    CopyTagsToBackups bool
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    JunctionPath string
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    Name string
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    OntapVolumeType string
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    SecurityStyle string
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    SkipFinalBackup bool
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    SnaplockConfiguration Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfiguration
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    SnapshotPolicy string
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    StorageEfficiencyEnabled bool
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    Tags Dictionary<string, string>
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TieringPolicy Pulumi.Aws.Fsx.Inputs.OntapVolumeTieringPolicy
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    VolumeType string
    The type of volume, currently the only valid value is ONTAP.
    SizeInMegabytes int
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    StorageVirtualMachineId string
    Specifies the storage virtual machine in which to create the volume.
    BypassSnaplockEnterpriseRetention bool
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    CopyTagsToBackups bool
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    JunctionPath string
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    Name string
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    OntapVolumeType string
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    SecurityStyle string
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    SkipFinalBackup bool
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    SnaplockConfiguration OntapVolumeSnaplockConfigurationArgs
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    SnapshotPolicy string
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    StorageEfficiencyEnabled bool
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    Tags map[string]string
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TieringPolicy OntapVolumeTieringPolicyArgs
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    VolumeType string
    The type of volume, currently the only valid value is ONTAP.
    sizeInMegabytes Integer
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    storageVirtualMachineId String
    Specifies the storage virtual machine in which to create the volume.
    bypassSnaplockEnterpriseRetention Boolean
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copyTagsToBackups Boolean
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    junctionPath String
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name String
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontapVolumeType String
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    securityStyle String
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    skipFinalBackup Boolean
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplockConfiguration OntapVolumeSnaplockConfiguration
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshotPolicy String
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storageEfficiencyEnabled Boolean
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    tags Map<String,String>
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tieringPolicy OntapVolumeTieringPolicy
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    volumeType String
    The type of volume, currently the only valid value is ONTAP.
    sizeInMegabytes number
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    storageVirtualMachineId string
    Specifies the storage virtual machine in which to create the volume.
    bypassSnaplockEnterpriseRetention boolean
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copyTagsToBackups boolean
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    junctionPath string
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name string
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontapVolumeType string
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    securityStyle string
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    skipFinalBackup boolean
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplockConfiguration OntapVolumeSnaplockConfiguration
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshotPolicy string
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storageEfficiencyEnabled boolean
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    tags {[key: string]: string}
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tieringPolicy OntapVolumeTieringPolicy
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    volumeType string
    The type of volume, currently the only valid value is ONTAP.
    size_in_megabytes int
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    storage_virtual_machine_id str
    Specifies the storage virtual machine in which to create the volume.
    bypass_snaplock_enterprise_retention bool
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copy_tags_to_backups bool
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    junction_path str
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name str
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontap_volume_type str
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    security_style str
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    skip_final_backup bool
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplock_configuration OntapVolumeSnaplockConfigurationArgs
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshot_policy str
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storage_efficiency_enabled bool
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    tags Mapping[str, str]
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tiering_policy OntapVolumeTieringPolicyArgs
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    volume_type str
    The type of volume, currently the only valid value is ONTAP.
    sizeInMegabytes Number
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    storageVirtualMachineId String
    Specifies the storage virtual machine in which to create the volume.
    bypassSnaplockEnterpriseRetention Boolean
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copyTagsToBackups Boolean
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    junctionPath String
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name String
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontapVolumeType String
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    securityStyle String
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    skipFinalBackup Boolean
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplockConfiguration Property Map
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshotPolicy String
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storageEfficiencyEnabled Boolean
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    tags Map<String>
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tieringPolicy Property Map
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    volumeType String
    The type of volume, currently the only valid value is ONTAP.

    Outputs

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

    Arn string
    Amazon Resource Name of the volune.
    FileSystemId string
    Describes the file system for the volume, e.g. fs-12345679
    FlexcacheEndpointType string
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Uuid string
    The Volume's UUID (universally unique identifier).
    Arn string
    Amazon Resource Name of the volune.
    FileSystemId string
    Describes the file system for the volume, e.g. fs-12345679
    FlexcacheEndpointType string
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    Id string
    The provider-assigned unique ID for this managed resource.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Uuid string
    The Volume's UUID (universally unique identifier).
    arn String
    Amazon Resource Name of the volune.
    fileSystemId String
    Describes the file system for the volume, e.g. fs-12345679
    flexcacheEndpointType String
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    uuid String
    The Volume's UUID (universally unique identifier).
    arn string
    Amazon Resource Name of the volune.
    fileSystemId string
    Describes the file system for the volume, e.g. fs-12345679
    flexcacheEndpointType string
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    id string
    The provider-assigned unique ID for this managed resource.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    uuid string
    The Volume's UUID (universally unique identifier).
    arn str
    Amazon Resource Name of the volune.
    file_system_id str
    Describes the file system for the volume, e.g. fs-12345679
    flexcache_endpoint_type str
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    id str
    The provider-assigned unique ID for this managed resource.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    uuid str
    The Volume's UUID (universally unique identifier).
    arn String
    Amazon Resource Name of the volune.
    fileSystemId String
    Describes the file system for the volume, e.g. fs-12345679
    flexcacheEndpointType String
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    id String
    The provider-assigned unique ID for this managed resource.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    uuid String
    The Volume's UUID (universally unique identifier).

    Look up Existing OntapVolume Resource

    Get an existing OntapVolume resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: OntapVolumeState, opts?: CustomResourceOptions): OntapVolume
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            bypass_snaplock_enterprise_retention: Optional[bool] = None,
            copy_tags_to_backups: Optional[bool] = None,
            file_system_id: Optional[str] = None,
            flexcache_endpoint_type: Optional[str] = None,
            junction_path: Optional[str] = None,
            name: Optional[str] = None,
            ontap_volume_type: Optional[str] = None,
            security_style: Optional[str] = None,
            size_in_megabytes: Optional[int] = None,
            skip_final_backup: Optional[bool] = None,
            snaplock_configuration: Optional[OntapVolumeSnaplockConfigurationArgs] = None,
            snapshot_policy: Optional[str] = None,
            storage_efficiency_enabled: Optional[bool] = None,
            storage_virtual_machine_id: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            tiering_policy: Optional[OntapVolumeTieringPolicyArgs] = None,
            uuid: Optional[str] = None,
            volume_type: Optional[str] = None) -> OntapVolume
    func GetOntapVolume(ctx *Context, name string, id IDInput, state *OntapVolumeState, opts ...ResourceOption) (*OntapVolume, error)
    public static OntapVolume Get(string name, Input<string> id, OntapVolumeState? state, CustomResourceOptions? opts = null)
    public static OntapVolume get(String name, Output<String> id, OntapVolumeState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    Amazon Resource Name of the volune.
    BypassSnaplockEnterpriseRetention bool
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    CopyTagsToBackups bool
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    FileSystemId string
    Describes the file system for the volume, e.g. fs-12345679
    FlexcacheEndpointType string
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    JunctionPath string
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    Name string
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    OntapVolumeType string
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    SecurityStyle string
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    SizeInMegabytes int
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    SkipFinalBackup bool
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    SnaplockConfiguration Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfiguration
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    SnapshotPolicy string
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    StorageEfficiencyEnabled bool
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    StorageVirtualMachineId string
    Specifies the storage virtual machine in which to create the volume.
    Tags Dictionary<string, string>
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    TieringPolicy Pulumi.Aws.Fsx.Inputs.OntapVolumeTieringPolicy
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    Uuid string
    The Volume's UUID (universally unique identifier).
    VolumeType string
    The type of volume, currently the only valid value is ONTAP.
    Arn string
    Amazon Resource Name of the volune.
    BypassSnaplockEnterpriseRetention bool
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    CopyTagsToBackups bool
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    FileSystemId string
    Describes the file system for the volume, e.g. fs-12345679
    FlexcacheEndpointType string
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    JunctionPath string
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    Name string
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    OntapVolumeType string
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    SecurityStyle string
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    SizeInMegabytes int
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    SkipFinalBackup bool
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    SnaplockConfiguration OntapVolumeSnaplockConfigurationArgs
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    SnapshotPolicy string
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    StorageEfficiencyEnabled bool
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    StorageVirtualMachineId string
    Specifies the storage virtual machine in which to create the volume.
    Tags map[string]string
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    TieringPolicy OntapVolumeTieringPolicyArgs
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    Uuid string
    The Volume's UUID (universally unique identifier).
    VolumeType string
    The type of volume, currently the only valid value is ONTAP.
    arn String
    Amazon Resource Name of the volune.
    bypassSnaplockEnterpriseRetention Boolean
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copyTagsToBackups Boolean
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    fileSystemId String
    Describes the file system for the volume, e.g. fs-12345679
    flexcacheEndpointType String
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    junctionPath String
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name String
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontapVolumeType String
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    securityStyle String
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    sizeInMegabytes Integer
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    skipFinalBackup Boolean
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplockConfiguration OntapVolumeSnaplockConfiguration
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshotPolicy String
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storageEfficiencyEnabled Boolean
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    storageVirtualMachineId String
    Specifies the storage virtual machine in which to create the volume.
    tags Map<String,String>
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    tieringPolicy OntapVolumeTieringPolicy
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    uuid String
    The Volume's UUID (universally unique identifier).
    volumeType String
    The type of volume, currently the only valid value is ONTAP.
    arn string
    Amazon Resource Name of the volune.
    bypassSnaplockEnterpriseRetention boolean
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copyTagsToBackups boolean
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    fileSystemId string
    Describes the file system for the volume, e.g. fs-12345679
    flexcacheEndpointType string
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    junctionPath string
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name string
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontapVolumeType string
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    securityStyle string
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    sizeInMegabytes number
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    skipFinalBackup boolean
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplockConfiguration OntapVolumeSnaplockConfiguration
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshotPolicy string
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storageEfficiencyEnabled boolean
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    storageVirtualMachineId string
    Specifies the storage virtual machine in which to create the volume.
    tags {[key: string]: string}
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    tieringPolicy OntapVolumeTieringPolicy
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    uuid string
    The Volume's UUID (universally unique identifier).
    volumeType string
    The type of volume, currently the only valid value is ONTAP.
    arn str
    Amazon Resource Name of the volune.
    bypass_snaplock_enterprise_retention bool
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copy_tags_to_backups bool
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    file_system_id str
    Describes the file system for the volume, e.g. fs-12345679
    flexcache_endpoint_type str
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    junction_path str
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name str
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontap_volume_type str
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    security_style str
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    size_in_megabytes int
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    skip_final_backup bool
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplock_configuration OntapVolumeSnaplockConfigurationArgs
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshot_policy str
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storage_efficiency_enabled bool
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    storage_virtual_machine_id str
    Specifies the storage virtual machine in which to create the volume.
    tags Mapping[str, str]
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    tiering_policy OntapVolumeTieringPolicyArgs
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    uuid str
    The Volume's UUID (universally unique identifier).
    volume_type str
    The type of volume, currently the only valid value is ONTAP.
    arn String
    Amazon Resource Name of the volune.
    bypassSnaplockEnterpriseRetention Boolean
    Setting this to true allows a SnapLock administrator to delete an FSx for ONTAP SnapLock Enterprise volume with unexpired write once, read many (WORM) files. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    copyTagsToBackups Boolean
    A boolean flag indicating whether tags for the volume should be copied to backups. This value defaults to false.
    fileSystemId String
    Describes the file system for the volume, e.g. fs-12345679
    flexcacheEndpointType String
    Specifies the FlexCache endpoint type of the volume, Valid values are NONE, ORIGIN, CACHE. Default value is NONE. These can be set by the ONTAP CLI or API and are use with FlexCache feature.
    junctionPath String
    Specifies the location in the storage virtual machine's namespace where the volume is mounted. The junction_path must have a leading forward slash, such as /vol3
    name String
    The name of the Volume. You can use a maximum of 203 alphanumeric characters, plus the underscore (_) special character.
    ontapVolumeType String
    Specifies the type of volume, valid values are RW, DP. Default value is RW. These can be set by the ONTAP CLI or API. This setting is used as part of migration and replication Migrating to Amazon FSx for NetApp ONTAP
    securityStyle String
    Specifies the volume security style, Valid values are UNIX, NTFS, and MIXED.
    sizeInMegabytes Number
    Specifies the size of the volume, in megabytes (MB), that you are creating.
    skipFinalBackup Boolean
    When enabled, will skip the default final backup taken when the volume is deleted. This configuration must be applied separately before attempting to delete the resource to have the desired behavior. Defaults to false.
    snaplockConfiguration Property Map
    The SnapLock configuration for an FSx for ONTAP volume. See SnapLock Configuration below.
    snapshotPolicy String
    Specifies the snapshot policy for the volume. See snapshot policies in the Amazon FSx ONTAP User Guide
    storageEfficiencyEnabled Boolean
    Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.
    storageVirtualMachineId String
    Specifies the storage virtual machine in which to create the volume.
    tags Map<String>
    A map of tags to assign to the volume. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    tieringPolicy Property Map
    The data tiering policy for an FSx for ONTAP volume. See Tiering Policy below.
    uuid String
    The Volume's UUID (universally unique identifier).
    volumeType String
    The type of volume, currently the only valid value is ONTAP.

    Supporting Types

    OntapVolumeSnaplockConfiguration, OntapVolumeSnaplockConfigurationArgs

    SnaplockType string
    Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: COMPLIANCE, ENTERPRISE.
    AuditLogVolume bool
    Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false.
    AutocommitPeriod Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationAutocommitPeriod
    The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
    PrivilegedDelete string
    Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: DISABLED, ENABLED, PERMANENTLY_DISABLED. The default value is DISABLED.
    RetentionPeriod Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriod
    The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
    VolumeAppendModeEnabled bool
    Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is false.
    SnaplockType string
    Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: COMPLIANCE, ENTERPRISE.
    AuditLogVolume bool
    Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false.
    AutocommitPeriod OntapVolumeSnaplockConfigurationAutocommitPeriod
    The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
    PrivilegedDelete string
    Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: DISABLED, ENABLED, PERMANENTLY_DISABLED. The default value is DISABLED.
    RetentionPeriod OntapVolumeSnaplockConfigurationRetentionPeriod
    The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
    VolumeAppendModeEnabled bool
    Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is false.
    snaplockType String
    Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: COMPLIANCE, ENTERPRISE.
    auditLogVolume Boolean
    Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false.
    autocommitPeriod OntapVolumeSnaplockConfigurationAutocommitPeriod
    The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
    privilegedDelete String
    Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: DISABLED, ENABLED, PERMANENTLY_DISABLED. The default value is DISABLED.
    retentionPeriod OntapVolumeSnaplockConfigurationRetentionPeriod
    The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
    volumeAppendModeEnabled Boolean
    Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is false.
    snaplockType string
    Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: COMPLIANCE, ENTERPRISE.
    auditLogVolume boolean
    Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false.
    autocommitPeriod OntapVolumeSnaplockConfigurationAutocommitPeriod
    The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
    privilegedDelete string
    Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: DISABLED, ENABLED, PERMANENTLY_DISABLED. The default value is DISABLED.
    retentionPeriod OntapVolumeSnaplockConfigurationRetentionPeriod
    The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
    volumeAppendModeEnabled boolean
    Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is false.
    snaplock_type str
    Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: COMPLIANCE, ENTERPRISE.
    audit_log_volume bool
    Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false.
    autocommit_period OntapVolumeSnaplockConfigurationAutocommitPeriod
    The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
    privileged_delete str
    Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: DISABLED, ENABLED, PERMANENTLY_DISABLED. The default value is DISABLED.
    retention_period OntapVolumeSnaplockConfigurationRetentionPeriod
    The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
    volume_append_mode_enabled bool
    Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is false.
    snaplockType String
    Specifies the retention mode of an FSx for ONTAP SnapLock volume. After it is set, it can't be changed. Valid values: COMPLIANCE, ENTERPRISE.
    auditLogVolume Boolean
    Enables or disables the audit log volume for an FSx for ONTAP SnapLock volume. The default value is false.
    autocommitPeriod Property Map
    The configuration object for setting the autocommit period of files in an FSx for ONTAP SnapLock volume. See Autocommit Period below.
    privilegedDelete String
    Enables, disables, or permanently disables privileged delete on an FSx for ONTAP SnapLock Enterprise volume. Valid values: DISABLED, ENABLED, PERMANENTLY_DISABLED. The default value is DISABLED.
    retentionPeriod Property Map
    The retention period of an FSx for ONTAP SnapLock volume. See SnapLock Retention Period below.
    volumeAppendModeEnabled Boolean
    Enables or disables volume-append mode on an FSx for ONTAP SnapLock volume. The default value is false.

    OntapVolumeSnaplockConfigurationAutocommitPeriod, OntapVolumeSnaplockConfigurationAutocommitPeriodArgs

    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Integer
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type str
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.

    OntapVolumeSnaplockConfigurationRetentionPeriod, OntapVolumeSnaplockConfigurationRetentionPeriodArgs

    DefaultRetention Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention
    The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
    MaximumRetention Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention
    The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    MinimumRetention Pulumi.Aws.Fsx.Inputs.OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention
    The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    DefaultRetention OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention
    The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
    MaximumRetention OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention
    The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    MinimumRetention OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention
    The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    defaultRetention OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention
    The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
    maximumRetention OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention
    The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    minimumRetention OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention
    The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    defaultRetention OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention
    The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
    maximumRetention OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention
    The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    minimumRetention OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention
    The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    default_retention OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention
    The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
    maximum_retention OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention
    The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    minimum_retention OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention
    The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    defaultRetention Property Map
    The retention period assigned to a write once, read many (WORM) file by default if an explicit retention period is not set for an FSx for ONTAP SnapLock volume. The default retention period must be greater than or equal to the minimum retention period and less than or equal to the maximum retention period. See Retention Period below.
    maximumRetention Property Map
    The longest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.
    minimumRetention Property Map
    The shortest retention period that can be assigned to a WORM file on an FSx for ONTAP SnapLock volume. See Retention Period below.

    OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetention, OntapVolumeSnaplockConfigurationRetentionPeriodDefaultRetentionArgs

    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Integer
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type str
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.

    OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetention, OntapVolumeSnaplockConfigurationRetentionPeriodMaximumRetentionArgs

    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Integer
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type str
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.

    OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetention, OntapVolumeSnaplockConfigurationRetentionPeriodMinimumRetentionArgs

    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    Type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    Value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Integer
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type string
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type str
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value int
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.
    type String
    The type of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume. Setting this value to NONE disables autocommit. Valid values: MINUTES, HOURS, DAYS, MONTHS, YEARS, NONE.
    value Number
    The amount of time for the autocommit period of a file in an FSx for ONTAP SnapLock volume.

    OntapVolumeTieringPolicy, OntapVolumeTieringPolicyArgs

    CoolingPeriod int
    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with AUTO and SNAPSHOT_ONLY tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.
    Name string
    Specifies the tiering policy for the ONTAP volume for moving data to the capacity pool storage. Valid values are SNAPSHOT_ONLY, AUTO, ALL, NONE. Default value is SNAPSHOT_ONLY.
    CoolingPeriod int
    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with AUTO and SNAPSHOT_ONLY tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.
    Name string
    Specifies the tiering policy for the ONTAP volume for moving data to the capacity pool storage. Valid values are SNAPSHOT_ONLY, AUTO, ALL, NONE. Default value is SNAPSHOT_ONLY.
    coolingPeriod Integer
    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with AUTO and SNAPSHOT_ONLY tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.
    name String
    Specifies the tiering policy for the ONTAP volume for moving data to the capacity pool storage. Valid values are SNAPSHOT_ONLY, AUTO, ALL, NONE. Default value is SNAPSHOT_ONLY.
    coolingPeriod number
    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with AUTO and SNAPSHOT_ONLY tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.
    name string
    Specifies the tiering policy for the ONTAP volume for moving data to the capacity pool storage. Valid values are SNAPSHOT_ONLY, AUTO, ALL, NONE. Default value is SNAPSHOT_ONLY.
    cooling_period int
    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with AUTO and SNAPSHOT_ONLY tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.
    name str
    Specifies the tiering policy for the ONTAP volume for moving data to the capacity pool storage. Valid values are SNAPSHOT_ONLY, AUTO, ALL, NONE. Default value is SNAPSHOT_ONLY.
    coolingPeriod Number
    Specifies the number of days that user data in a volume must remain inactive before it is considered "cold" and moved to the capacity pool. Used with AUTO and SNAPSHOT_ONLY tiering policies only. Valid values are whole numbers between 2 and 183. Default values are 31 days for AUTO and 2 days for SNAPSHOT_ONLY.
    name String
    Specifies the tiering policy for the ONTAP volume for moving data to the capacity pool storage. Valid values are SNAPSHOT_ONLY, AUTO, ALL, NONE. Default value is SNAPSHOT_ONLY.

    Import

    Using pulumi import, import FSx ONTAP volume using the id. For example:

    $ pulumi import aws:fsx/ontapVolume:OntapVolume example fsvol-12345678abcdef123
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi