@aws-sdk/client-fsx 3.296.0 → 3.297.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/FSx.d.ts +42 -0
- package/dist-types/FSxClient.d.ts +24 -4
- package/dist-types/commands/AssociateFileSystemAliasesCommand.d.ts +16 -0
- package/dist-types/commands/CancelDataRepositoryTaskCommand.d.ts +16 -0
- package/dist-types/commands/CopyBackupCommand.d.ts +16 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataRepositoryAssociationCommand.d.ts +16 -0
- package/dist-types/commands/CreateDataRepositoryTaskCommand.d.ts +16 -0
- package/dist-types/commands/CreateFileCacheCommand.d.ts +16 -0
- package/dist-types/commands/CreateFileSystemCommand.d.ts +16 -0
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +16 -0
- package/dist-types/commands/CreateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/CreateStorageVirtualMachineCommand.d.ts +16 -0
- package/dist-types/commands/CreateVolumeCommand.d.ts +16 -0
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteBackupCommand.d.ts +16 -0
- package/dist-types/commands/DeleteDataRepositoryAssociationCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFileCacheCommand.d.ts +16 -0
- package/dist-types/commands/DeleteFileSystemCommand.d.ts +16 -0
- package/dist-types/commands/DeleteSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/DeleteStorageVirtualMachineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteVolumeCommand.d.ts +16 -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 +16 -0
- package/dist-types/commands/DescribeFileCachesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFileSystemAliasesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +16 -0
- package/dist-types/commands/DescribeStorageVirtualMachinesCommand.d.ts +16 -0
- package/dist-types/commands/DescribeVolumesCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +16 -0
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateDataRepositoryAssociationCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFileCacheCommand.d.ts +16 -0
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +16 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +16 -0
- package/dist-types/commands/UpdateStorageVirtualMachineCommand.d.ts +16 -0
- package/dist-types/commands/UpdateVolumeCommand.d.ts +16 -0
- package/dist-types/models/FSxServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +474 -1
- package/dist-types/pagination/DescribeBackupsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeDataRepositoryAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeDataRepositoryTasksPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeFileCachesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeFileSystemAliasesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeFileSystemsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeStorageVirtualMachinesPaginator.d.ts +3 -0
- package/dist-types/pagination/DescribeVolumesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateDataRepositoryTaskRequest, CreateDataRepositoryTaskResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateDataRepositoryTaskCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateDataRepositoryTaskCommandInput extends CreateDataRepositoryTaskRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateDataRepositoryTaskCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateDataRepositoryTaskCommandOutput extends CreateDataRepositoryTaskResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an Amazon FSx for Lustre data repository task. You use data repository tasks
|
|
18
23
|
* to perform bulk operations between your Amazon FSx file system and its linked data
|
|
19
24
|
* repositories. An example of a data repository task is exporting any data and metadata
|
|
@@ -34,6 +39,8 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param CreateDataRepositoryTaskCommandInput - {@link CreateDataRepositoryTaskCommandInput}
|
|
43
|
+
* @returns {@link CreateDataRepositoryTaskCommandOutput}
|
|
37
44
|
* @see {@link CreateDataRepositoryTaskCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link CreateDataRepositoryTaskCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -68,11 +75,20 @@ export interface CreateDataRepositoryTaskCommandOutput extends CreateDataReposit
|
|
|
68
75
|
export declare class CreateDataRepositoryTaskCommand extends $Command<CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput, FSxClientResolvedConfig> {
|
|
69
76
|
readonly input: CreateDataRepositoryTaskCommandInput;
|
|
70
77
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
78
|
+
/**
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
71
81
|
constructor(input: CreateDataRepositoryTaskCommandInput);
|
|
72
82
|
/**
|
|
73
83
|
* @internal
|
|
74
84
|
*/
|
|
75
85
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput>;
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
76
89
|
private serialize;
|
|
90
|
+
/**
|
|
91
|
+
* @internal
|
|
92
|
+
*/
|
|
77
93
|
private deserialize;
|
|
78
94
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateFileCacheRequest, CreateFileCacheResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFileCacheCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFileCacheCommandInput extends CreateFileCacheRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFileCacheCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new Amazon File Cache resource.</p>
|
|
18
23
|
* <p>You can use this operation with a client request token in the request that
|
|
19
24
|
* Amazon File Cache uses to ensure idempotent creation.
|
|
@@ -48,6 +53,8 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
|
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
50
55
|
*
|
|
56
|
+
* @param CreateFileCacheCommandInput - {@link CreateFileCacheCommandInput}
|
|
57
|
+
* @returns {@link CreateFileCacheCommandOutput}
|
|
51
58
|
* @see {@link CreateFileCacheCommandInput} for command's `input` shape.
|
|
52
59
|
* @see {@link CreateFileCacheCommandOutput} for command's `response` shape.
|
|
53
60
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -81,11 +88,20 @@ export interface CreateFileCacheCommandOutput extends CreateFileCacheResponse, _
|
|
|
81
88
|
export declare class CreateFileCacheCommand extends $Command<CreateFileCacheCommandInput, CreateFileCacheCommandOutput, FSxClientResolvedConfig> {
|
|
82
89
|
readonly input: CreateFileCacheCommandInput;
|
|
83
90
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
84
94
|
constructor(input: CreateFileCacheCommandInput);
|
|
85
95
|
/**
|
|
86
96
|
* @internal
|
|
87
97
|
*/
|
|
88
98
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFileCacheCommandInput, CreateFileCacheCommandOutput>;
|
|
99
|
+
/**
|
|
100
|
+
* @internal
|
|
101
|
+
*/
|
|
89
102
|
private serialize;
|
|
103
|
+
/**
|
|
104
|
+
* @internal
|
|
105
|
+
*/
|
|
90
106
|
private deserialize;
|
|
91
107
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateFileSystemRequest, CreateFileSystemResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFileSystemCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFileSystemCommandInput extends CreateFileSystemRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFileSystemCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new, empty Amazon FSx file system. You can create the following supported
|
|
18
23
|
* Amazon FSx file systems using the <code>CreateFileSystem</code> API operation:</p>
|
|
19
24
|
* <ul>
|
|
@@ -70,6 +75,8 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
70
75
|
* const response = await client.send(command);
|
|
71
76
|
* ```
|
|
72
77
|
*
|
|
78
|
+
* @param CreateFileSystemCommandInput - {@link CreateFileSystemCommandInput}
|
|
79
|
+
* @returns {@link CreateFileSystemCommandOutput}
|
|
73
80
|
* @see {@link CreateFileSystemCommandInput} for command's `input` shape.
|
|
74
81
|
* @see {@link CreateFileSystemCommandOutput} for command's `response` shape.
|
|
75
82
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -187,11 +194,20 @@ export interface CreateFileSystemCommandOutput extends CreateFileSystemResponse,
|
|
|
187
194
|
export declare class CreateFileSystemCommand extends $Command<CreateFileSystemCommandInput, CreateFileSystemCommandOutput, FSxClientResolvedConfig> {
|
|
188
195
|
readonly input: CreateFileSystemCommandInput;
|
|
189
196
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
197
|
+
/**
|
|
198
|
+
* @public
|
|
199
|
+
*/
|
|
190
200
|
constructor(input: CreateFileSystemCommandInput);
|
|
191
201
|
/**
|
|
192
202
|
* @internal
|
|
193
203
|
*/
|
|
194
204
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFileSystemCommandInput, CreateFileSystemCommandOutput>;
|
|
205
|
+
/**
|
|
206
|
+
* @internal
|
|
207
|
+
*/
|
|
195
208
|
private serialize;
|
|
209
|
+
/**
|
|
210
|
+
* @internal
|
|
211
|
+
*/
|
|
196
212
|
private deserialize;
|
|
197
213
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateFileSystemFromBackupRequest, CreateFileSystemFromBackupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateFileSystemFromBackupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateFileSystemFromBackupCommandInput extends CreateFileSystemFromBackupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateFileSystemFromBackupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSystemFromBackupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new Amazon FSx for Lustre, Amazon FSx for Windows File
|
|
18
23
|
* Server, or Amazon FSx for OpenZFS file system from an existing Amazon FSx backup.</p>
|
|
19
24
|
* <p>If a file system with the specified client request token exists and the parameters
|
|
@@ -57,6 +62,8 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
|
|
|
57
62
|
* const response = await client.send(command);
|
|
58
63
|
* ```
|
|
59
64
|
*
|
|
65
|
+
* @param CreateFileSystemFromBackupCommandInput - {@link CreateFileSystemFromBackupCommandInput}
|
|
66
|
+
* @returns {@link CreateFileSystemFromBackupCommandOutput}
|
|
60
67
|
* @see {@link CreateFileSystemFromBackupCommandInput} for command's `input` shape.
|
|
61
68
|
* @see {@link CreateFileSystemFromBackupCommandOutput} for command's `response` shape.
|
|
62
69
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -154,11 +161,20 @@ export interface CreateFileSystemFromBackupCommandOutput extends CreateFileSyste
|
|
|
154
161
|
export declare class CreateFileSystemFromBackupCommand extends $Command<CreateFileSystemFromBackupCommandInput, CreateFileSystemFromBackupCommandOutput, FSxClientResolvedConfig> {
|
|
155
162
|
readonly input: CreateFileSystemFromBackupCommandInput;
|
|
156
163
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
164
|
+
/**
|
|
165
|
+
* @public
|
|
166
|
+
*/
|
|
157
167
|
constructor(input: CreateFileSystemFromBackupCommandInput);
|
|
158
168
|
/**
|
|
159
169
|
* @internal
|
|
160
170
|
*/
|
|
161
171
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFileSystemFromBackupCommandInput, CreateFileSystemFromBackupCommandOutput>;
|
|
172
|
+
/**
|
|
173
|
+
* @internal
|
|
174
|
+
*/
|
|
162
175
|
private serialize;
|
|
176
|
+
/**
|
|
177
|
+
* @internal
|
|
178
|
+
*/
|
|
163
179
|
private deserialize;
|
|
164
180
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateSnapshotRequest, CreateSnapshotResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateSnapshotCommandInput extends CreateSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a snapshot of an existing Amazon FSx for OpenZFS volume. With
|
|
18
23
|
* snapshots, you can easily undo file changes and compare file versions by restoring the
|
|
19
24
|
* volume to a previous version.</p>
|
|
@@ -52,6 +57,8 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param CreateSnapshotCommandInput - {@link CreateSnapshotCommandInput}
|
|
61
|
+
* @returns {@link CreateSnapshotCommandOutput}
|
|
55
62
|
* @see {@link CreateSnapshotCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link CreateSnapshotCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -74,11 +81,20 @@ export interface CreateSnapshotCommandOutput extends CreateSnapshotResponse, __M
|
|
|
74
81
|
export declare class CreateSnapshotCommand extends $Command<CreateSnapshotCommandInput, CreateSnapshotCommandOutput, FSxClientResolvedConfig> {
|
|
75
82
|
readonly input: CreateSnapshotCommandInput;
|
|
76
83
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
77
87
|
constructor(input: CreateSnapshotCommandInput);
|
|
78
88
|
/**
|
|
79
89
|
* @internal
|
|
80
90
|
*/
|
|
81
91
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateSnapshotCommandInput, CreateSnapshotCommandOutput>;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
82
95
|
private serialize;
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
83
99
|
private deserialize;
|
|
84
100
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateStorageVirtualMachineRequest, CreateStorageVirtualMachineResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateStorageVirtualMachineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateStorageVirtualMachineCommandInput extends CreateStorageVirtualMachineRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateStorageVirtualMachineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageVirtualMachineResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a storage virtual machine (SVM) for an Amazon FSx for ONTAP file system.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageV
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateStorageVirtualMachineCommandInput - {@link CreateStorageVirtualMachineCommandInput}
|
|
34
|
+
* @returns {@link CreateStorageVirtualMachineCommandOutput}
|
|
28
35
|
* @see {@link CreateStorageVirtualMachineCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateStorageVirtualMachineCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface CreateStorageVirtualMachineCommandOutput extends CreateStorageV
|
|
|
58
65
|
export declare class CreateStorageVirtualMachineCommand extends $Command<CreateStorageVirtualMachineCommandInput, CreateStorageVirtualMachineCommandOutput, FSxClientResolvedConfig> {
|
|
59
66
|
readonly input: CreateStorageVirtualMachineCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: CreateStorageVirtualMachineCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateStorageVirtualMachineCommandInput, CreateStorageVirtualMachineCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateVolumeRequest, CreateVolumeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVolumeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVolumeCommandInput extends CreateVolumeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVolumeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates an FSx for ONTAP or Amazon FSx for OpenZFS storage volume.</p>
|
|
18
23
|
* @example
|
|
19
24
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -25,6 +30,8 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param CreateVolumeCommandInput - {@link CreateVolumeCommandInput}
|
|
34
|
+
* @returns {@link CreateVolumeCommandOutput}
|
|
28
35
|
* @see {@link CreateVolumeCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link CreateVolumeCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -61,11 +68,20 @@ export interface CreateVolumeCommandOutput extends CreateVolumeResponse, __Metad
|
|
|
61
68
|
export declare class CreateVolumeCommand extends $Command<CreateVolumeCommandInput, CreateVolumeCommandOutput, FSxClientResolvedConfig> {
|
|
62
69
|
readonly input: CreateVolumeCommandInput;
|
|
63
70
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
71
|
+
/**
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
64
74
|
constructor(input: CreateVolumeCommandInput);
|
|
65
75
|
/**
|
|
66
76
|
* @internal
|
|
67
77
|
*/
|
|
68
78
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVolumeCommandInput, CreateVolumeCommandOutput>;
|
|
79
|
+
/**
|
|
80
|
+
* @internal
|
|
81
|
+
*/
|
|
69
82
|
private serialize;
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
70
86
|
private deserialize;
|
|
71
87
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { CreateVolumeFromBackupRequest, CreateVolumeFromBackupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateVolumeFromBackupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateVolumeFromBackupCommandInput extends CreateVolumeFromBackupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateVolumeFromBackupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBackupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new Amazon FSx for NetApp ONTAP volume from an
|
|
18
23
|
* existing Amazon FSx volume backup.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateVolumeFromBackupCommandInput - {@link CreateVolumeFromBackupCommandInput}
|
|
35
|
+
* @returns {@link CreateVolumeFromBackupCommandOutput}
|
|
29
36
|
* @see {@link CreateVolumeFromBackupCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateVolumeFromBackupCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -62,11 +69,20 @@ export interface CreateVolumeFromBackupCommandOutput extends CreateVolumeFromBac
|
|
|
62
69
|
export declare class CreateVolumeFromBackupCommand extends $Command<CreateVolumeFromBackupCommandInput, CreateVolumeFromBackupCommandOutput, FSxClientResolvedConfig> {
|
|
63
70
|
readonly input: CreateVolumeFromBackupCommandInput;
|
|
64
71
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
65
75
|
constructor(input: CreateVolumeFromBackupCommandInput);
|
|
66
76
|
/**
|
|
67
77
|
* @internal
|
|
68
78
|
*/
|
|
69
79
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateVolumeFromBackupCommandInput, CreateVolumeFromBackupCommandOutput>;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
70
83
|
private serialize;
|
|
84
|
+
/**
|
|
85
|
+
* @internal
|
|
86
|
+
*/
|
|
71
87
|
private deserialize;
|
|
72
88
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteBackupRequest, DeleteBackupResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteBackupCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteBackupCommandInput extends DeleteBackupRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteBackupCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon FSx backup. After deletion, the backup no longer exists, and
|
|
18
23
|
* its data is gone.</p>
|
|
19
24
|
* <p>The <code>DeleteBackup</code> call returns instantly. The backup won't show up in
|
|
@@ -32,6 +37,8 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param DeleteBackupCommandInput - {@link DeleteBackupCommandInput}
|
|
41
|
+
* @returns {@link DeleteBackupCommandOutput}
|
|
35
42
|
* @see {@link DeleteBackupCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link DeleteBackupCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -83,11 +90,20 @@ export interface DeleteBackupCommandOutput extends DeleteBackupResponse, __Metad
|
|
|
83
90
|
export declare class DeleteBackupCommand extends $Command<DeleteBackupCommandInput, DeleteBackupCommandOutput, FSxClientResolvedConfig> {
|
|
84
91
|
readonly input: DeleteBackupCommandInput;
|
|
85
92
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
93
|
+
/**
|
|
94
|
+
* @public
|
|
95
|
+
*/
|
|
86
96
|
constructor(input: DeleteBackupCommandInput);
|
|
87
97
|
/**
|
|
88
98
|
* @internal
|
|
89
99
|
*/
|
|
90
100
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteBackupCommandInput, DeleteBackupCommandOutput>;
|
|
101
|
+
/**
|
|
102
|
+
* @internal
|
|
103
|
+
*/
|
|
91
104
|
private serialize;
|
|
105
|
+
/**
|
|
106
|
+
* @internal
|
|
107
|
+
*/
|
|
92
108
|
private deserialize;
|
|
93
109
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteDataRepositoryAssociationRequest, DeleteDataRepositoryAssociationResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteDataRepositoryAssociationCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteDataRepositoryAssociationCommandInput extends DeleteDataRepositoryAssociationRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteDataRepositoryAssociationCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteDataRepositoryAssociationResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a data repository association on an Amazon FSx for Lustre
|
|
18
23
|
* file system. Deleting the data repository association unlinks the
|
|
19
24
|
* file system from the Amazon S3 bucket. When deleting a data repository
|
|
@@ -31,6 +36,8 @@ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteData
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param DeleteDataRepositoryAssociationCommandInput - {@link DeleteDataRepositoryAssociationCommandInput}
|
|
40
|
+
* @returns {@link DeleteDataRepositoryAssociationCommandOutput}
|
|
34
41
|
* @see {@link DeleteDataRepositoryAssociationCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link DeleteDataRepositoryAssociationCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -58,11 +65,20 @@ export interface DeleteDataRepositoryAssociationCommandOutput extends DeleteData
|
|
|
58
65
|
export declare class DeleteDataRepositoryAssociationCommand extends $Command<DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput, FSxClientResolvedConfig> {
|
|
59
66
|
readonly input: DeleteDataRepositoryAssociationCommandInput;
|
|
60
67
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
68
|
+
/**
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
61
71
|
constructor(input: DeleteDataRepositoryAssociationCommandInput);
|
|
62
72
|
/**
|
|
63
73
|
* @internal
|
|
64
74
|
*/
|
|
65
75
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteDataRepositoryAssociationCommandInput, DeleteDataRepositoryAssociationCommandOutput>;
|
|
76
|
+
/**
|
|
77
|
+
* @internal
|
|
78
|
+
*/
|
|
66
79
|
private serialize;
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
*/
|
|
67
83
|
private deserialize;
|
|
68
84
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteFileCacheRequest, DeleteFileCacheResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFileCacheCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFileCacheCommandInput extends DeleteFileCacheRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFileCacheCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon File Cache resource. After deletion, the cache no longer exists, and its data
|
|
18
23
|
* is gone.</p>
|
|
19
24
|
* <p>The <code>DeleteFileCache</code> operation returns while the cache has the
|
|
@@ -36,6 +41,8 @@ export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, _
|
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
38
43
|
*
|
|
44
|
+
* @param DeleteFileCacheCommandInput - {@link DeleteFileCacheCommandInput}
|
|
45
|
+
* @returns {@link DeleteFileCacheCommandOutput}
|
|
39
46
|
* @see {@link DeleteFileCacheCommandInput} for command's `input` shape.
|
|
40
47
|
* @see {@link DeleteFileCacheCommandOutput} for command's `response` shape.
|
|
41
48
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -63,11 +70,20 @@ export interface DeleteFileCacheCommandOutput extends DeleteFileCacheResponse, _
|
|
|
63
70
|
export declare class DeleteFileCacheCommand extends $Command<DeleteFileCacheCommandInput, DeleteFileCacheCommandOutput, FSxClientResolvedConfig> {
|
|
64
71
|
readonly input: DeleteFileCacheCommandInput;
|
|
65
72
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
73
|
+
/**
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
66
76
|
constructor(input: DeleteFileCacheCommandInput);
|
|
67
77
|
/**
|
|
68
78
|
* @internal
|
|
69
79
|
*/
|
|
70
80
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFileCacheCommandInput, DeleteFileCacheCommandOutput>;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
71
84
|
private serialize;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
72
88
|
private deserialize;
|
|
73
89
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteFileSystemRequest, DeleteFileSystemResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteFileSystemCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteFileSystemCommandInput extends DeleteFileSystemRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteFileSystemCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a file system. After deletion, the file system no longer exists, and its data
|
|
18
23
|
* is gone. Any existing automatic backups and snapshots are also deleted.</p>
|
|
19
24
|
* <p>To delete an Amazon FSx for NetApp ONTAP file system, first delete all the
|
|
@@ -47,6 +52,8 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
47
52
|
* const response = await client.send(command);
|
|
48
53
|
* ```
|
|
49
54
|
*
|
|
55
|
+
* @param DeleteFileSystemCommandInput - {@link DeleteFileSystemCommandInput}
|
|
56
|
+
* @returns {@link DeleteFileSystemCommandOutput}
|
|
50
57
|
* @see {@link DeleteFileSystemCommandInput} for command's `input` shape.
|
|
51
58
|
* @see {@link DeleteFileSystemCommandOutput} for command's `response` shape.
|
|
52
59
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -91,11 +98,20 @@ export interface DeleteFileSystemCommandOutput extends DeleteFileSystemResponse,
|
|
|
91
98
|
export declare class DeleteFileSystemCommand extends $Command<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput, FSxClientResolvedConfig> {
|
|
92
99
|
readonly input: DeleteFileSystemCommandInput;
|
|
93
100
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
94
104
|
constructor(input: DeleteFileSystemCommandInput);
|
|
95
105
|
/**
|
|
96
106
|
* @internal
|
|
97
107
|
*/
|
|
98
108
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFileSystemCommandInput, DeleteFileSystemCommandOutput>;
|
|
109
|
+
/**
|
|
110
|
+
* @internal
|
|
111
|
+
*/
|
|
99
112
|
private serialize;
|
|
113
|
+
/**
|
|
114
|
+
* @internal
|
|
115
|
+
*/
|
|
100
116
|
private deserialize;
|
|
101
117
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteSnapshotRequest, DeleteSnapshotResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteSnapshotCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteSnapshotCommandInput extends DeleteSnapshotRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteSnapshotCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon FSx for OpenZFS snapshot. After deletion, the snapshot no longer
|
|
18
23
|
* exists, and its data is gone. Deleting a snapshot doesn't affect snapshots stored in a
|
|
19
24
|
* file system backup. </p>
|
|
@@ -29,6 +34,8 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeleteSnapshotCommandInput - {@link DeleteSnapshotCommandInput}
|
|
38
|
+
* @returns {@link DeleteSnapshotCommandOutput}
|
|
32
39
|
* @see {@link DeleteSnapshotCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeleteSnapshotCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface DeleteSnapshotCommandOutput extends DeleteSnapshotResponse, __M
|
|
|
47
54
|
export declare class DeleteSnapshotCommand extends $Command<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput, FSxClientResolvedConfig> {
|
|
48
55
|
readonly input: DeleteSnapshotCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: DeleteSnapshotCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteSnapshotCommandInput, DeleteSnapshotCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|