Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

CreateOntapVolumeConfiguration

import type { CreateOntapVolumeConfiguration } from "https://aws-api.deno.dev/v0.3/services/fsx.ts?docs=full";

Specifies the configuration of the ONTAP volume that you are creating.

interface CreateOntapVolumeConfiguration {
JunctionPath: string;
SecurityStyle?: SecurityStyle | null;
SizeInMegabytes: number;
StorageEfficiencyEnabled: boolean;
StorageVirtualMachineId: string;
TieringPolicy?: TieringPolicy | null;
}

§Properties

§
JunctionPath: string
[src]

Specifies the location in the SVM's namespace where the volume is mounted. The JunctionPath must have a leading forward slash, such as /vol3.

§
SecurityStyle?: SecurityStyle | null
[src]

The security style for the volume. Specify one of the following values:

  • UNIX if the file system is managed by a UNIX administrator, the majority of users are NFS clients, and an application accessing the data uses a UNIX user as the service account. UNIX is the default.
  • NTFS if the file system is managed by a Windows administrator, the majority of users are SMB clients, and an application accessing the data uses a Windows user as the service account.
  • MIXED if the file system is managed by both UNIX and Windows administrators and users consist of both NFS and SMB clients.
§
SizeInMegabytes: number
[src]

Specifies the size of the volume, in megabytes (MB), that you are creating.

§
StorageEfficiencyEnabled: boolean
[src]

Set to true to enable deduplication, compression, and compaction storage efficiency features on the volume.

§
StorageVirtualMachineId: string
[src]

Specifies the ONTAP SVM in which to create the volume.

§
TieringPolicy?: TieringPolicy | null
[src]