@aws-sdk/client-fsx 3.40.0 → 3.44.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.
Files changed (101) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/dist-cjs/FSx.js +150 -0
  3. package/dist-cjs/commands/CreateDataRepositoryAssociationCommand.js +36 -0
  4. package/dist-cjs/commands/CreateSnapshotCommand.js +36 -0
  5. package/dist-cjs/commands/DeleteDataRepositoryAssociationCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteSnapshotCommand.js +36 -0
  7. package/dist-cjs/commands/DescribeDataRepositoryAssociationsCommand.js +36 -0
  8. package/dist-cjs/commands/DescribeSnapshotsCommand.js +36 -0
  9. package/dist-cjs/commands/ReleaseFileSystemNfsV3LocksCommand.js +36 -0
  10. package/dist-cjs/commands/RestoreVolumeFromSnapshotCommand.js +36 -0
  11. package/dist-cjs/commands/UpdateDataRepositoryAssociationCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateSnapshotCommand.js +36 -0
  13. package/dist-cjs/commands/index.js +10 -0
  14. package/dist-cjs/endpoints.js +8 -0
  15. package/dist-cjs/models/models_0.js +386 -44
  16. package/dist-cjs/pagination/DescribeDataRepositoryAssociationsPaginator.js +35 -0
  17. package/dist-cjs/pagination/DescribeSnapshotsPaginator.js +35 -0
  18. package/dist-cjs/pagination/index.js +2 -0
  19. package/dist-cjs/protocols/Aws_json1_1.js +1745 -131
  20. package/dist-es/FSx.js +150 -0
  21. package/dist-es/commands/CreateDataRepositoryAssociationCommand.js +39 -0
  22. package/dist-es/commands/CreateSnapshotCommand.js +39 -0
  23. package/dist-es/commands/DeleteDataRepositoryAssociationCommand.js +39 -0
  24. package/dist-es/commands/DeleteSnapshotCommand.js +39 -0
  25. package/dist-es/commands/DescribeDataRepositoryAssociationsCommand.js +39 -0
  26. package/dist-es/commands/DescribeSnapshotsCommand.js +39 -0
  27. package/dist-es/commands/ReleaseFileSystemNfsV3LocksCommand.js +39 -0
  28. package/dist-es/commands/RestoreVolumeFromSnapshotCommand.js +39 -0
  29. package/dist-es/commands/UpdateDataRepositoryAssociationCommand.js +39 -0
  30. package/dist-es/commands/UpdateSnapshotCommand.js +39 -0
  31. package/dist-es/commands/index.js +10 -0
  32. package/dist-es/endpoints.js +8 -0
  33. package/dist-es/models/models_0.js +277 -28
  34. package/dist-es/pagination/DescribeDataRepositoryAssociationsPaginator.js +74 -0
  35. package/dist-es/pagination/DescribeSnapshotsPaginator.js +74 -0
  36. package/dist-es/pagination/index.js +2 -0
  37. package/dist-es/protocols/Aws_json1_1.js +1653 -74
  38. package/dist-types/FSx.d.ts +406 -146
  39. package/dist-types/FSxClient.d.ts +12 -2
  40. package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +1 -1
  41. package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +1 -1
  42. package/dist-types/commands/CopyBackupCommand.d.ts +13 -13
  43. package/dist-types/commands/CreateBackupCommand.d.ts +28 -26
  44. package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +45 -0
  45. package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +7 -6
  46. package/dist-types/commands/CreateFileSystemCommand.d.ts +37 -17
  47. package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +15 -15
  48. package/dist-types/commands/CreateSnapshotCommand.d.ts +62 -0
  49. package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +1 -1
  50. package/dist-types/commands/CreateVolumeCommand.d.ts +3 -2
  51. package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +1 -1
  52. package/dist-types/commands/DeleteBackupCommand.d.ts +5 -4
  53. package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +41 -0
  54. package/dist-types/commands/DeleteFileSystemCommand.d.ts +15 -16
  55. package/dist-types/commands/DeleteSnapshotCommand.d.ts +39 -0
  56. package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +1 -1
  57. package/dist-types/commands/DeleteVolumeCommand.d.ts +3 -5
  58. package/dist-types/commands/DescribeBackupsCommand.d.ts +18 -19
  59. package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +53 -0
  60. package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +1 -1
  61. package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +1 -1
  62. package/dist-types/commands/DescribeFileSystemsCommand.d.ts +10 -10
  63. package/dist-types/commands/DescribeSnapshotsCommand.d.ts +61 -0
  64. package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +1 -1
  65. package/dist-types/commands/DescribeVolumesCommand.d.ts +3 -2
  66. package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +1 -1
  67. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  68. package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +36 -0
  69. package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +36 -0
  70. package/dist-types/commands/TagResourceCommand.d.ts +1 -1
  71. package/dist-types/commands/UntagResourceCommand.d.ts +1 -1
  72. package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +37 -0
  73. package/dist-types/commands/UpdateFileSystemCommand.d.ts +96 -23
  74. package/dist-types/commands/UpdateSnapshotCommand.d.ts +35 -0
  75. package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +1 -1
  76. package/dist-types/commands/UpdateVolumeCommand.d.ts +2 -2
  77. package/dist-types/commands/index.d.ts +10 -0
  78. package/dist-types/models/models_0.d.ts +2705 -649
  79. package/dist-types/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +4 -0
  80. package/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +4 -0
  81. package/dist-types/pagination/index.d.ts +2 -0
  82. package/dist-types/protocols/Aws_json1_1.d.ts +30 -0
  83. package/dist-types/ts3.4/FSx.d.ts +50 -0
  84. package/dist-types/ts3.4/FSxClient.d.ts +12 -2
  85. package/dist-types/ts3.4/commands/CreateDataRepositoryAssociationCommand.d.ts +17 -0
  86. package/dist-types/ts3.4/commands/CreateSnapshotCommand.d.ts +17 -0
  87. package/dist-types/ts3.4/commands/DeleteDataRepositoryAssociationCommand.d.ts +17 -0
  88. package/dist-types/ts3.4/commands/DeleteSnapshotCommand.d.ts +17 -0
  89. package/dist-types/ts3.4/commands/DescribeDataRepositoryAssociationsCommand.d.ts +17 -0
  90. package/dist-types/ts3.4/commands/DescribeSnapshotsCommand.d.ts +17 -0
  91. package/dist-types/ts3.4/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +17 -0
  92. package/dist-types/ts3.4/commands/RestoreVolumeFromSnapshotCommand.d.ts +17 -0
  93. package/dist-types/ts3.4/commands/UpdateDataRepositoryAssociationCommand.d.ts +17 -0
  94. package/dist-types/ts3.4/commands/UpdateSnapshotCommand.d.ts +17 -0
  95. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  96. package/dist-types/ts3.4/models/models_0.d.ts +790 -81
  97. package/dist-types/ts3.4/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +4 -0
  98. package/dist-types/ts3.4/pagination/DescribeSnapshotsPaginator.d.ts +4 -0
  99. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  100. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +30 -0
  101. package/package.json +4 -4
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput } from "../commands/DescribeDataRepositoryAssociationsCommand";
3
+ import { FSxPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeDataRepositoryAssociations(config: FSxPaginationConfiguration, input: DescribeDataRepositoryAssociationsCommandInput, ...additionalArguments: any): Paginator<DescribeDataRepositoryAssociationsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "../commands/DescribeSnapshotsCommand";
3
+ import { FSxPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateDescribeSnapshots(config: FSxPaginationConfiguration, input: DescribeSnapshotsCommandInput, ...additionalArguments: any): Paginator<DescribeSnapshotsCommandOutput>;
@@ -1,7 +1,9 @@
1
1
  export * from "./DescribeBackupsPaginator";
2
+ export * from "./DescribeDataRepositoryAssociationsPaginator";
2
3
  export * from "./DescribeDataRepositoryTasksPaginator";
3
4
  export * from "./DescribeFileSystemAliasesPaginator";
4
5
  export * from "./DescribeFileSystemsPaginator";
6
+ export * from "./DescribeSnapshotsPaginator";
5
7
  export * from "./DescribeStorageVirtualMachinesPaginator";
6
8
  export * from "./DescribeVolumesPaginator";
7
9
  export * from "./Interfaces";
@@ -4,80 +4,110 @@ import { AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesComma
4
4
  import { CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput } from "../commands/CancelDataRepositoryTaskCommand";
5
5
  import { CopyBackupCommandInput, CopyBackupCommandOutput } from "../commands/CopyBackupCommand";
6
6
  import { CreateBackupCommandInput, CreateBackupCommandOutput } from "../commands/CreateBackupCommand";
7
+ import { CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput } from "../commands/CreateDataRepositoryAssociationCommand";
7
8
  import { CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput } from "../commands/CreateDataRepositoryTaskCommand";
8
9
  import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "../commands/CreateFileSystemCommand";
9
10
  import { CreateFileSystemFromBackupCommandInput, CreateFileSystemFromBackupCommandOutput } from "../commands/CreateFileSystemFromBackupCommand";
11
+ import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "../commands/CreateSnapshotCommand";
10
12
  import { CreateStorageVirtualMachineCommandInput, CreateStorageVirtualMachineCommandOutput } from "../commands/CreateStorageVirtualMachineCommand";
11
13
  import { CreateVolumeCommandInput, CreateVolumeCommandOutput } from "../commands/CreateVolumeCommand";
12
14
  import { CreateVolumeFromBackupCommandInput, CreateVolumeFromBackupCommandOutput } from "../commands/CreateVolumeFromBackupCommand";
13
15
  import { DeleteBackupCommandInput, DeleteBackupCommandOutput } from "../commands/DeleteBackupCommand";
16
+ import { DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput } from "../commands/DeleteDataRepositoryAssociationCommand";
14
17
  import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "../commands/DeleteFileSystemCommand";
18
+ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "../commands/DeleteSnapshotCommand";
15
19
  import { DeleteStorageVirtualMachineCommandInput, DeleteStorageVirtualMachineCommandOutput } from "../commands/DeleteStorageVirtualMachineCommand";
16
20
  import { DeleteVolumeCommandInput, DeleteVolumeCommandOutput } from "../commands/DeleteVolumeCommand";
17
21
  import { DescribeBackupsCommandInput, DescribeBackupsCommandOutput } from "../commands/DescribeBackupsCommand";
22
+ import { DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput } from "../commands/DescribeDataRepositoryAssociationsCommand";
18
23
  import { DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput } from "../commands/DescribeDataRepositoryTasksCommand";
19
24
  import { DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput } from "../commands/DescribeFileSystemAliasesCommand";
20
25
  import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "../commands/DescribeFileSystemsCommand";
26
+ import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "../commands/DescribeSnapshotsCommand";
21
27
  import { DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput } from "../commands/DescribeStorageVirtualMachinesCommand";
22
28
  import { DescribeVolumesCommandInput, DescribeVolumesCommandOutput } from "../commands/DescribeVolumesCommand";
23
29
  import { DisassociateFileSystemAliasesCommandInput, DisassociateFileSystemAliasesCommandOutput } from "../commands/DisassociateFileSystemAliasesCommand";
24
30
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
31
+ import { ReleaseFileSystemNfsV3LocksCommandInput, ReleaseFileSystemNfsV3LocksCommandOutput } from "../commands/ReleaseFileSystemNfsV3LocksCommand";
32
+ import { RestoreVolumeFromSnapshotCommandInput, RestoreVolumeFromSnapshotCommandOutput } from "../commands/RestoreVolumeFromSnapshotCommand";
25
33
  import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
26
34
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
35
+ import { UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput } from "../commands/UpdateDataRepositoryAssociationCommand";
27
36
  import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "../commands/UpdateFileSystemCommand";
37
+ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "../commands/UpdateSnapshotCommand";
28
38
  import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "../commands/UpdateStorageVirtualMachineCommand";
29
39
  import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "../commands/UpdateVolumeCommand";
30
40
  export declare const serializeAws_json1_1AssociateFileSystemAliasesCommand: (input: AssociateFileSystemAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
41
  export declare const serializeAws_json1_1CancelDataRepositoryTaskCommand: (input: CancelDataRepositoryTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
42
  export declare const serializeAws_json1_1CopyBackupCommand: (input: CopyBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
43
  export declare const serializeAws_json1_1CreateBackupCommand: (input: CreateBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
+ export declare const serializeAws_json1_1CreateDataRepositoryAssociationCommand: (input: CreateDataRepositoryAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
45
  export declare const serializeAws_json1_1CreateDataRepositoryTaskCommand: (input: CreateDataRepositoryTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
46
  export declare const serializeAws_json1_1CreateFileSystemCommand: (input: CreateFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
47
  export declare const serializeAws_json1_1CreateFileSystemFromBackupCommand: (input: CreateFileSystemFromBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
+ export declare const serializeAws_json1_1CreateSnapshotCommand: (input: CreateSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
49
  export declare const serializeAws_json1_1CreateStorageVirtualMachineCommand: (input: CreateStorageVirtualMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
50
  export declare const serializeAws_json1_1CreateVolumeCommand: (input: CreateVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
51
  export declare const serializeAws_json1_1CreateVolumeFromBackupCommand: (input: CreateVolumeFromBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
52
  export declare const serializeAws_json1_1DeleteBackupCommand: (input: DeleteBackupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
+ export declare const serializeAws_json1_1DeleteDataRepositoryAssociationCommand: (input: DeleteDataRepositoryAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
54
  export declare const serializeAws_json1_1DeleteFileSystemCommand: (input: DeleteFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ export declare const serializeAws_json1_1DeleteSnapshotCommand: (input: DeleteSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
56
  export declare const serializeAws_json1_1DeleteStorageVirtualMachineCommand: (input: DeleteStorageVirtualMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
57
  export declare const serializeAws_json1_1DeleteVolumeCommand: (input: DeleteVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
58
  export declare const serializeAws_json1_1DescribeBackupsCommand: (input: DescribeBackupsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ export declare const serializeAws_json1_1DescribeDataRepositoryAssociationsCommand: (input: DescribeDataRepositoryAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
60
  export declare const serializeAws_json1_1DescribeDataRepositoryTasksCommand: (input: DescribeDataRepositoryTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
61
  export declare const serializeAws_json1_1DescribeFileSystemAliasesCommand: (input: DescribeFileSystemAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
62
  export declare const serializeAws_json1_1DescribeFileSystemsCommand: (input: DescribeFileSystemsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ export declare const serializeAws_json1_1DescribeSnapshotsCommand: (input: DescribeSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
64
  export declare const serializeAws_json1_1DescribeStorageVirtualMachinesCommand: (input: DescribeStorageVirtualMachinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
65
  export declare const serializeAws_json1_1DescribeVolumesCommand: (input: DescribeVolumesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
66
  export declare const serializeAws_json1_1DisassociateFileSystemAliasesCommand: (input: DisassociateFileSystemAliasesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
67
  export declare const serializeAws_json1_1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
68
+ export declare const serializeAws_json1_1ReleaseFileSystemNfsV3LocksCommand: (input: ReleaseFileSystemNfsV3LocksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
+ export declare const serializeAws_json1_1RestoreVolumeFromSnapshotCommand: (input: RestoreVolumeFromSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
70
  export declare const serializeAws_json1_1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
71
  export declare const serializeAws_json1_1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
72
+ export declare const serializeAws_json1_1UpdateDataRepositoryAssociationCommand: (input: UpdateDataRepositoryAssociationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
73
  export declare const serializeAws_json1_1UpdateFileSystemCommand: (input: UpdateFileSystemCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_json1_1UpdateSnapshotCommand: (input: UpdateSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
75
  export declare const serializeAws_json1_1UpdateStorageVirtualMachineCommand: (input: UpdateStorageVirtualMachineCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
76
  export declare const serializeAws_json1_1UpdateVolumeCommand: (input: UpdateVolumeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
77
  export declare const deserializeAws_json1_1AssociateFileSystemAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateFileSystemAliasesCommandOutput>;
58
78
  export declare const deserializeAws_json1_1CancelDataRepositoryTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelDataRepositoryTaskCommandOutput>;
59
79
  export declare const deserializeAws_json1_1CopyBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CopyBackupCommandOutput>;
60
80
  export declare const deserializeAws_json1_1CreateBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateBackupCommandOutput>;
81
+ export declare const deserializeAws_json1_1CreateDataRepositoryAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataRepositoryAssociationCommandOutput>;
61
82
  export declare const deserializeAws_json1_1CreateDataRepositoryTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateDataRepositoryTaskCommandOutput>;
62
83
  export declare const deserializeAws_json1_1CreateFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFileSystemCommandOutput>;
63
84
  export declare const deserializeAws_json1_1CreateFileSystemFromBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFileSystemFromBackupCommandOutput>;
85
+ export declare const deserializeAws_json1_1CreateSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSnapshotCommandOutput>;
64
86
  export declare const deserializeAws_json1_1CreateStorageVirtualMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateStorageVirtualMachineCommandOutput>;
65
87
  export declare const deserializeAws_json1_1CreateVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVolumeCommandOutput>;
66
88
  export declare const deserializeAws_json1_1CreateVolumeFromBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVolumeFromBackupCommandOutput>;
67
89
  export declare const deserializeAws_json1_1DeleteBackupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteBackupCommandOutput>;
90
+ export declare const deserializeAws_json1_1DeleteDataRepositoryAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteDataRepositoryAssociationCommandOutput>;
68
91
  export declare const deserializeAws_json1_1DeleteFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFileSystemCommandOutput>;
92
+ export declare const deserializeAws_json1_1DeleteSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteSnapshotCommandOutput>;
69
93
  export declare const deserializeAws_json1_1DeleteStorageVirtualMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteStorageVirtualMachineCommandOutput>;
70
94
  export declare const deserializeAws_json1_1DeleteVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVolumeCommandOutput>;
71
95
  export declare const deserializeAws_json1_1DescribeBackupsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeBackupsCommandOutput>;
96
+ export declare const deserializeAws_json1_1DescribeDataRepositoryAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDataRepositoryAssociationsCommandOutput>;
72
97
  export declare const deserializeAws_json1_1DescribeDataRepositoryTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeDataRepositoryTasksCommandOutput>;
73
98
  export declare const deserializeAws_json1_1DescribeFileSystemAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFileSystemAliasesCommandOutput>;
74
99
  export declare const deserializeAws_json1_1DescribeFileSystemsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFileSystemsCommandOutput>;
100
+ export declare const deserializeAws_json1_1DescribeSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSnapshotsCommandOutput>;
75
101
  export declare const deserializeAws_json1_1DescribeStorageVirtualMachinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeStorageVirtualMachinesCommandOutput>;
76
102
  export declare const deserializeAws_json1_1DescribeVolumesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVolumesCommandOutput>;
77
103
  export declare const deserializeAws_json1_1DisassociateFileSystemAliasesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateFileSystemAliasesCommandOutput>;
78
104
  export declare const deserializeAws_json1_1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
105
+ export declare const deserializeAws_json1_1ReleaseFileSystemNfsV3LocksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ReleaseFileSystemNfsV3LocksCommandOutput>;
106
+ export declare const deserializeAws_json1_1RestoreVolumeFromSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RestoreVolumeFromSnapshotCommandOutput>;
79
107
  export declare const deserializeAws_json1_1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
80
108
  export declare const deserializeAws_json1_1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
109
+ export declare const deserializeAws_json1_1UpdateDataRepositoryAssociationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateDataRepositoryAssociationCommandOutput>;
81
110
  export declare const deserializeAws_json1_1UpdateFileSystemCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFileSystemCommandOutput>;
111
+ export declare const deserializeAws_json1_1UpdateSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateSnapshotCommandOutput>;
82
112
  export declare const deserializeAws_json1_1UpdateStorageVirtualMachineCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateStorageVirtualMachineCommandOutput>;
83
113
  export declare const deserializeAws_json1_1UpdateVolumeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateVolumeCommandOutput>;
@@ -3,27 +3,37 @@ import { AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesComma
3
3
  import { CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput } from "./commands/CancelDataRepositoryTaskCommand";
4
4
  import { CopyBackupCommandInput, CopyBackupCommandOutput } from "./commands/CopyBackupCommand";
5
5
  import { CreateBackupCommandInput, CreateBackupCommandOutput } from "./commands/CreateBackupCommand";
6
+ import { CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput } from "./commands/CreateDataRepositoryAssociationCommand";
6
7
  import { CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput } from "./commands/CreateDataRepositoryTaskCommand";
7
8
  import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "./commands/CreateFileSystemCommand";
8
9
  import { CreateFileSystemFromBackupCommandInput, CreateFileSystemFromBackupCommandOutput } from "./commands/CreateFileSystemFromBackupCommand";
10
+ import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "./commands/CreateSnapshotCommand";
9
11
  import { CreateStorageVirtualMachineCommandInput, CreateStorageVirtualMachineCommandOutput } from "./commands/CreateStorageVirtualMachineCommand";
10
12
  import { CreateVolumeCommandInput, CreateVolumeCommandOutput } from "./commands/CreateVolumeCommand";
11
13
  import { CreateVolumeFromBackupCommandInput, CreateVolumeFromBackupCommandOutput } from "./commands/CreateVolumeFromBackupCommand";
12
14
  import { DeleteBackupCommandInput, DeleteBackupCommandOutput } from "./commands/DeleteBackupCommand";
15
+ import { DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput } from "./commands/DeleteDataRepositoryAssociationCommand";
13
16
  import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "./commands/DeleteFileSystemCommand";
17
+ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "./commands/DeleteSnapshotCommand";
14
18
  import { DeleteStorageVirtualMachineCommandInput, DeleteStorageVirtualMachineCommandOutput } from "./commands/DeleteStorageVirtualMachineCommand";
15
19
  import { DeleteVolumeCommandInput, DeleteVolumeCommandOutput } from "./commands/DeleteVolumeCommand";
16
20
  import { DescribeBackupsCommandInput, DescribeBackupsCommandOutput } from "./commands/DescribeBackupsCommand";
21
+ import { DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput } from "./commands/DescribeDataRepositoryAssociationsCommand";
17
22
  import { DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput } from "./commands/DescribeDataRepositoryTasksCommand";
18
23
  import { DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput } from "./commands/DescribeFileSystemAliasesCommand";
19
24
  import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "./commands/DescribeFileSystemsCommand";
25
+ import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
20
26
  import { DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput } from "./commands/DescribeStorageVirtualMachinesCommand";
21
27
  import { DescribeVolumesCommandInput, DescribeVolumesCommandOutput } from "./commands/DescribeVolumesCommand";
22
28
  import { DisassociateFileSystemAliasesCommandInput, DisassociateFileSystemAliasesCommandOutput } from "./commands/DisassociateFileSystemAliasesCommand";
23
29
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
30
+ import { ReleaseFileSystemNfsV3LocksCommandInput, ReleaseFileSystemNfsV3LocksCommandOutput } from "./commands/ReleaseFileSystemNfsV3LocksCommand";
31
+ import { RestoreVolumeFromSnapshotCommandInput, RestoreVolumeFromSnapshotCommandOutput } from "./commands/RestoreVolumeFromSnapshotCommand";
24
32
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
25
33
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
34
+ import { UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput } from "./commands/UpdateDataRepositoryAssociationCommand";
26
35
  import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "./commands/UpdateFileSystemCommand";
36
+ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./commands/UpdateSnapshotCommand";
27
37
  import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "./commands/UpdateStorageVirtualMachineCommand";
28
38
  import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
29
39
  import { FSxClient } from "./FSxClient";
@@ -46,6 +56,10 @@ export declare class FSx extends FSxClient {
46
56
  createBackup(args: CreateBackupCommandInput, cb: (err: any, data?: CreateBackupCommandOutput) => void): void;
47
57
  createBackup(args: CreateBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateBackupCommandOutput) => void): void;
48
58
 
59
+ createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataRepositoryAssociationCommandOutput>;
60
+ createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, cb: (err: any, data?: CreateDataRepositoryAssociationCommandOutput) => void): void;
61
+ createDataRepositoryAssociation(args: CreateDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRepositoryAssociationCommandOutput) => void): void;
62
+
49
63
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, options?: __HttpHandlerOptions): Promise<CreateDataRepositoryTaskCommandOutput>;
50
64
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, cb: (err: any, data?: CreateDataRepositoryTaskCommandOutput) => void): void;
51
65
  createDataRepositoryTask(args: CreateDataRepositoryTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDataRepositoryTaskCommandOutput) => void): void;
@@ -58,6 +72,10 @@ export declare class FSx extends FSxClient {
58
72
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, cb: (err: any, data?: CreateFileSystemFromBackupCommandOutput) => void): void;
59
73
  createFileSystemFromBackup(args: CreateFileSystemFromBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFileSystemFromBackupCommandOutput) => void): void;
60
74
 
75
+ createSnapshot(args: CreateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateSnapshotCommandOutput>;
76
+ createSnapshot(args: CreateSnapshotCommandInput, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
77
+ createSnapshot(args: CreateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSnapshotCommandOutput) => void): void;
78
+
61
79
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<CreateStorageVirtualMachineCommandOutput>;
62
80
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, cb: (err: any, data?: CreateStorageVirtualMachineCommandOutput) => void): void;
63
81
  createStorageVirtualMachine(args: CreateStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateStorageVirtualMachineCommandOutput) => void): void;
@@ -74,10 +92,18 @@ export declare class FSx extends FSxClient {
74
92
  deleteBackup(args: DeleteBackupCommandInput, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
75
93
  deleteBackup(args: DeleteBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteBackupCommandOutput) => void): void;
76
94
 
95
+ deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteDataRepositoryAssociationCommandOutput>;
96
+ deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, cb: (err: any, data?: DeleteDataRepositoryAssociationCommandOutput) => void): void;
97
+ deleteDataRepositoryAssociation(args: DeleteDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteDataRepositoryAssociationCommandOutput) => void): void;
98
+
77
99
  deleteFileSystem(args: DeleteFileSystemCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFileSystemCommandOutput>;
78
100
  deleteFileSystem(args: DeleteFileSystemCommandInput, cb: (err: any, data?: DeleteFileSystemCommandOutput) => void): void;
79
101
  deleteFileSystem(args: DeleteFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFileSystemCommandOutput) => void): void;
80
102
 
103
+ deleteSnapshot(args: DeleteSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<DeleteSnapshotCommandOutput>;
104
+ deleteSnapshot(args: DeleteSnapshotCommandInput, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
105
+ deleteSnapshot(args: DeleteSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteSnapshotCommandOutput) => void): void;
106
+
81
107
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<DeleteStorageVirtualMachineCommandOutput>;
82
108
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, cb: (err: any, data?: DeleteStorageVirtualMachineCommandOutput) => void): void;
83
109
  deleteStorageVirtualMachine(args: DeleteStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteStorageVirtualMachineCommandOutput) => void): void;
@@ -90,6 +116,10 @@ export declare class FSx extends FSxClient {
90
116
  describeBackups(args: DescribeBackupsCommandInput, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
91
117
  describeBackups(args: DescribeBackupsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeBackupsCommandOutput) => void): void;
92
118
 
119
+ describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataRepositoryAssociationsCommandOutput>;
120
+ describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, cb: (err: any, data?: DescribeDataRepositoryAssociationsCommandOutput) => void): void;
121
+ describeDataRepositoryAssociations(args: DescribeDataRepositoryAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataRepositoryAssociationsCommandOutput) => void): void;
122
+
93
123
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, options?: __HttpHandlerOptions): Promise<DescribeDataRepositoryTasksCommandOutput>;
94
124
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, cb: (err: any, data?: DescribeDataRepositoryTasksCommandOutput) => void): void;
95
125
  describeDataRepositoryTasks(args: DescribeDataRepositoryTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeDataRepositoryTasksCommandOutput) => void): void;
@@ -102,6 +132,10 @@ export declare class FSx extends FSxClient {
102
132
  describeFileSystems(args: DescribeFileSystemsCommandInput, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
103
133
  describeFileSystems(args: DescribeFileSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
104
134
 
135
+ describeSnapshots(args: DescribeSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSnapshotsCommandOutput>;
136
+ describeSnapshots(args: DescribeSnapshotsCommandInput, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
137
+ describeSnapshots(args: DescribeSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSnapshotsCommandOutput) => void): void;
138
+
105
139
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeStorageVirtualMachinesCommandOutput>;
106
140
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, cb: (err: any, data?: DescribeStorageVirtualMachinesCommandOutput) => void): void;
107
141
  describeStorageVirtualMachines(args: DescribeStorageVirtualMachinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeStorageVirtualMachinesCommandOutput) => void): void;
@@ -118,6 +152,14 @@ export declare class FSx extends FSxClient {
118
152
  listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
119
153
  listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
120
154
 
155
+ releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, options?: __HttpHandlerOptions): Promise<ReleaseFileSystemNfsV3LocksCommandOutput>;
156
+ releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, cb: (err: any, data?: ReleaseFileSystemNfsV3LocksCommandOutput) => void): void;
157
+ releaseFileSystemNfsV3Locks(args: ReleaseFileSystemNfsV3LocksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ReleaseFileSystemNfsV3LocksCommandOutput) => void): void;
158
+
159
+ restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<RestoreVolumeFromSnapshotCommandOutput>;
160
+ restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, cb: (err: any, data?: RestoreVolumeFromSnapshotCommandOutput) => void): void;
161
+ restoreVolumeFromSnapshot(args: RestoreVolumeFromSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RestoreVolumeFromSnapshotCommandOutput) => void): void;
162
+
121
163
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
122
164
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
123
165
  tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
@@ -126,10 +168,18 @@ export declare class FSx extends FSxClient {
126
168
  untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
127
169
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
128
170
 
171
+ updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateDataRepositoryAssociationCommandOutput>;
172
+ updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, cb: (err: any, data?: UpdateDataRepositoryAssociationCommandOutput) => void): void;
173
+ updateDataRepositoryAssociation(args: UpdateDataRepositoryAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateDataRepositoryAssociationCommandOutput) => void): void;
174
+
129
175
  updateFileSystem(args: UpdateFileSystemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFileSystemCommandOutput>;
130
176
  updateFileSystem(args: UpdateFileSystemCommandInput, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
131
177
  updateFileSystem(args: UpdateFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
132
178
 
179
+ updateSnapshot(args: UpdateSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSnapshotCommandOutput>;
180
+ updateSnapshot(args: UpdateSnapshotCommandInput, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
181
+ updateSnapshot(args: UpdateSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSnapshotCommandOutput) => void): void;
182
+
133
183
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, options?: __HttpHandlerOptions): Promise<UpdateStorageVirtualMachineCommandOutput>;
134
184
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, cb: (err: any, data?: UpdateStorageVirtualMachineCommandOutput) => void): void;
135
185
  updateStorageVirtualMachine(args: UpdateStorageVirtualMachineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateStorageVirtualMachineCommandOutput) => void): void;
@@ -10,31 +10,41 @@ import { AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesComma
10
10
  import { CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput } from "./commands/CancelDataRepositoryTaskCommand";
11
11
  import { CopyBackupCommandInput, CopyBackupCommandOutput } from "./commands/CopyBackupCommand";
12
12
  import { CreateBackupCommandInput, CreateBackupCommandOutput } from "./commands/CreateBackupCommand";
13
+ import { CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput } from "./commands/CreateDataRepositoryAssociationCommand";
13
14
  import { CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput } from "./commands/CreateDataRepositoryTaskCommand";
14
15
  import { CreateFileSystemCommandInput, CreateFileSystemCommandOutput } from "./commands/CreateFileSystemCommand";
15
16
  import { CreateFileSystemFromBackupCommandInput, CreateFileSystemFromBackupCommandOutput } from "./commands/CreateFileSystemFromBackupCommand";
17
+ import { CreateSnapshotCommandInput, CreateSnapshotCommandOutput } from "./commands/CreateSnapshotCommand";
16
18
  import { CreateStorageVirtualMachineCommandInput, CreateStorageVirtualMachineCommandOutput } from "./commands/CreateStorageVirtualMachineCommand";
17
19
  import { CreateVolumeCommandInput, CreateVolumeCommandOutput } from "./commands/CreateVolumeCommand";
18
20
  import { CreateVolumeFromBackupCommandInput, CreateVolumeFromBackupCommandOutput } from "./commands/CreateVolumeFromBackupCommand";
19
21
  import { DeleteBackupCommandInput, DeleteBackupCommandOutput } from "./commands/DeleteBackupCommand";
22
+ import { DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput } from "./commands/DeleteDataRepositoryAssociationCommand";
20
23
  import { DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput } from "./commands/DeleteFileSystemCommand";
24
+ import { DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput } from "./commands/DeleteSnapshotCommand";
21
25
  import { DeleteStorageVirtualMachineCommandInput, DeleteStorageVirtualMachineCommandOutput } from "./commands/DeleteStorageVirtualMachineCommand";
22
26
  import { DeleteVolumeCommandInput, DeleteVolumeCommandOutput } from "./commands/DeleteVolumeCommand";
23
27
  import { DescribeBackupsCommandInput, DescribeBackupsCommandOutput } from "./commands/DescribeBackupsCommand";
28
+ import { DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput } from "./commands/DescribeDataRepositoryAssociationsCommand";
24
29
  import { DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput } from "./commands/DescribeDataRepositoryTasksCommand";
25
30
  import { DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput } from "./commands/DescribeFileSystemAliasesCommand";
26
31
  import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "./commands/DescribeFileSystemsCommand";
32
+ import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
27
33
  import { DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput } from "./commands/DescribeStorageVirtualMachinesCommand";
28
34
  import { DescribeVolumesCommandInput, DescribeVolumesCommandOutput } from "./commands/DescribeVolumesCommand";
29
35
  import { DisassociateFileSystemAliasesCommandInput, DisassociateFileSystemAliasesCommandOutput } from "./commands/DisassociateFileSystemAliasesCommand";
30
36
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
37
+ import { ReleaseFileSystemNfsV3LocksCommandInput, ReleaseFileSystemNfsV3LocksCommandOutput } from "./commands/ReleaseFileSystemNfsV3LocksCommand";
38
+ import { RestoreVolumeFromSnapshotCommandInput, RestoreVolumeFromSnapshotCommandOutput } from "./commands/RestoreVolumeFromSnapshotCommand";
31
39
  import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
32
40
  import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
41
+ import { UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput } from "./commands/UpdateDataRepositoryAssociationCommand";
33
42
  import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "./commands/UpdateFileSystemCommand";
43
+ import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./commands/UpdateSnapshotCommand";
34
44
  import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "./commands/UpdateStorageVirtualMachineCommand";
35
45
  import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
36
- export declare type ServiceInputTypes = AssociateFileSystemAliasesCommandInput | CancelDataRepositoryTaskCommandInput | CopyBackupCommandInput | CreateBackupCommandInput | CreateDataRepositoryTaskCommandInput | CreateFileSystemCommandInput | CreateFileSystemFromBackupCommandInput | CreateStorageVirtualMachineCommandInput | CreateVolumeCommandInput | CreateVolumeFromBackupCommandInput | DeleteBackupCommandInput | DeleteFileSystemCommandInput | DeleteStorageVirtualMachineCommandInput | DeleteVolumeCommandInput | DescribeBackupsCommandInput | DescribeDataRepositoryTasksCommandInput | DescribeFileSystemAliasesCommandInput | DescribeFileSystemsCommandInput | DescribeStorageVirtualMachinesCommandInput | DescribeVolumesCommandInput | DisassociateFileSystemAliasesCommandInput | ListTagsForResourceCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateFileSystemCommandInput | UpdateStorageVirtualMachineCommandInput | UpdateVolumeCommandInput;
37
- export declare type ServiceOutputTypes = AssociateFileSystemAliasesCommandOutput | CancelDataRepositoryTaskCommandOutput | CopyBackupCommandOutput | CreateBackupCommandOutput | CreateDataRepositoryTaskCommandOutput | CreateFileSystemCommandOutput | CreateFileSystemFromBackupCommandOutput | CreateStorageVirtualMachineCommandOutput | CreateVolumeCommandOutput | CreateVolumeFromBackupCommandOutput | DeleteBackupCommandOutput | DeleteFileSystemCommandOutput | DeleteStorageVirtualMachineCommandOutput | DeleteVolumeCommandOutput | DescribeBackupsCommandOutput | DescribeDataRepositoryTasksCommandOutput | DescribeFileSystemAliasesCommandOutput | DescribeFileSystemsCommandOutput | DescribeStorageVirtualMachinesCommandOutput | DescribeVolumesCommandOutput | DisassociateFileSystemAliasesCommandOutput | ListTagsForResourceCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateFileSystemCommandOutput | UpdateStorageVirtualMachineCommandOutput | UpdateVolumeCommandOutput;
46
+ export declare type ServiceInputTypes = AssociateFileSystemAliasesCommandInput | CancelDataRepositoryTaskCommandInput | CopyBackupCommandInput | CreateBackupCommandInput | CreateDataRepositoryAssociationCommandInput | CreateDataRepositoryTaskCommandInput | CreateFileSystemCommandInput | CreateFileSystemFromBackupCommandInput | CreateSnapshotCommandInput | CreateStorageVirtualMachineCommandInput | CreateVolumeCommandInput | CreateVolumeFromBackupCommandInput | DeleteBackupCommandInput | DeleteDataRepositoryAssociationCommandInput | DeleteFileSystemCommandInput | DeleteSnapshotCommandInput | DeleteStorageVirtualMachineCommandInput | DeleteVolumeCommandInput | DescribeBackupsCommandInput | DescribeDataRepositoryAssociationsCommandInput | DescribeDataRepositoryTasksCommandInput | DescribeFileSystemAliasesCommandInput | DescribeFileSystemsCommandInput | DescribeSnapshotsCommandInput | DescribeStorageVirtualMachinesCommandInput | DescribeVolumesCommandInput | DisassociateFileSystemAliasesCommandInput | ListTagsForResourceCommandInput | ReleaseFileSystemNfsV3LocksCommandInput | RestoreVolumeFromSnapshotCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataRepositoryAssociationCommandInput | UpdateFileSystemCommandInput | UpdateSnapshotCommandInput | UpdateStorageVirtualMachineCommandInput | UpdateVolumeCommandInput;
47
+ export declare type ServiceOutputTypes = AssociateFileSystemAliasesCommandOutput | CancelDataRepositoryTaskCommandOutput | CopyBackupCommandOutput | CreateBackupCommandOutput | CreateDataRepositoryAssociationCommandOutput | CreateDataRepositoryTaskCommandOutput | CreateFileSystemCommandOutput | CreateFileSystemFromBackupCommandOutput | CreateSnapshotCommandOutput | CreateStorageVirtualMachineCommandOutput | CreateVolumeCommandOutput | CreateVolumeFromBackupCommandOutput | DeleteBackupCommandOutput | DeleteDataRepositoryAssociationCommandOutput | DeleteFileSystemCommandOutput | DeleteSnapshotCommandOutput | DeleteStorageVirtualMachineCommandOutput | DeleteVolumeCommandOutput | DescribeBackupsCommandOutput | DescribeDataRepositoryAssociationsCommandOutput | DescribeDataRepositoryTasksCommandOutput | DescribeFileSystemAliasesCommandOutput | DescribeFileSystemsCommandOutput | DescribeSnapshotsCommandOutput | DescribeStorageVirtualMachinesCommandOutput | DescribeVolumesCommandOutput | DisassociateFileSystemAliasesCommandOutput | ListTagsForResourceCommandOutput | ReleaseFileSystemNfsV3LocksCommandOutput | RestoreVolumeFromSnapshotCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataRepositoryAssociationCommandOutput | UpdateFileSystemCommandOutput | UpdateSnapshotCommandOutput | UpdateStorageVirtualMachineCommandOutput | UpdateVolumeCommandOutput;
38
48
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
39
49
 
40
50
  requestHandler?: __HttpHandler;
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { CreateDataRepositoryAssociationRequest, CreateDataRepositoryAssociationResponse } from "../models/models_0";
5
+ export interface CreateDataRepositoryAssociationCommandInput extends CreateDataRepositoryAssociationRequest {
6
+ }
7
+ export interface CreateDataRepositoryAssociationCommandOutput extends CreateDataRepositoryAssociationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateDataRepositoryAssociationCommand extends $Command<CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: CreateDataRepositoryAssociationCommandInput;
12
+ constructor(input: CreateDataRepositoryAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0";
5
+ export interface CreateSnapshotCommandInput extends CreateSnapshotRequest {
6
+ }
7
+ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class CreateSnapshotCommand extends $Command<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: CreateSnapshotCommandInput;
12
+ constructor(input: CreateSnapshotCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSnapshotCommandInput, CreateSnapshotCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { DeleteDataRepositoryAssociationRequest, DeleteDataRepositoryAssociationResponse } from "../models/models_0";
5
+ export interface DeleteDataRepositoryAssociationCommandInput extends DeleteDataRepositoryAssociationRequest {
6
+ }
7
+ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteDataRepositoryAssociationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteDataRepositoryAssociationCommand extends $Command<DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: DeleteDataRepositoryAssociationCommandInput;
12
+ constructor(input: DeleteDataRepositoryAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0";
5
+ export interface DeleteSnapshotCommandInput extends DeleteSnapshotRequest {
6
+ }
7
+ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DeleteSnapshotCommand extends $Command<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: DeleteSnapshotCommandInput;
12
+ constructor(input: DeleteSnapshotCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { DescribeDataRepositoryAssociationsRequest, DescribeDataRepositoryAssociationsResponse } from "../models/models_0";
5
+ export interface DescribeDataRepositoryAssociationsCommandInput extends DescribeDataRepositoryAssociationsRequest {
6
+ }
7
+ export interface DescribeDataRepositoryAssociationsCommandOutput extends DescribeDataRepositoryAssociationsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeDataRepositoryAssociationsCommand extends $Command<DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: DescribeDataRepositoryAssociationsCommandInput;
12
+ constructor(input: DescribeDataRepositoryAssociationsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { DescribeSnapshotsRequest, DescribeSnapshotsResponse } from "../models/models_0";
5
+ export interface DescribeSnapshotsCommandInput extends DescribeSnapshotsRequest {
6
+ }
7
+ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeSnapshotsCommand extends $Command<DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: DescribeSnapshotsCommandInput;
12
+ constructor(input: DescribeSnapshotsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { ReleaseFileSystemNfsV3LocksRequest, ReleaseFileSystemNfsV3LocksResponse } from "../models/models_0";
5
+ export interface ReleaseFileSystemNfsV3LocksCommandInput extends ReleaseFileSystemNfsV3LocksRequest {
6
+ }
7
+ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSystemNfsV3LocksResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ReleaseFileSystemNfsV3LocksCommand extends $Command<ReleaseFileSystemNfsV3LocksCommandInput, ReleaseFileSystemNfsV3LocksCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: ReleaseFileSystemNfsV3LocksCommandInput;
12
+ constructor(input: ReleaseFileSystemNfsV3LocksCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReleaseFileSystemNfsV3LocksCommandInput, ReleaseFileSystemNfsV3LocksCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { RestoreVolumeFromSnapshotRequest, RestoreVolumeFromSnapshotResponse } from "../models/models_0";
5
+ export interface RestoreVolumeFromSnapshotCommandInput extends RestoreVolumeFromSnapshotRequest {
6
+ }
7
+ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFromSnapshotResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class RestoreVolumeFromSnapshotCommand extends $Command<RestoreVolumeFromSnapshotCommandInput, RestoreVolumeFromSnapshotCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: RestoreVolumeFromSnapshotCommandInput;
12
+ constructor(input: RestoreVolumeFromSnapshotCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RestoreVolumeFromSnapshotCommandInput, RestoreVolumeFromSnapshotCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { UpdateDataRepositoryAssociationRequest, UpdateDataRepositoryAssociationResponse } from "../models/models_0";
5
+ export interface UpdateDataRepositoryAssociationCommandInput extends UpdateDataRepositoryAssociationRequest {
6
+ }
7
+ export interface UpdateDataRepositoryAssociationCommandOutput extends UpdateDataRepositoryAssociationResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateDataRepositoryAssociationCommand extends $Command<UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: UpdateDataRepositoryAssociationCommandInput;
12
+ constructor(input: UpdateDataRepositoryAssociationCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
4
+ import { UpdateSnapshotRequest, UpdateSnapshotResponse } from "../models/models_0";
5
+ export interface UpdateSnapshotCommandInput extends UpdateSnapshotRequest {
6
+ }
7
+ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateSnapshotCommand extends $Command<UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput, FSxClientResolvedConfig> {
11
+ readonly input: UpdateSnapshotCommandInput;
12
+ constructor(input: UpdateSnapshotCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -2,26 +2,36 @@ export * from "./AssociateFileSystemAliasesCommand";
2
2
  export * from "./CancelDataRepositoryTaskCommand";
3
3
  export * from "./CopyBackupCommand";
4
4
  export * from "./CreateBackupCommand";
5
+ export * from "./CreateDataRepositoryAssociationCommand";
5
6
  export * from "./CreateDataRepositoryTaskCommand";
6
7
  export * from "./CreateFileSystemCommand";
7
8
  export * from "./CreateFileSystemFromBackupCommand";
9
+ export * from "./CreateSnapshotCommand";
8
10
  export * from "./CreateStorageVirtualMachineCommand";
9
11
  export * from "./CreateVolumeCommand";
10
12
  export * from "./CreateVolumeFromBackupCommand";
11
13
  export * from "./DeleteBackupCommand";
14
+ export * from "./DeleteDataRepositoryAssociationCommand";
12
15
  export * from "./DeleteFileSystemCommand";
16
+ export * from "./DeleteSnapshotCommand";
13
17
  export * from "./DeleteStorageVirtualMachineCommand";
14
18
  export * from "./DeleteVolumeCommand";
15
19
  export * from "./DescribeBackupsCommand";
20
+ export * from "./DescribeDataRepositoryAssociationsCommand";
16
21
  export * from "./DescribeDataRepositoryTasksCommand";
17
22
  export * from "./DescribeFileSystemAliasesCommand";
18
23
  export * from "./DescribeFileSystemsCommand";
24
+ export * from "./DescribeSnapshotsCommand";
19
25
  export * from "./DescribeStorageVirtualMachinesCommand";
20
26
  export * from "./DescribeVolumesCommand";
21
27
  export * from "./DisassociateFileSystemAliasesCommand";
22
28
  export * from "./ListTagsForResourceCommand";
29
+ export * from "./ReleaseFileSystemNfsV3LocksCommand";
30
+ export * from "./RestoreVolumeFromSnapshotCommand";
23
31
  export * from "./TagResourceCommand";
24
32
  export * from "./UntagResourceCommand";
33
+ export * from "./UpdateDataRepositoryAssociationCommand";
25
34
  export * from "./UpdateFileSystemCommand";
35
+ export * from "./UpdateSnapshotCommand";
26
36
  export * from "./UpdateStorageVirtualMachineCommand";
27
37
  export * from "./UpdateVolumeCommand";