@aws-sdk/client-fsx 3.300.0 → 3.303.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/models/models_0.js +293 -347
- package/dist-es/models/models_0.js +293 -347
- package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +2 -2
- package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
- package/dist-types/commands/CopyBackupCommand.d.ts +3 -3
- package/dist-types/commands/CreateBackupCommand.d.ts +3 -3
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +7 -7
- package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +5 -5
- package/dist-types/commands/CreateFileCacheCommand.d.ts +12 -12
- package/dist-types/commands/CreateFileSystemCommand.d.ts +26 -26
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +24 -24
- package/dist-types/commands/CreateSnapshotCommand.d.ts +3 -3
- package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +6 -6
- package/dist-types/commands/CreateVolumeCommand.d.ts +14 -14
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +5 -5
- package/dist-types/commands/DeleteBackupCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFileCacheCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +7 -7
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVolumeCommand.d.ts +6 -6
- package/dist-types/commands/DescribeBackupsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +5 -5
- package/dist-types/commands/DescribeFileCachesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +5 -5
- package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +5 -5
- package/dist-types/commands/DescribeVolumesCommand.d.ts +5 -5
- package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +2 -2
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +1 -1
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +2 -2
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +5 -5
- package/dist-types/commands/UpdateFileCacheCommand.d.ts +2 -2
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +13 -13
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +4 -4
- package/dist-types/commands/UpdateVolumeCommand.d.ts +11 -11
- package/dist-types/models/models_0.d.ts +563 -293
- package/dist-types/ts3.4/models/models_0.d.ts +388 -293
- package/package.json +34 -34
|
@@ -48,19 +48,19 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
48
48
|
* import { FSxClient, DeleteFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
49
49
|
* // const { FSxClient, DeleteFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
50
50
|
* const client = new FSxClient(config);
|
|
51
|
-
* const input = {
|
|
51
|
+
* const input = { // DeleteFileSystemRequest
|
|
52
52
|
* FileSystemId: "STRING_VALUE", // required
|
|
53
53
|
* ClientRequestToken: "STRING_VALUE",
|
|
54
|
-
* WindowsConfiguration: {
|
|
54
|
+
* WindowsConfiguration: { // DeleteFileSystemWindowsConfiguration
|
|
55
55
|
* SkipFinalBackup: true || false,
|
|
56
|
-
* FinalBackupTags: [
|
|
57
|
-
* {
|
|
56
|
+
* FinalBackupTags: [ // Tags
|
|
57
|
+
* { // Tag
|
|
58
58
|
* Key: "STRING_VALUE", // required
|
|
59
59
|
* Value: "STRING_VALUE", // required
|
|
60
60
|
* },
|
|
61
61
|
* ],
|
|
62
62
|
* },
|
|
63
|
-
* LustreConfiguration: {
|
|
63
|
+
* LustreConfiguration: { // DeleteFileSystemLustreConfiguration
|
|
64
64
|
* SkipFinalBackup: true || false,
|
|
65
65
|
* FinalBackupTags: [
|
|
66
66
|
* {
|
|
@@ -69,7 +69,7 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
69
69
|
* },
|
|
70
70
|
* ],
|
|
71
71
|
* },
|
|
72
|
-
* OpenZFSConfiguration: {
|
|
72
|
+
* OpenZFSConfiguration: { // DeleteFileSystemOpenZFSConfiguration
|
|
73
73
|
* SkipFinalBackup: true || false,
|
|
74
74
|
* FinalBackupTags: [
|
|
75
75
|
* {
|
|
@@ -77,7 +77,7 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
77
77
|
* Value: "STRING_VALUE", // required
|
|
78
78
|
* },
|
|
79
79
|
* ],
|
|
80
|
-
* Options: [
|
|
80
|
+
* Options: [ // DeleteFileSystemOpenZFSOptions
|
|
81
81
|
* "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
|
|
82
82
|
* ],
|
|
83
83
|
* },
|
|
@@ -30,7 +30,7 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
30
30
|
* import { FSxClient, DeleteSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
31
31
|
* // const { FSxClient, DeleteSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
32
32
|
* const client = new FSxClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // DeleteSnapshotRequest
|
|
34
34
|
* ClientRequestToken: "STRING_VALUE",
|
|
35
35
|
* SnapshotId: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
@@ -27,7 +27,7 @@ export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageV
|
|
|
27
27
|
* import { FSxClient, DeleteStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
28
28
|
* // const { FSxClient, DeleteStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
29
29
|
* const client = new FSxClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteStorageVirtualMachineRequest
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE",
|
|
32
32
|
* StorageVirtualMachineId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -27,20 +27,20 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
|
|
|
27
27
|
* import { FSxClient, DeleteVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
28
28
|
* // const { FSxClient, DeleteVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
29
29
|
* const client = new FSxClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // DeleteVolumeRequest
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE",
|
|
32
32
|
* VolumeId: "STRING_VALUE", // required
|
|
33
|
-
* OntapConfiguration: {
|
|
33
|
+
* OntapConfiguration: { // DeleteVolumeOntapConfiguration
|
|
34
34
|
* SkipFinalBackup: true || false,
|
|
35
|
-
* FinalBackupTags: [
|
|
36
|
-
* {
|
|
35
|
+
* FinalBackupTags: [ // Tags
|
|
36
|
+
* { // Tag
|
|
37
37
|
* Key: "STRING_VALUE", // required
|
|
38
38
|
* Value: "STRING_VALUE", // required
|
|
39
39
|
* },
|
|
40
40
|
* ],
|
|
41
41
|
* },
|
|
42
|
-
* OpenZFSConfiguration: {
|
|
43
|
-
* Options: [
|
|
42
|
+
* OpenZFSConfiguration: { // DeleteVolumeOpenZFSConfiguration
|
|
43
|
+
* Options: [ // DeleteOpenZFSVolumeOptions
|
|
44
44
|
* "DELETE_CHILD_VOLUMES_AND_SNAPSHOTS",
|
|
45
45
|
* ],
|
|
46
46
|
* },
|
|
@@ -51,14 +51,14 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
|
|
|
51
51
|
* import { FSxClient, DescribeBackupsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
52
52
|
* // const { FSxClient, DescribeBackupsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
53
53
|
* const client = new FSxClient(config);
|
|
54
|
-
* const input = {
|
|
55
|
-
* BackupIds: [
|
|
54
|
+
* const input = { // DescribeBackupsRequest
|
|
55
|
+
* BackupIds: [ // BackupIds
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
|
-
* Filters: [
|
|
59
|
-
* {
|
|
58
|
+
* Filters: [ // Filters
|
|
59
|
+
* { // Filter
|
|
60
60
|
* Name: "file-system-id" || "backup-type" || "file-system-type" || "volume-id" || "data-repository-type" || "file-cache-id" || "file-cache-type",
|
|
61
|
-
* Values: [
|
|
61
|
+
* Values: [ // FilterValues
|
|
62
62
|
* "STRING_VALUE",
|
|
63
63
|
* ],
|
|
64
64
|
* },
|
|
@@ -44,14 +44,14 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
|
|
|
44
44
|
* import { FSxClient, DescribeDataRepositoryAssociationsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
45
45
|
* // const { FSxClient, DescribeDataRepositoryAssociationsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
46
46
|
* const client = new FSxClient(config);
|
|
47
|
-
* const input = {
|
|
48
|
-
* AssociationIds: [
|
|
47
|
+
* const input = { // DescribeDataRepositoryAssociationsRequest
|
|
48
|
+
* AssociationIds: [ // DataRepositoryAssociationIds
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
|
-
* Filters: [
|
|
52
|
-
* {
|
|
51
|
+
* Filters: [ // Filters
|
|
52
|
+
* { // Filter
|
|
53
53
|
* Name: "file-system-id" || "backup-type" || "file-system-type" || "volume-id" || "data-repository-type" || "file-cache-id" || "file-cache-type",
|
|
54
|
-
* Values: [
|
|
54
|
+
* Values: [ // FilterValues
|
|
55
55
|
* "STRING_VALUE",
|
|
56
56
|
* ],
|
|
57
57
|
* },
|
|
@@ -35,14 +35,14 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
|
|
|
35
35
|
* import { FSxClient, DescribeDataRepositoryTasksCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
36
36
|
* // const { FSxClient, DescribeDataRepositoryTasksCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
37
37
|
* const client = new FSxClient(config);
|
|
38
|
-
* const input = {
|
|
39
|
-
* TaskIds: [
|
|
38
|
+
* const input = { // DescribeDataRepositoryTasksRequest
|
|
39
|
+
* TaskIds: [ // TaskIds
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
|
-
* Filters: [
|
|
43
|
-
* {
|
|
42
|
+
* Filters: [ // DataRepositoryTaskFilters
|
|
43
|
+
* { // DataRepositoryTaskFilter
|
|
44
44
|
* Name: "file-system-id" || "task-lifecycle" || "data-repository-association-id" || "file-cache-id",
|
|
45
|
-
* Values: [
|
|
45
|
+
* Values: [ // DataRepositoryTaskFilterValues
|
|
46
46
|
* "STRING_VALUE",
|
|
47
47
|
* ],
|
|
48
48
|
* },
|
|
@@ -53,8 +53,8 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
|
|
|
53
53
|
* import { FSxClient, DescribeFileCachesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
54
54
|
* // const { FSxClient, DescribeFileCachesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
55
55
|
* const client = new FSxClient(config);
|
|
56
|
-
* const input = {
|
|
57
|
-
* FileCacheIds: [
|
|
56
|
+
* const input = { // DescribeFileCachesRequest
|
|
57
|
+
* FileCacheIds: [ // FileCacheIds
|
|
58
58
|
* "STRING_VALUE",
|
|
59
59
|
* ],
|
|
60
60
|
* MaxResults: Number("int"),
|
|
@@ -28,7 +28,7 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
|
|
|
28
28
|
* import { FSxClient, DescribeFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
29
29
|
* // const { FSxClient, DescribeFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
30
30
|
* const client = new FSxClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // DescribeFileSystemAliasesRequest
|
|
32
32
|
* ClientRequestToken: "STRING_VALUE",
|
|
33
33
|
* FileSystemId: "STRING_VALUE", // required
|
|
34
34
|
* MaxResults: Number("int"),
|
|
@@ -53,8 +53,8 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
53
53
|
* import { FSxClient, DescribeFileSystemsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
54
54
|
* // const { FSxClient, DescribeFileSystemsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
55
55
|
* const client = new FSxClient(config);
|
|
56
|
-
* const input = {
|
|
57
|
-
* FileSystemIds: [
|
|
56
|
+
* const input = { // DescribeFileSystemsRequest
|
|
57
|
+
* FileSystemIds: [ // FileSystemIds
|
|
58
58
|
* "STRING_VALUE",
|
|
59
59
|
* ],
|
|
60
60
|
* MaxResults: Number("int"),
|
|
@@ -52,14 +52,14 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
|
|
|
52
52
|
* import { FSxClient, DescribeSnapshotsCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
53
53
|
* // const { FSxClient, DescribeSnapshotsCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
54
54
|
* const client = new FSxClient(config);
|
|
55
|
-
* const input = {
|
|
56
|
-
* SnapshotIds: [
|
|
55
|
+
* const input = { // DescribeSnapshotsRequest
|
|
56
|
+
* SnapshotIds: [ // SnapshotIds
|
|
57
57
|
* "STRING_VALUE",
|
|
58
58
|
* ],
|
|
59
|
-
* Filters: [
|
|
60
|
-
* {
|
|
59
|
+
* Filters: [ // SnapshotFilters
|
|
60
|
+
* { // SnapshotFilter
|
|
61
61
|
* Name: "file-system-id" || "volume-id",
|
|
62
|
-
* Values: [
|
|
62
|
+
* Values: [ // SnapshotFilterValues
|
|
63
63
|
* "STRING_VALUE",
|
|
64
64
|
* ],
|
|
65
65
|
* },
|
|
@@ -26,14 +26,14 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
|
|
|
26
26
|
* import { FSxClient, DescribeStorageVirtualMachinesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
27
27
|
* // const { FSxClient, DescribeStorageVirtualMachinesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
28
28
|
* const client = new FSxClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* StorageVirtualMachineIds: [
|
|
29
|
+
* const input = { // DescribeStorageVirtualMachinesRequest
|
|
30
|
+
* StorageVirtualMachineIds: [ // StorageVirtualMachineIds
|
|
31
31
|
* "STRING_VALUE",
|
|
32
32
|
* ],
|
|
33
|
-
* Filters: [
|
|
34
|
-
* {
|
|
33
|
+
* Filters: [ // StorageVirtualMachineFilters
|
|
34
|
+
* { // StorageVirtualMachineFilter
|
|
35
35
|
* Name: "file-system-id",
|
|
36
|
-
* Values: [
|
|
36
|
+
* Values: [ // StorageVirtualMachineFilterValues
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* },
|
|
@@ -27,14 +27,14 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
|
|
|
27
27
|
* import { FSxClient, DescribeVolumesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
28
28
|
* // const { FSxClient, DescribeVolumesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
29
29
|
* const client = new FSxClient(config);
|
|
30
|
-
* const input = {
|
|
31
|
-
* VolumeIds: [
|
|
30
|
+
* const input = { // DescribeVolumesRequest
|
|
31
|
+
* VolumeIds: [ // VolumeIds
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
|
-
* Filters: [
|
|
35
|
-
* {
|
|
34
|
+
* Filters: [ // VolumeFilters
|
|
35
|
+
* { // VolumeFilter
|
|
36
36
|
* Name: "file-system-id" || "storage-virtual-machine-id",
|
|
37
|
-
* Values: [
|
|
37
|
+
* Values: [ // VolumeFilterValues
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
40
|
* },
|
|
@@ -34,10 +34,10 @@ export interface DisassociateFileSystemAliasesCommandOutput extends Disassociate
|
|
|
34
34
|
* import { FSxClient, DisassociateFileSystemAliasesCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
35
35
|
* // const { FSxClient, DisassociateFileSystemAliasesCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
36
36
|
* const client = new FSxClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // DisassociateFileSystemAliasesRequest
|
|
38
38
|
* ClientRequestToken: "STRING_VALUE",
|
|
39
39
|
* FileSystemId: "STRING_VALUE", // required
|
|
40
|
-
* Aliases: [ // required
|
|
40
|
+
* Aliases: [ // AlternateDNSNames // required
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
43
|
* };
|
|
@@ -49,7 +49,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
49
49
|
* import { FSxClient, ListTagsForResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
50
50
|
* // const { FSxClient, ListTagsForResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
51
51
|
* const client = new FSxClient(config);
|
|
52
|
-
* const input = {
|
|
52
|
+
* const input = { // ListTagsForResourceRequest
|
|
53
53
|
* ResourceARN: "STRING_VALUE", // required
|
|
54
54
|
* MaxResults: Number("int"),
|
|
55
55
|
* NextToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSys
|
|
|
27
27
|
* import { FSxClient, ReleaseFileSystemNfsV3LocksCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
28
28
|
* // const { FSxClient, ReleaseFileSystemNfsV3LocksCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
29
29
|
* const client = new FSxClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ReleaseFileSystemNfsV3LocksRequest
|
|
31
31
|
* FileSystemId: "STRING_VALUE", // required
|
|
32
32
|
* ClientRequestToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -27,11 +27,11 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro
|
|
|
27
27
|
* import { FSxClient, RestoreVolumeFromSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
28
28
|
* // const { FSxClient, RestoreVolumeFromSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
29
29
|
* const client = new FSxClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // RestoreVolumeFromSnapshotRequest
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE",
|
|
32
32
|
* VolumeId: "STRING_VALUE", // required
|
|
33
33
|
* SnapshotId: "STRING_VALUE", // required
|
|
34
|
-
* Options: [
|
|
34
|
+
* Options: [ // RestoreOpenZFSVolumeOptions
|
|
35
35
|
* "DELETE_INTERMEDIATE_SNAPSHOTS" || "DELETE_CLONED_VOLUMES",
|
|
36
36
|
* ],
|
|
37
37
|
* };
|
|
@@ -26,10 +26,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { FSxClient, TagResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
27
27
|
* // const { FSxClient, TagResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
28
28
|
* const client = new FSxClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // TagResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* Tags: [ // required
|
|
32
|
-
* {
|
|
31
|
+
* Tags: [ // Tags // required
|
|
32
|
+
* { // Tag
|
|
33
33
|
* Key: "STRING_VALUE", // required
|
|
34
34
|
* Value: "STRING_VALUE", // required
|
|
35
35
|
* },
|
|
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { FSxClient, UntagResourceCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
27
27
|
* // const { FSxClient, UntagResourceCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
28
28
|
* const client = new FSxClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UntagResourceRequest
|
|
30
30
|
* ResourceARN: "STRING_VALUE", // required
|
|
31
|
-
* TagKeys: [ // required
|
|
31
|
+
* TagKeys: [ // TagKeys // required
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
34
|
* };
|
|
@@ -28,17 +28,17 @@ export interface UpdateDataRepositoryAssociationCommandOutput extends UpdateData
|
|
|
28
28
|
* import { FSxClient, UpdateDataRepositoryAssociationCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
29
29
|
* // const { FSxClient, UpdateDataRepositoryAssociationCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
30
30
|
* const client = new FSxClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // UpdateDataRepositoryAssociationRequest
|
|
32
32
|
* AssociationId: "STRING_VALUE", // required
|
|
33
33
|
* ClientRequestToken: "STRING_VALUE",
|
|
34
34
|
* ImportedFileChunkSize: Number("int"),
|
|
35
|
-
* S3: {
|
|
36
|
-
* AutoImportPolicy: {
|
|
37
|
-
* Events: [
|
|
35
|
+
* S3: { // S3DataRepositoryConfiguration
|
|
36
|
+
* AutoImportPolicy: { // AutoImportPolicy
|
|
37
|
+
* Events: [ // EventTypes
|
|
38
38
|
* "NEW" || "CHANGED" || "DELETED",
|
|
39
39
|
* ],
|
|
40
40
|
* },
|
|
41
|
-
* AutoExportPolicy: {
|
|
41
|
+
* AutoExportPolicy: { // AutoExportPolicy
|
|
42
42
|
* Events: [
|
|
43
43
|
* "NEW" || "CHANGED" || "DELETED",
|
|
44
44
|
* ],
|
|
@@ -27,10 +27,10 @@ export interface UpdateFileCacheCommandOutput extends UpdateFileCacheResponse, _
|
|
|
27
27
|
* import { FSxClient, UpdateFileCacheCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
28
28
|
* // const { FSxClient, UpdateFileCacheCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
29
29
|
* const client = new FSxClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // UpdateFileCacheRequest
|
|
31
31
|
* FileCacheId: "STRING_VALUE", // required
|
|
32
32
|
* ClientRequestToken: "STRING_VALUE",
|
|
33
|
-
* LustreConfiguration: {
|
|
33
|
+
* LustreConfiguration: { // UpdateFileCacheLustreConfiguration
|
|
34
34
|
* WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -178,63 +178,63 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
178
178
|
* import { FSxClient, UpdateFileSystemCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
179
179
|
* // const { FSxClient, UpdateFileSystemCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
180
180
|
* const client = new FSxClient(config);
|
|
181
|
-
* const input = {
|
|
181
|
+
* const input = { // UpdateFileSystemRequest
|
|
182
182
|
* FileSystemId: "STRING_VALUE", // required
|
|
183
183
|
* ClientRequestToken: "STRING_VALUE",
|
|
184
184
|
* StorageCapacity: Number("int"),
|
|
185
|
-
* WindowsConfiguration: {
|
|
185
|
+
* WindowsConfiguration: { // UpdateFileSystemWindowsConfiguration
|
|
186
186
|
* WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
187
187
|
* DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
188
188
|
* AutomaticBackupRetentionDays: Number("int"),
|
|
189
189
|
* ThroughputCapacity: Number("int"),
|
|
190
|
-
* SelfManagedActiveDirectoryConfiguration: {
|
|
190
|
+
* SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfigurationUpdates
|
|
191
191
|
* UserName: "STRING_VALUE",
|
|
192
192
|
* Password: "STRING_VALUE",
|
|
193
|
-
* DnsIps: [
|
|
193
|
+
* DnsIps: [ // DnsIps
|
|
194
194
|
* "STRING_VALUE",
|
|
195
195
|
* ],
|
|
196
196
|
* },
|
|
197
|
-
* AuditLogConfiguration: {
|
|
197
|
+
* AuditLogConfiguration: { // WindowsAuditLogCreateConfiguration
|
|
198
198
|
* FileAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
199
199
|
* FileShareAccessAuditLogLevel: "DISABLED" || "SUCCESS_ONLY" || "FAILURE_ONLY" || "SUCCESS_AND_FAILURE", // required
|
|
200
200
|
* AuditLogDestination: "STRING_VALUE",
|
|
201
201
|
* },
|
|
202
202
|
* },
|
|
203
|
-
* LustreConfiguration: {
|
|
203
|
+
* LustreConfiguration: { // UpdateFileSystemLustreConfiguration
|
|
204
204
|
* WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
205
205
|
* DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
206
206
|
* AutomaticBackupRetentionDays: Number("int"),
|
|
207
207
|
* AutoImportPolicy: "NONE" || "NEW" || "NEW_CHANGED" || "NEW_CHANGED_DELETED",
|
|
208
208
|
* DataCompressionType: "NONE" || "LZ4",
|
|
209
|
-
* LogConfiguration: {
|
|
209
|
+
* LogConfiguration: { // LustreLogCreateConfiguration
|
|
210
210
|
* Level: "DISABLED" || "WARN_ONLY" || "ERROR_ONLY" || "WARN_ERROR", // required
|
|
211
211
|
* Destination: "STRING_VALUE",
|
|
212
212
|
* },
|
|
213
|
-
* RootSquashConfiguration: {
|
|
213
|
+
* RootSquashConfiguration: { // LustreRootSquashConfiguration
|
|
214
214
|
* RootSquash: "STRING_VALUE",
|
|
215
|
-
* NoSquashNids: [
|
|
215
|
+
* NoSquashNids: [ // LustreNoSquashNids
|
|
216
216
|
* "STRING_VALUE",
|
|
217
217
|
* ],
|
|
218
218
|
* },
|
|
219
219
|
* },
|
|
220
|
-
* OntapConfiguration: {
|
|
220
|
+
* OntapConfiguration: { // UpdateFileSystemOntapConfiguration
|
|
221
221
|
* AutomaticBackupRetentionDays: Number("int"),
|
|
222
222
|
* DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
223
223
|
* FsxAdminPassword: "STRING_VALUE",
|
|
224
224
|
* WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
225
|
-
* DiskIopsConfiguration: {
|
|
225
|
+
* DiskIopsConfiguration: { // DiskIopsConfiguration
|
|
226
226
|
* Mode: "AUTOMATIC" || "USER_PROVISIONED",
|
|
227
227
|
* Iops: Number("long"),
|
|
228
228
|
* },
|
|
229
229
|
* ThroughputCapacity: Number("int"),
|
|
230
|
-
* AddRouteTableIds: [
|
|
230
|
+
* AddRouteTableIds: [ // RouteTableIds
|
|
231
231
|
* "STRING_VALUE",
|
|
232
232
|
* ],
|
|
233
233
|
* RemoveRouteTableIds: [
|
|
234
234
|
* "STRING_VALUE",
|
|
235
235
|
* ],
|
|
236
236
|
* },
|
|
237
|
-
* OpenZFSConfiguration: {
|
|
237
|
+
* OpenZFSConfiguration: { // UpdateFileSystemOpenZFSConfiguration
|
|
238
238
|
* AutomaticBackupRetentionDays: Number("int"),
|
|
239
239
|
* CopyTagsToBackups: true || false,
|
|
240
240
|
* CopyTagsToVolumes: true || false,
|
|
@@ -26,7 +26,7 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
26
26
|
* import { FSxClient, UpdateSnapshotCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
27
27
|
* // const { FSxClient, UpdateSnapshotCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
28
28
|
* const client = new FSxClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateSnapshotRequest
|
|
30
30
|
* ClientRequestToken: "STRING_VALUE",
|
|
31
31
|
* Name: "STRING_VALUE", // required
|
|
32
32
|
* SnapshotId: "STRING_VALUE", // required
|
|
@@ -26,12 +26,12 @@ export interface UpdateStorageVirtualMachineCommandOutput extends UpdateStorageV
|
|
|
26
26
|
* import { FSxClient, UpdateStorageVirtualMachineCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
27
27
|
* // const { FSxClient, UpdateStorageVirtualMachineCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
28
28
|
* const client = new FSxClient(config);
|
|
29
|
-
* const input = {
|
|
30
|
-
* ActiveDirectoryConfiguration: {
|
|
31
|
-
* SelfManagedActiveDirectoryConfiguration: {
|
|
29
|
+
* const input = { // UpdateStorageVirtualMachineRequest
|
|
30
|
+
* ActiveDirectoryConfiguration: { // UpdateSvmActiveDirectoryConfiguration
|
|
31
|
+
* SelfManagedActiveDirectoryConfiguration: { // SelfManagedActiveDirectoryConfigurationUpdates
|
|
32
32
|
* UserName: "STRING_VALUE",
|
|
33
33
|
* Password: "STRING_VALUE",
|
|
34
|
-
* DnsIps: [
|
|
34
|
+
* DnsIps: [ // DnsIps
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
37
|
* },
|
|
@@ -26,15 +26,15 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
|
|
|
26
26
|
* import { FSxClient, UpdateVolumeCommand } from "@aws-sdk/client-fsx"; // ES Modules import
|
|
27
27
|
* // const { FSxClient, UpdateVolumeCommand } = require("@aws-sdk/client-fsx"); // CommonJS import
|
|
28
28
|
* const client = new FSxClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // UpdateVolumeRequest
|
|
30
30
|
* ClientRequestToken: "STRING_VALUE",
|
|
31
31
|
* VolumeId: "STRING_VALUE", // required
|
|
32
|
-
* OntapConfiguration: {
|
|
32
|
+
* OntapConfiguration: { // UpdateOntapVolumeConfiguration
|
|
33
33
|
* JunctionPath: "STRING_VALUE",
|
|
34
34
|
* SecurityStyle: "UNIX" || "NTFS" || "MIXED",
|
|
35
35
|
* SizeInMegabytes: Number("int"),
|
|
36
36
|
* StorageEfficiencyEnabled: true || false,
|
|
37
|
-
* TieringPolicy: {
|
|
37
|
+
* TieringPolicy: { // TieringPolicy
|
|
38
38
|
* CoolingPeriod: Number("int"),
|
|
39
39
|
* Name: "SNAPSHOT_ONLY" || "AUTO" || "ALL" || "NONE",
|
|
40
40
|
* },
|
|
@@ -42,25 +42,25 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
|
|
|
42
42
|
* CopyTagsToBackups: true || false,
|
|
43
43
|
* },
|
|
44
44
|
* Name: "STRING_VALUE",
|
|
45
|
-
* OpenZFSConfiguration: {
|
|
45
|
+
* OpenZFSConfiguration: { // UpdateOpenZFSVolumeConfiguration
|
|
46
46
|
* StorageCapacityReservationGiB: Number("int"),
|
|
47
47
|
* StorageCapacityQuotaGiB: Number("int"),
|
|
48
48
|
* RecordSizeKiB: Number("int"),
|
|
49
49
|
* DataCompressionType: "NONE" || "ZSTD" || "LZ4",
|
|
50
|
-
* NfsExports: [
|
|
51
|
-
* {
|
|
52
|
-
* ClientConfigurations: [ // required
|
|
53
|
-
* {
|
|
50
|
+
* NfsExports: [ // OpenZFSNfsExports
|
|
51
|
+
* { // OpenZFSNfsExport
|
|
52
|
+
* ClientConfigurations: [ // OpenZFSClientConfigurations // required
|
|
53
|
+
* { // OpenZFSClientConfiguration
|
|
54
54
|
* Clients: "STRING_VALUE", // required
|
|
55
|
-
* Options: [ // required
|
|
55
|
+
* Options: [ // OpenZFSNfsExportOptions // required
|
|
56
56
|
* "STRING_VALUE",
|
|
57
57
|
* ],
|
|
58
58
|
* },
|
|
59
59
|
* ],
|
|
60
60
|
* },
|
|
61
61
|
* ],
|
|
62
|
-
* UserAndGroupQuotas: [
|
|
63
|
-
* {
|
|
62
|
+
* UserAndGroupQuotas: [ // OpenZFSUserAndGroupQuotas
|
|
63
|
+
* { // OpenZFSUserOrGroupQuota
|
|
64
64
|
* Type: "USER" || "GROUP", // required
|
|
65
65
|
* Id: Number("int"), // required
|
|
66
66
|
* StorageCapacityQuotaGiB: Number("int"), // required
|