@aws-sdk/client-fsx 3.289.0 → 3.290.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-types/commands/AssociateFileSystemAliasesCommand.d.ts +10 -0
- package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +16 -0
- package/dist-types/commands/CopyBackupCommand.d.ts +42 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +29 -0
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +22 -0
- package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +26 -0
- package/dist-types/commands/CreateFileCacheCommand.d.ts +25 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +34 -0
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +31 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +14 -0
- package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +25 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +28 -0
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +28 -0
- package/dist-types/commands/DeleteBackupCommand.d.ts +26 -0
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +19 -0
- package/dist-types/commands/DeleteFileCacheCommand.d.ts +19 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +19 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +15 -0
- package/dist-types/commands/DeleteVolumeCommand.d.ts +15 -0
- package/dist-types/commands/DescribeBackupsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDataRepositoryAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeDataRepositoryTasksCommand.d.ts +13 -0
- package/dist-types/commands/DescribeFileCachesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +10 -0
- package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +10 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +10 -0
- package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +10 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +19 -0
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +19 -0
- package/dist-types/commands/UpdateFileCacheCommand.d.ts +25 -0
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +28 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +10 -0
- package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +18 -0
- package/dist-types/commands/UpdateVolumeCommand.d.ts +18 -0
- package/package.json +29 -29
|
@@ -39,6 +39,16 @@ export interface AssociateFileSystemAliasesCommandOutput extends AssociateFileSy
|
|
|
39
39
|
* @see {@link AssociateFileSystemAliasesCommandOutput} for command's `response` shape.
|
|
40
40
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
41
41
|
*
|
|
42
|
+
* @throws {@link BadRequest} (client fault)
|
|
43
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
46
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link InternalServerError} (server fault)
|
|
49
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
42
52
|
*/
|
|
43
53
|
export declare class AssociateFileSystemAliasesCommand extends $Command<AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
|
|
44
54
|
readonly input: AssociateFileSystemAliasesCommandInput;
|
|
@@ -41,6 +41,22 @@ export interface CancelDataRepositoryTaskCommandOutput extends CancelDataReposit
|
|
|
41
41
|
* @see {@link CancelDataRepositoryTaskCommandOutput} for command's `response` shape.
|
|
42
42
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
43
43
|
*
|
|
44
|
+
* @throws {@link BadRequest} (client fault)
|
|
45
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link DataRepositoryTaskEnded} (client fault)
|
|
48
|
+
* <p>The data repository task could not be canceled because the task has already ended.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link DataRepositoryTaskNotFound} (client fault)
|
|
51
|
+
* <p>The data repository task or tasks you specified could not be found.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link InternalServerError} (server fault)
|
|
54
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
57
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
44
60
|
*/
|
|
45
61
|
export declare class CancelDataRepositoryTaskCommand extends $Command<CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput, FSxClientResolvedConfig> {
|
|
46
62
|
readonly input: CancelDataRepositoryTaskCommandInput;
|
|
@@ -49,6 +49,48 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
49
49
|
* @see {@link CopyBackupCommandOutput} for command's `response` shape.
|
|
50
50
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
51
51
|
*
|
|
52
|
+
* @throws {@link BackupNotFound} (client fault)
|
|
53
|
+
* <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link BadRequest} (client fault)
|
|
56
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
59
|
+
* <p>The error returned when a second request is received with the same client request
|
|
60
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
61
|
+
* identify a single request.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link IncompatibleRegionForMultiAZ} (client fault)
|
|
64
|
+
* <p>Amazon FSx doesn't support Multi-AZ Windows File Server copy backup in the
|
|
65
|
+
* destination Region, so the copied backup can't be restored.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerError} (server fault)
|
|
68
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InvalidDestinationKmsKey} (client fault)
|
|
71
|
+
* <p>The Key Management Service (KMS) key of the destination backup is not
|
|
72
|
+
* valid.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link InvalidRegion} (client fault)
|
|
75
|
+
* <p>The Region provided for <code>SourceRegion</code> is not valid or is in a different
|
|
76
|
+
* Amazon Web Services partition.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InvalidSourceKmsKey} (client fault)
|
|
79
|
+
* <p>The Key Management Service (KMS) key of the source backup is not
|
|
80
|
+
* valid.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
83
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
84
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link SourceBackupUnavailable} (client fault)
|
|
87
|
+
* <p>The request was rejected because the lifecycle status of the source backup isn't
|
|
88
|
+
* <code>AVAILABLE</code>.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
91
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
92
|
+
*
|
|
93
|
+
*
|
|
52
94
|
* @example To copy a backup
|
|
53
95
|
* ```javascript
|
|
54
96
|
* // This operation copies an Amazon FSx backup.
|
|
@@ -84,6 +84,35 @@ export interface CreateBackupCommandOutput extends CreateBackupResponse, __Metad
|
|
|
84
84
|
* @see {@link CreateBackupCommandOutput} for command's `response` shape.
|
|
85
85
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
86
86
|
*
|
|
87
|
+
* @throws {@link BackupInProgress} (client fault)
|
|
88
|
+
* <p>Another backup is already under way. Wait for completion before initiating
|
|
89
|
+
* additional backups of this file system.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link BadRequest} (client fault)
|
|
92
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
95
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
98
|
+
* <p>The error returned when a second request is received with the same client request
|
|
99
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
100
|
+
* identify a single request.</p>
|
|
101
|
+
*
|
|
102
|
+
* @throws {@link InternalServerError} (server fault)
|
|
103
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
104
|
+
*
|
|
105
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
106
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
107
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
108
|
+
*
|
|
109
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
110
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
111
|
+
*
|
|
112
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
113
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
114
|
+
*
|
|
115
|
+
*
|
|
87
116
|
* @example To create a new backup
|
|
88
117
|
* ```javascript
|
|
89
118
|
* // This operation creates a new backup.
|
|
@@ -45,6 +45,28 @@ export interface CreateDataRepositoryAssociationCommandOutput extends CreateData
|
|
|
45
45
|
* @see {@link CreateDataRepositoryAssociationCommandOutput} for command's `response` shape.
|
|
46
46
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
47
47
|
*
|
|
48
|
+
* @throws {@link BadRequest} (client fault)
|
|
49
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
52
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
55
|
+
* <p>The error returned when a second request is received with the same client request
|
|
56
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
57
|
+
* identify a single request.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerError} (server fault)
|
|
60
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
63
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
64
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
67
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
68
|
+
*
|
|
69
|
+
*
|
|
48
70
|
*/
|
|
49
71
|
export declare class CreateDataRepositoryAssociationCommand extends $Command<CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
|
|
50
72
|
readonly input: CreateDataRepositoryAssociationCommandInput;
|
|
@@ -38,6 +38,32 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit
|
|
|
38
38
|
* @see {@link CreateDataRepositoryTaskCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link BadRequest} (client fault)
|
|
42
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link DataRepositoryTaskExecuting} (client fault)
|
|
45
|
+
* <p>An existing data repository task is currently executing on the file system.
|
|
46
|
+
* Wait until the existing task has completed, then create the new task.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
49
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
50
|
+
*
|
|
51
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
52
|
+
* <p>The error returned when a second request is received with the same client request
|
|
53
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
54
|
+
* identify a single request.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link InternalServerError} (server fault)
|
|
57
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
60
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
61
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
64
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
65
|
+
*
|
|
66
|
+
*
|
|
41
67
|
*/
|
|
42
68
|
export declare class CreateDataRepositoryTaskCommand extends $Command<CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput, FSxClientResolvedConfig> {
|
|
43
69
|
readonly input: CreateDataRepositoryTaskCommandInput;
|
|
@@ -52,6 +52,31 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
|
|
|
52
52
|
* @see {@link CreateFileCacheCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link BadRequest} (client fault)
|
|
56
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
59
|
+
* <p>The error returned when a second request is received with the same client request
|
|
60
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
61
|
+
* identify a single request.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerError} (server fault)
|
|
64
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InvalidNetworkSettings} (client fault)
|
|
67
|
+
* <p>One or more network settings specified in the request are invalid.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link InvalidPerUnitStorageThroughput} (client fault)
|
|
70
|
+
* <p>An invalid value for <code>PerUnitStorageThroughput</code> was provided. Please create your file system again, using a valid value.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link MissingFileCacheConfiguration} (client fault)
|
|
73
|
+
* <p>A cache configuration is required for this operation.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
76
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
77
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
55
80
|
*/
|
|
56
81
|
export declare class CreateFileCacheCommand extends $Command<CreateFileCacheCommandInput, CreateFileCacheCommandOutput, FSxClientResolvedConfig> {
|
|
57
82
|
readonly input: CreateFileCacheCommandInput;
|
|
@@ -74,6 +74,40 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
74
74
|
* @see {@link CreateFileSystemCommandOutput} for command's `response` shape.
|
|
75
75
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
76
76
|
*
|
|
77
|
+
* @throws {@link ActiveDirectoryError} (client fault)
|
|
78
|
+
* <p>An Active Directory error.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link BadRequest} (client fault)
|
|
81
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
84
|
+
* <p>The error returned when a second request is received with the same client request
|
|
85
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
86
|
+
* identify a single request.</p>
|
|
87
|
+
*
|
|
88
|
+
* @throws {@link InternalServerError} (server fault)
|
|
89
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
90
|
+
*
|
|
91
|
+
* @throws {@link InvalidExportPath} (client fault)
|
|
92
|
+
* <p>The path provided for data repository export isn't valid.</p>
|
|
93
|
+
*
|
|
94
|
+
* @throws {@link InvalidImportPath} (client fault)
|
|
95
|
+
* <p>The path provided for data repository import isn't valid.</p>
|
|
96
|
+
*
|
|
97
|
+
* @throws {@link InvalidNetworkSettings} (client fault)
|
|
98
|
+
* <p>One or more network settings specified in the request are invalid.</p>
|
|
99
|
+
*
|
|
100
|
+
* @throws {@link InvalidPerUnitStorageThroughput} (client fault)
|
|
101
|
+
* <p>An invalid value for <code>PerUnitStorageThroughput</code> was provided. Please create your file system again, using a valid value.</p>
|
|
102
|
+
*
|
|
103
|
+
* @throws {@link MissingFileSystemConfiguration} (client fault)
|
|
104
|
+
* <p>A file system configuration is required for this operation.</p>
|
|
105
|
+
*
|
|
106
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
107
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
108
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
109
|
+
*
|
|
110
|
+
*
|
|
77
111
|
* @example To create a new file system
|
|
78
112
|
* ```javascript
|
|
79
113
|
* // This operation creates a new Amazon FSx for Windows File Server file system.
|
|
@@ -61,6 +61,37 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
|
|
|
61
61
|
* @see {@link CreateFileSystemFromBackupCommandOutput} for command's `response` shape.
|
|
62
62
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
63
63
|
*
|
|
64
|
+
* @throws {@link ActiveDirectoryError} (client fault)
|
|
65
|
+
* <p>An Active Directory error.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link BackupNotFound} (client fault)
|
|
68
|
+
* <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link BadRequest} (client fault)
|
|
71
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
74
|
+
* <p>The error returned when a second request is received with the same client request
|
|
75
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
76
|
+
* identify a single request.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link InternalServerError} (server fault)
|
|
79
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link InvalidNetworkSettings} (client fault)
|
|
82
|
+
* <p>One or more network settings specified in the request are invalid.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InvalidPerUnitStorageThroughput} (client fault)
|
|
85
|
+
* <p>An invalid value for <code>PerUnitStorageThroughput</code> was provided. Please create your file system again, using a valid value.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link MissingFileSystemConfiguration} (client fault)
|
|
88
|
+
* <p>A file system configuration is required for this operation.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
91
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
92
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
93
|
+
*
|
|
94
|
+
*
|
|
64
95
|
* @example To create a new file system from backup
|
|
65
96
|
* ```javascript
|
|
66
97
|
* // This operation creates a new file system from backup.
|
|
@@ -56,6 +56,20 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
56
56
|
* @see {@link CreateSnapshotCommandOutput} for command's `response` shape.
|
|
57
57
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
58
58
|
*
|
|
59
|
+
* @throws {@link BadRequest} (client fault)
|
|
60
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InternalServerError} (server fault)
|
|
63
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
66
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
67
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
70
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
59
73
|
*/
|
|
60
74
|
export declare class CreateSnapshotCommand extends $Command<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, FSxClientResolvedConfig> {
|
|
61
75
|
readonly input: CreateSnapshotCommandInput;
|
|
@@ -29,6 +29,31 @@ export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageV
|
|
|
29
29
|
* @see {@link CreateStorageVirtualMachineCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link ActiveDirectoryError} (client fault)
|
|
33
|
+
* <p>An Active Directory error.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link BadRequest} (client fault)
|
|
36
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
39
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
42
|
+
* <p>The error returned when a second request is received with the same client request
|
|
43
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
44
|
+
* identify a single request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
50
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
51
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
54
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
32
57
|
*/
|
|
33
58
|
export declare class CreateStorageVirtualMachineCommand extends $Command<CreateStorageVirtualMachineCommandInput, CreateStorageVirtualMachineCommandOutput, FSxClientResolvedConfig> {
|
|
34
59
|
readonly input: CreateStorageVirtualMachineCommandInput;
|
|
@@ -29,6 +29,34 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
|
|
|
29
29
|
* @see {@link CreateVolumeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
36
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
39
|
+
* <p>The error returned when a second request is received with the same client request
|
|
40
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
41
|
+
* identify a single request.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link InternalServerError} (server fault)
|
|
44
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link MissingVolumeConfiguration} (client fault)
|
|
47
|
+
* <p>A volume configuration is required for this operation.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
50
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
51
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link StorageVirtualMachineNotFound} (client fault)
|
|
54
|
+
* <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
57
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
58
|
+
*
|
|
59
|
+
*
|
|
32
60
|
*/
|
|
33
61
|
export declare class CreateVolumeCommand extends $Command<CreateVolumeCommandInput, CreateVolumeCommandOutput, FSxClientResolvedConfig> {
|
|
34
62
|
readonly input: CreateVolumeCommandInput;
|
|
@@ -30,6 +30,34 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
|
|
|
30
30
|
* @see {@link CreateVolumeFromBackupCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BackupNotFound} (client fault)
|
|
34
|
+
* <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link BadRequest} (client fault)
|
|
37
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
40
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
43
|
+
* <p>The error returned when a second request is received with the same client request
|
|
44
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
45
|
+
* identify a single request.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link InternalServerError} (server fault)
|
|
48
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link MissingVolumeConfiguration} (client fault)
|
|
51
|
+
* <p>A volume configuration is required for this operation.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
54
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
55
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link StorageVirtualMachineNotFound} (client fault)
|
|
58
|
+
* <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
|
|
59
|
+
*
|
|
60
|
+
*
|
|
33
61
|
*/
|
|
34
62
|
export declare class CreateVolumeFromBackupCommand extends $Command<CreateVolumeFromBackupCommandInput, CreateVolumeFromBackupCommandOutput, FSxClientResolvedConfig> {
|
|
35
63
|
readonly input: CreateVolumeFromBackupCommandInput;
|
|
@@ -36,6 +36,32 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad
|
|
|
36
36
|
* @see {@link DeleteBackupCommandOutput} for command's `response` shape.
|
|
37
37
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
38
38
|
*
|
|
39
|
+
* @throws {@link BackupBeingCopied} (client fault)
|
|
40
|
+
* <p>You can't delete a backup while it's being copied.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link BackupInProgress} (client fault)
|
|
43
|
+
* <p>Another backup is already under way. Wait for completion before initiating
|
|
44
|
+
* additional backups of this file system.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link BackupNotFound} (client fault)
|
|
47
|
+
* <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link BackupRestoring} (client fault)
|
|
50
|
+
* <p>You can't delete a backup while it's being used to restore a file
|
|
51
|
+
* system.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link BadRequest} (client fault)
|
|
54
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
57
|
+
* <p>The error returned when a second request is received with the same client request
|
|
58
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
59
|
+
* identify a single request.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerError} (server fault)
|
|
62
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
63
|
+
*
|
|
64
|
+
*
|
|
39
65
|
* @example To delete a backup
|
|
40
66
|
* ```javascript
|
|
41
67
|
* // This operation deletes an Amazon FSx file system backup.
|
|
@@ -35,6 +35,25 @@ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteData
|
|
|
35
35
|
* @see {@link DeleteDataRepositoryAssociationCommandOutput} for command's `response` shape.
|
|
36
36
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
37
37
|
*
|
|
38
|
+
* @throws {@link BadRequest} (client fault)
|
|
39
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link DataRepositoryAssociationNotFound} (client fault)
|
|
42
|
+
* <p>No data repository associations were found based upon the supplied parameters.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
45
|
+
* <p>The error returned when a second request is received with the same client request
|
|
46
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
47
|
+
* identify a single request.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link InternalServerError} (server fault)
|
|
50
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
51
|
+
*
|
|
52
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
53
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
54
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
55
|
+
*
|
|
56
|
+
*
|
|
38
57
|
*/
|
|
39
58
|
export declare class DeleteDataRepositoryAssociationCommand extends $Command<DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
|
|
40
59
|
readonly input: DeleteDataRepositoryAssociationCommandInput;
|
|
@@ -40,6 +40,25 @@ export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, _
|
|
|
40
40
|
* @see {@link DeleteFileCacheCommandOutput} for command's `response` shape.
|
|
41
41
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
42
42
|
*
|
|
43
|
+
* @throws {@link BadRequest} (client fault)
|
|
44
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link FileCacheNotFound} (client fault)
|
|
47
|
+
* <p>No caches were found based upon supplied parameters.</p>
|
|
48
|
+
*
|
|
49
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
50
|
+
* <p>The error returned when a second request is received with the same client request
|
|
51
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
52
|
+
* identify a single request.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link InternalServerError} (server fault)
|
|
55
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
58
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
59
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
60
|
+
*
|
|
61
|
+
*
|
|
43
62
|
*/
|
|
44
63
|
export declare class DeleteFileCacheCommand extends $Command<DeleteFileCacheCommandInput, DeleteFileCacheCommandOutput, FSxClientResolvedConfig> {
|
|
45
64
|
readonly input: DeleteFileCacheCommandInput;
|
|
@@ -51,6 +51,25 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
51
51
|
* @see {@link DeleteFileSystemCommandOutput} for command's `response` shape.
|
|
52
52
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
53
53
|
*
|
|
54
|
+
* @throws {@link BadRequest} (client fault)
|
|
55
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
58
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
61
|
+
* <p>The error returned when a second request is received with the same client request
|
|
62
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
63
|
+
* identify a single request.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerError} (server fault)
|
|
66
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
69
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
70
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
54
73
|
* @example To delete a file system
|
|
55
74
|
* ```javascript
|
|
56
75
|
* // This operation deletes an Amazon FSx file system.
|
|
@@ -33,6 +33,16 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
33
33
|
* @see {@link DeleteSnapshotCommandOutput} for command's `response` shape.
|
|
34
34
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
35
35
|
*
|
|
36
|
+
* @throws {@link BadRequest} (client fault)
|
|
37
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link InternalServerError} (server fault)
|
|
40
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link SnapshotNotFound} (client fault)
|
|
43
|
+
* <p>No Amazon FSx snapshots were found based on the supplied parameters.</p>
|
|
44
|
+
*
|
|
45
|
+
*
|
|
36
46
|
*/
|
|
37
47
|
export declare class DeleteSnapshotCommand extends $Command<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput, FSxClientResolvedConfig> {
|
|
38
48
|
readonly input: DeleteSnapshotCommandInput;
|
|
@@ -30,6 +30,21 @@ export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageV
|
|
|
30
30
|
* @see {@link DeleteStorageVirtualMachineCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
37
|
+
* <p>The error returned when a second request is received with the same client request
|
|
38
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
39
|
+
* identify a single request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link StorageVirtualMachineNotFound} (client fault)
|
|
45
|
+
* <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
33
48
|
*/
|
|
34
49
|
export declare class DeleteStorageVirtualMachineCommand extends $Command<DeleteStorageVirtualMachineCommandInput, DeleteStorageVirtualMachineCommandOutput, FSxClientResolvedConfig> {
|
|
35
50
|
readonly input: DeleteStorageVirtualMachineCommandInput;
|
|
@@ -30,6 +30,21 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
|
|
|
30
30
|
* @see {@link DeleteVolumeCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
37
|
+
* <p>The error returned when a second request is received with the same client request
|
|
38
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
39
|
+
* identify a single request.</p>
|
|
40
|
+
*
|
|
41
|
+
* @throws {@link InternalServerError} (server fault)
|
|
42
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
45
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
46
|
+
*
|
|
47
|
+
*
|
|
33
48
|
*/
|
|
34
49
|
export declare class DeleteVolumeCommand extends $Command<DeleteVolumeCommandInput, DeleteVolumeCommandOutput, FSxClientResolvedConfig> {
|
|
35
50
|
readonly input: DeleteVolumeCommandInput;
|
|
@@ -54,6 +54,22 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
|
|
|
54
54
|
* @see {@link DescribeBackupsCommandOutput} for command's `response` shape.
|
|
55
55
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
56
56
|
*
|
|
57
|
+
* @throws {@link BackupNotFound} (client fault)
|
|
58
|
+
* <p>No Amazon FSx backups were found based upon the supplied parameters.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link BadRequest} (client fault)
|
|
61
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
64
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link InternalServerError} (server fault)
|
|
67
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
70
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
71
|
+
*
|
|
72
|
+
*
|
|
57
73
|
* @example To describe Amazon FSx backups
|
|
58
74
|
* ```javascript
|
|
59
75
|
* // This operation describes all of the Amazon FSx backups in an account.
|
|
@@ -47,6 +47,22 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
|
|
|
47
47
|
* @see {@link DescribeDataRepositoryAssociationsCommandOutput} for command's `response` shape.
|
|
48
48
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
49
49
|
*
|
|
50
|
+
* @throws {@link BadRequest} (client fault)
|
|
51
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
52
|
+
*
|
|
53
|
+
* @throws {@link DataRepositoryAssociationNotFound} (client fault)
|
|
54
|
+
* <p>No data repository associations were found based upon the supplied parameters.</p>
|
|
55
|
+
*
|
|
56
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
57
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
58
|
+
*
|
|
59
|
+
* @throws {@link InternalServerError} (server fault)
|
|
60
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link InvalidDataRepositoryType} (client fault)
|
|
63
|
+
* <p>You have filtered the response to a data repository type that is not supported.</p>
|
|
64
|
+
*
|
|
65
|
+
*
|
|
50
66
|
*/
|
|
51
67
|
export declare class DescribeDataRepositoryAssociationsCommand extends $Command<DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput, FSxClientResolvedConfig> {
|
|
52
68
|
readonly input: DescribeDataRepositoryAssociationsCommandInput;
|
|
@@ -38,6 +38,19 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
|
|
|
38
38
|
* @see {@link DescribeDataRepositoryTasksCommandOutput} for command's `response` shape.
|
|
39
39
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
40
40
|
*
|
|
41
|
+
* @throws {@link BadRequest} (client fault)
|
|
42
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link DataRepositoryTaskNotFound} (client fault)
|
|
45
|
+
* <p>The data repository task or tasks you specified could not be found.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
48
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link InternalServerError} (server fault)
|
|
51
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
52
|
+
*
|
|
53
|
+
*
|
|
41
54
|
*/
|
|
42
55
|
export declare class DescribeDataRepositoryTasksCommand extends $Command<DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput, FSxClientResolvedConfig> {
|
|
43
56
|
readonly input: DescribeDataRepositoryTasksCommandInput;
|
|
@@ -56,6 +56,16 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
|
|
|
56
56
|
* @see {@link DescribeFileCachesCommandOutput} for command's `response` shape.
|
|
57
57
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
58
58
|
*
|
|
59
|
+
* @throws {@link BadRequest} (client fault)
|
|
60
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link FileCacheNotFound} (client fault)
|
|
63
|
+
* <p>No caches were found based upon supplied parameters.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerError} (server fault)
|
|
66
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
59
69
|
*/
|
|
60
70
|
export declare class DescribeFileCachesCommand extends $Command<DescribeFileCachesCommandInput, DescribeFileCachesCommandOutput, FSxClientResolvedConfig> {
|
|
61
71
|
readonly input: DescribeFileCachesCommandInput;
|
|
@@ -31,6 +31,16 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
|
|
|
31
31
|
* @see {@link DescribeFileSystemAliasesCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequest} (client fault)
|
|
35
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
38
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerError} (server fault)
|
|
41
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
42
|
+
*
|
|
43
|
+
*
|
|
34
44
|
*/
|
|
35
45
|
export declare class DescribeFileSystemAliasesCommand extends $Command<DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
|
|
36
46
|
readonly input: DescribeFileSystemAliasesCommandInput;
|
|
@@ -56,6 +56,16 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
56
56
|
* @see {@link DescribeFileSystemsCommandOutput} for command's `response` shape.
|
|
57
57
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
58
58
|
*
|
|
59
|
+
* @throws {@link BadRequest} (client fault)
|
|
60
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
63
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerError} (server fault)
|
|
66
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
67
|
+
*
|
|
68
|
+
*
|
|
59
69
|
* @example To describe an Amazon FSx file system
|
|
60
70
|
* ```javascript
|
|
61
71
|
* // This operation describes all of the Amazon FSx file systems in an account.
|
|
@@ -55,6 +55,16 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
|
|
|
55
55
|
* @see {@link DescribeSnapshotsCommandOutput} for command's `response` shape.
|
|
56
56
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
57
57
|
*
|
|
58
|
+
* @throws {@link BadRequest} (client fault)
|
|
59
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link InternalServerError} (server fault)
|
|
62
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link SnapshotNotFound} (client fault)
|
|
65
|
+
* <p>No Amazon FSx snapshots were found based on the supplied parameters.</p>
|
|
66
|
+
*
|
|
67
|
+
*
|
|
58
68
|
*/
|
|
59
69
|
export declare class DescribeSnapshotsCommand extends $Command<DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput, FSxClientResolvedConfig> {
|
|
60
70
|
readonly input: DescribeSnapshotsCommandInput;
|
|
@@ -29,6 +29,16 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
|
|
|
29
29
|
* @see {@link DescribeStorageVirtualMachinesCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerError} (server fault)
|
|
36
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link StorageVirtualMachineNotFound} (client fault)
|
|
39
|
+
* <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class DescribeStorageVirtualMachinesCommand extends $Command<DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput, FSxClientResolvedConfig> {
|
|
34
44
|
readonly input: DescribeStorageVirtualMachinesCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
|
|
|
30
30
|
* @see {@link DescribeVolumesCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerError} (server fault)
|
|
37
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
40
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class DescribeVolumesCommand extends $Command<DescribeVolumesCommandInput, DescribeVolumesCommandOutput, FSxClientResolvedConfig> {
|
|
35
45
|
readonly input: DescribeVolumesCommandInput;
|
|
@@ -37,6 +37,16 @@ export interface DisassociateFileSystemAliasesCommandOutput extends Disassociate
|
|
|
37
37
|
* @see {@link DisassociateFileSystemAliasesCommandOutput} for command's `response` shape.
|
|
38
38
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
39
39
|
*
|
|
40
|
+
* @throws {@link BadRequest} (client fault)
|
|
41
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
44
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link InternalServerError} (server fault)
|
|
47
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
40
50
|
*/
|
|
41
51
|
export declare class DisassociateFileSystemAliasesCommand extends $Command<DisassociateFileSystemAliasesCommandInput, DisassociateFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
|
|
42
52
|
readonly input: DisassociateFileSystemAliasesCommandInput;
|
|
@@ -52,6 +52,23 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
52
52
|
* @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
|
|
53
53
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
54
54
|
*
|
|
55
|
+
* @throws {@link BadRequest} (client fault)
|
|
56
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link InternalServerError} (server fault)
|
|
59
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link NotServiceResourceError} (client fault)
|
|
62
|
+
* <p>The resource specified for the tagging operation is not a resource type owned by
|
|
63
|
+
* Amazon FSx. Use the API of the relevant service to perform the operation. </p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link ResourceDoesNotSupportTagging} (client fault)
|
|
66
|
+
* <p>The resource specified does not support tagging. </p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
69
|
+
* <p>The resource specified by the Amazon Resource Name (ARN) can't be found.</p>
|
|
70
|
+
*
|
|
71
|
+
*
|
|
55
72
|
* @example To list tags for a resource
|
|
56
73
|
* ```javascript
|
|
57
74
|
* // This operation lists tags for an Amazon FSx resource.
|
|
@@ -30,6 +30,25 @@ export interface ReleaseFileSystemNfsV3LocksCommandOutput extends ReleaseFileSys
|
|
|
30
30
|
* @see {@link ReleaseFileSystemNfsV3LocksCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
37
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
40
|
+
* <p>The error returned when a second request is received with the same client request
|
|
41
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
42
|
+
* identify a single request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerError} (server fault)
|
|
45
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
48
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
49
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
50
|
+
*
|
|
51
|
+
*
|
|
33
52
|
*/
|
|
34
53
|
export declare class ReleaseFileSystemNfsV3LocksCommand extends $Command<ReleaseFileSystemNfsV3LocksCommandInput, ReleaseFileSystemNfsV3LocksCommandOutput, FSxClientResolvedConfig> {
|
|
35
54
|
readonly input: ReleaseFileSystemNfsV3LocksCommandInput;
|
|
@@ -30,6 +30,16 @@ export interface RestoreVolumeFromSnapshotCommandOutput extends RestoreVolumeFro
|
|
|
30
30
|
* @see {@link RestoreVolumeFromSnapshotCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link InternalServerError} (server fault)
|
|
37
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
40
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
41
|
+
*
|
|
42
|
+
*
|
|
33
43
|
*/
|
|
34
44
|
export declare class RestoreVolumeFromSnapshotCommand extends $Command<RestoreVolumeFromSnapshotCommandInput, RestoreVolumeFromSnapshotCommandOutput, FSxClientResolvedConfig> {
|
|
35
45
|
readonly input: RestoreVolumeFromSnapshotCommandInput;
|
|
@@ -29,6 +29,23 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
29
29
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerError} (server fault)
|
|
36
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotServiceResourceError} (client fault)
|
|
39
|
+
* <p>The resource specified for the tagging operation is not a resource type owned by
|
|
40
|
+
* Amazon FSx. Use the API of the relevant service to perform the operation. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceDoesNotSupportTagging} (client fault)
|
|
43
|
+
* <p>The resource specified does not support tagging. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
46
|
+
* <p>The resource specified by the Amazon Resource Name (ARN) can't be found.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
* @example To tag a resource
|
|
33
50
|
* ```javascript
|
|
34
51
|
* // This operation tags an Amazon FSx resource.
|
|
@@ -29,6 +29,23 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
29
29
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerError} (server fault)
|
|
36
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link NotServiceResourceError} (client fault)
|
|
39
|
+
* <p>The resource specified for the tagging operation is not a resource type owned by
|
|
40
|
+
* Amazon FSx. Use the API of the relevant service to perform the operation. </p>
|
|
41
|
+
*
|
|
42
|
+
* @throws {@link ResourceDoesNotSupportTagging} (client fault)
|
|
43
|
+
* <p>The resource specified does not support tagging. </p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link ResourceNotFound} (client fault)
|
|
46
|
+
* <p>The resource specified by the Amazon Resource Name (ARN) can't be found.</p>
|
|
47
|
+
*
|
|
48
|
+
*
|
|
32
49
|
* @example To untag a resource
|
|
33
50
|
* ```javascript
|
|
34
51
|
* // This operation untags an Amazon FSx resource.
|
|
@@ -31,6 +31,25 @@ export interface UpdateDataRepositoryAssociationCommandOutput extends UpdateData
|
|
|
31
31
|
* @see {@link UpdateDataRepositoryAssociationCommandOutput} for command's `response` shape.
|
|
32
32
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
33
33
|
*
|
|
34
|
+
* @throws {@link BadRequest} (client fault)
|
|
35
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
36
|
+
*
|
|
37
|
+
* @throws {@link DataRepositoryAssociationNotFound} (client fault)
|
|
38
|
+
* <p>No data repository associations were found based upon the supplied parameters.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
41
|
+
* <p>The error returned when a second request is received with the same client request
|
|
42
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
43
|
+
* identify a single request.</p>
|
|
44
|
+
*
|
|
45
|
+
* @throws {@link InternalServerError} (server fault)
|
|
46
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
47
|
+
*
|
|
48
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
49
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
50
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
51
|
+
*
|
|
52
|
+
*
|
|
34
53
|
*/
|
|
35
54
|
export declare class UpdateDataRepositoryAssociationCommand extends $Command<UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
|
|
36
55
|
readonly input: UpdateDataRepositoryAssociationCommandInput;
|
|
@@ -30,6 +30,31 @@ export interface UpdateFileCacheCommandOutput extends UpdateFileCacheResponse, _
|
|
|
30
30
|
* @see {@link UpdateFileCacheCommandOutput} for command's `response` shape.
|
|
31
31
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
32
32
|
*
|
|
33
|
+
* @throws {@link BadRequest} (client fault)
|
|
34
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
35
|
+
*
|
|
36
|
+
* @throws {@link FileCacheNotFound} (client fault)
|
|
37
|
+
* <p>No caches were found based upon supplied parameters.</p>
|
|
38
|
+
*
|
|
39
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
40
|
+
* <p>The error returned when a second request is received with the same client request
|
|
41
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
42
|
+
* identify a single request.</p>
|
|
43
|
+
*
|
|
44
|
+
* @throws {@link InternalServerError} (server fault)
|
|
45
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
46
|
+
*
|
|
47
|
+
* @throws {@link MissingFileCacheConfiguration} (client fault)
|
|
48
|
+
* <p>A cache configuration is required for this operation.</p>
|
|
49
|
+
*
|
|
50
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
51
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
52
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
55
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
56
|
+
*
|
|
57
|
+
*
|
|
33
58
|
*/
|
|
34
59
|
export declare class UpdateFileCacheCommand extends $Command<UpdateFileCacheCommandInput, UpdateFileCacheCommandOutput, FSxClientResolvedConfig> {
|
|
35
60
|
readonly input: UpdateFileCacheCommandInput;
|
|
@@ -181,6 +181,34 @@ export interface UpdateFileSystemCommandOutput extends UpdateFileSystemResponse,
|
|
|
181
181
|
* @see {@link UpdateFileSystemCommandOutput} for command's `response` shape.
|
|
182
182
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
183
183
|
*
|
|
184
|
+
* @throws {@link BadRequest} (client fault)
|
|
185
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
186
|
+
*
|
|
187
|
+
* @throws {@link FileSystemNotFound} (client fault)
|
|
188
|
+
* <p>No Amazon FSx file systems were found based upon supplied parameters.</p>
|
|
189
|
+
*
|
|
190
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
191
|
+
* <p>The error returned when a second request is received with the same client request
|
|
192
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
193
|
+
* identify a single request.</p>
|
|
194
|
+
*
|
|
195
|
+
* @throws {@link InternalServerError} (server fault)
|
|
196
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
197
|
+
*
|
|
198
|
+
* @throws {@link InvalidNetworkSettings} (client fault)
|
|
199
|
+
* <p>One or more network settings specified in the request are invalid.</p>
|
|
200
|
+
*
|
|
201
|
+
* @throws {@link MissingFileSystemConfiguration} (client fault)
|
|
202
|
+
* <p>A file system configuration is required for this operation.</p>
|
|
203
|
+
*
|
|
204
|
+
* @throws {@link ServiceLimitExceeded} (client fault)
|
|
205
|
+
* <p>An error indicating that a particular service limit was exceeded. You can increase
|
|
206
|
+
* some service limits by contacting Amazon Web Services Support.</p>
|
|
207
|
+
*
|
|
208
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
209
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
210
|
+
*
|
|
211
|
+
*
|
|
184
212
|
* @example To update an existing file system
|
|
185
213
|
* ```javascript
|
|
186
214
|
* // This operation updates an existing file system.
|
|
@@ -29,6 +29,16 @@ export interface UpdateSnapshotCommandOutput extends UpdateSnapshotResponse, __M
|
|
|
29
29
|
* @see {@link UpdateSnapshotCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link InternalServerError} (server fault)
|
|
36
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
37
|
+
*
|
|
38
|
+
* @throws {@link SnapshotNotFound} (client fault)
|
|
39
|
+
* <p>No Amazon FSx snapshots were found based on the supplied parameters.</p>
|
|
40
|
+
*
|
|
41
|
+
*
|
|
32
42
|
*/
|
|
33
43
|
export declare class UpdateSnapshotCommand extends $Command<UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput, FSxClientResolvedConfig> {
|
|
34
44
|
readonly input: UpdateSnapshotCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface UpdateStorageVirtualMachineCommandOutput extends UpdateStorageV
|
|
|
29
29
|
* @see {@link UpdateStorageVirtualMachineCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
36
|
+
* <p>The error returned when a second request is received with the same client request
|
|
37
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
38
|
+
* identify a single request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerError} (server fault)
|
|
41
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link StorageVirtualMachineNotFound} (client fault)
|
|
44
|
+
* <p>No FSx for ONTAP SVMs were found based upon the supplied parameters.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link UnsupportedOperation} (client fault)
|
|
47
|
+
* <p>The requested operation is not supported for this resource or API.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class UpdateStorageVirtualMachineCommand extends $Command<UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput, FSxClientResolvedConfig> {
|
|
34
52
|
readonly input: UpdateStorageVirtualMachineCommandInput;
|
|
@@ -29,6 +29,24 @@ export interface UpdateVolumeCommandOutput extends UpdateVolumeResponse, __Metad
|
|
|
29
29
|
* @see {@link UpdateVolumeCommandOutput} for command's `response` shape.
|
|
30
30
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
31
31
|
*
|
|
32
|
+
* @throws {@link BadRequest} (client fault)
|
|
33
|
+
* <p>A generic error indicating a failure with a client request.</p>
|
|
34
|
+
*
|
|
35
|
+
* @throws {@link IncompatibleParameterError} (client fault)
|
|
36
|
+
* <p>The error returned when a second request is received with the same client request
|
|
37
|
+
* token but different parameters settings. A client request token should always uniquely
|
|
38
|
+
* identify a single request.</p>
|
|
39
|
+
*
|
|
40
|
+
* @throws {@link InternalServerError} (server fault)
|
|
41
|
+
* <p>A generic error indicating a server-side failure.</p>
|
|
42
|
+
*
|
|
43
|
+
* @throws {@link MissingVolumeConfiguration} (client fault)
|
|
44
|
+
* <p>A volume configuration is required for this operation.</p>
|
|
45
|
+
*
|
|
46
|
+
* @throws {@link VolumeNotFound} (client fault)
|
|
47
|
+
* <p>No Amazon FSx volumes were found based upon the supplied parameters.</p>
|
|
48
|
+
*
|
|
49
|
+
*
|
|
32
50
|
*/
|
|
33
51
|
export declare class UpdateVolumeCommand extends $Command<UpdateVolumeCommandInput, UpdateVolumeCommandOutput, FSxClientResolvedConfig> {
|
|
34
52
|
readonly input: UpdateVolumeCommandInput;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-fsx",
|
|
3
3
|
"description": "AWS SDK for JavaScript Fsx Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.290.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,37 +20,37 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
-
"@aws-sdk/config-resolver": "3.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
27
|
-
"@aws-sdk/hash-node": "3.
|
|
28
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
29
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
30
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
31
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
32
|
-
"@aws-sdk/middleware-logger": "3.
|
|
33
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
34
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
-
"@aws-sdk/middleware-serde": "3.
|
|
36
|
-
"@aws-sdk/middleware-signing": "3.
|
|
37
|
-
"@aws-sdk/middleware-stack": "3.
|
|
38
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
-
"@aws-sdk/node-http-handler": "3.
|
|
41
|
-
"@aws-sdk/protocol-http": "3.
|
|
42
|
-
"@aws-sdk/smithy-client": "3.
|
|
43
|
-
"@aws-sdk/types": "3.
|
|
44
|
-
"@aws-sdk/url-parser": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.290.0",
|
|
24
|
+
"@aws-sdk/config-resolver": "3.290.0",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.290.0",
|
|
26
|
+
"@aws-sdk/fetch-http-handler": "3.290.0",
|
|
27
|
+
"@aws-sdk/hash-node": "3.290.0",
|
|
28
|
+
"@aws-sdk/invalid-dependency": "3.290.0",
|
|
29
|
+
"@aws-sdk/middleware-content-length": "3.290.0",
|
|
30
|
+
"@aws-sdk/middleware-endpoint": "3.290.0",
|
|
31
|
+
"@aws-sdk/middleware-host-header": "3.290.0",
|
|
32
|
+
"@aws-sdk/middleware-logger": "3.290.0",
|
|
33
|
+
"@aws-sdk/middleware-recursion-detection": "3.290.0",
|
|
34
|
+
"@aws-sdk/middleware-retry": "3.290.0",
|
|
35
|
+
"@aws-sdk/middleware-serde": "3.290.0",
|
|
36
|
+
"@aws-sdk/middleware-signing": "3.290.0",
|
|
37
|
+
"@aws-sdk/middleware-stack": "3.290.0",
|
|
38
|
+
"@aws-sdk/middleware-user-agent": "3.290.0",
|
|
39
|
+
"@aws-sdk/node-config-provider": "3.290.0",
|
|
40
|
+
"@aws-sdk/node-http-handler": "3.290.0",
|
|
41
|
+
"@aws-sdk/protocol-http": "3.290.0",
|
|
42
|
+
"@aws-sdk/smithy-client": "3.290.0",
|
|
43
|
+
"@aws-sdk/types": "3.290.0",
|
|
44
|
+
"@aws-sdk/url-parser": "3.290.0",
|
|
45
45
|
"@aws-sdk/util-base64": "3.208.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
47
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-retry": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
53
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.290.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.290.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.290.0",
|
|
51
|
+
"@aws-sdk/util-retry": "3.290.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-browser": "3.290.0",
|
|
53
|
+
"@aws-sdk/util-user-agent-node": "3.290.0",
|
|
54
54
|
"@aws-sdk/util-utf8": "3.254.0",
|
|
55
55
|
"tslib": "^2.3.1",
|
|
56
56
|
"uuid": "^8.3.2"
|