@aws-sdk/client-fsx 3.295.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 +29 -29
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteStorageVirtualMachineRequest, DeleteStorageVirtualMachineResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteStorageVirtualMachineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteStorageVirtualMachineCommandInput extends DeleteStorageVirtualMachineRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteStorageVirtualMachineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageVirtualMachineResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an existing Amazon FSx for ONTAP storage virtual machine (SVM). Prior
|
|
18
23
|
* to deleting an SVM, you must delete all non-root volumes in the SVM, otherwise the operation will fail.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageV
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteStorageVirtualMachineCommandInput - {@link DeleteStorageVirtualMachineCommandInput}
|
|
35
|
+
* @returns {@link DeleteStorageVirtualMachineCommandOutput}
|
|
29
36
|
* @see {@link DeleteStorageVirtualMachineCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteStorageVirtualMachineCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteStorageVirtualMachineCommandOutput extends DeleteStorageV
|
|
|
49
56
|
export declare class DeleteStorageVirtualMachineCommand extends $Command<DeleteStorageVirtualMachineCommandInput, DeleteStorageVirtualMachineCommandOutput, FSxClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteStorageVirtualMachineCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteStorageVirtualMachineCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteStorageVirtualMachineCommandInput, DeleteStorageVirtualMachineCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DeleteVolumeRequest, DeleteVolumeResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteVolumeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteVolumeCommandInput extends DeleteVolumeRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteVolumeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes an Amazon FSx for NetApp ONTAP or Amazon FSx for OpenZFS
|
|
18
23
|
* volume.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DeleteVolumeCommandInput - {@link DeleteVolumeCommandInput}
|
|
35
|
+
* @returns {@link DeleteVolumeCommandOutput}
|
|
29
36
|
* @see {@link DeleteVolumeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DeleteVolumeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface DeleteVolumeCommandOutput extends DeleteVolumeResponse, __Metad
|
|
|
49
56
|
export declare class DeleteVolumeCommand extends $Command<DeleteVolumeCommandInput, DeleteVolumeCommandOutput, FSxClientResolvedConfig> {
|
|
50
57
|
readonly input: DeleteVolumeCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: DeleteVolumeCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteVolumeCommandInput, DeleteVolumeCommandOutput>;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
57
70
|
private serialize;
|
|
71
|
+
/**
|
|
72
|
+
* @internal
|
|
73
|
+
*/
|
|
58
74
|
private deserialize;
|
|
59
75
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeBackupsRequest, DescribeBackupsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeBackupsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeBackupsCommandInput extends DescribeBackupsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeBackupsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description of a specific Amazon FSx backup, if a
|
|
18
23
|
* <code>BackupIds</code> value is provided for that backup. Otherwise, it returns all
|
|
19
24
|
* backups owned by your Amazon Web Services account in the Amazon Web Services Region of the
|
|
@@ -50,6 +55,8 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
|
|
|
50
55
|
* const response = await client.send(command);
|
|
51
56
|
* ```
|
|
52
57
|
*
|
|
58
|
+
* @param DescribeBackupsCommandInput - {@link DescribeBackupsCommandInput}
|
|
59
|
+
* @returns {@link DescribeBackupsCommandOutput}
|
|
53
60
|
* @see {@link DescribeBackupsCommandInput} for command's `input` shape.
|
|
54
61
|
* @see {@link DescribeBackupsCommandOutput} for command's `response` shape.
|
|
55
62
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -113,11 +120,20 @@ export interface DescribeBackupsCommandOutput extends DescribeBackupsResponse, _
|
|
|
113
120
|
export declare class DescribeBackupsCommand extends $Command<DescribeBackupsCommandInput, DescribeBackupsCommandOutput, FSxClientResolvedConfig> {
|
|
114
121
|
readonly input: DescribeBackupsCommandInput;
|
|
115
122
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
123
|
+
/**
|
|
124
|
+
* @public
|
|
125
|
+
*/
|
|
116
126
|
constructor(input: DescribeBackupsCommandInput);
|
|
117
127
|
/**
|
|
118
128
|
* @internal
|
|
119
129
|
*/
|
|
120
130
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeBackupsCommandInput, DescribeBackupsCommandOutput>;
|
|
131
|
+
/**
|
|
132
|
+
* @internal
|
|
133
|
+
*/
|
|
121
134
|
private serialize;
|
|
135
|
+
/**
|
|
136
|
+
* @internal
|
|
137
|
+
*/
|
|
122
138
|
private deserialize;
|
|
123
139
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeDataRepositoryAssociationsRequest, DescribeDataRepositoryAssociationsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDataRepositoryAssociationsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDataRepositoryAssociationsCommandInput extends DescribeDataRepositoryAssociationsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDataRepositoryAssociationsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDataRepositoryAssociationsCommandOutput extends DescribeDataRepositoryAssociationsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache
|
|
18
23
|
* data repository associations, if one or more <code>AssociationIds</code> values
|
|
19
24
|
* are provided in the request, or if filters are used in the request. Data repository
|
|
@@ -43,6 +48,8 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
|
|
|
43
48
|
* const response = await client.send(command);
|
|
44
49
|
* ```
|
|
45
50
|
*
|
|
51
|
+
* @param DescribeDataRepositoryAssociationsCommandInput - {@link DescribeDataRepositoryAssociationsCommandInput}
|
|
52
|
+
* @returns {@link DescribeDataRepositoryAssociationsCommandOutput}
|
|
46
53
|
* @see {@link DescribeDataRepositoryAssociationsCommandInput} for command's `input` shape.
|
|
47
54
|
* @see {@link DescribeDataRepositoryAssociationsCommandOutput} for command's `response` shape.
|
|
48
55
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -67,11 +74,20 @@ export interface DescribeDataRepositoryAssociationsCommandOutput extends Describ
|
|
|
67
74
|
export declare class DescribeDataRepositoryAssociationsCommand extends $Command<DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput, FSxClientResolvedConfig> {
|
|
68
75
|
readonly input: DescribeDataRepositoryAssociationsCommandInput;
|
|
69
76
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
77
|
+
/**
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
70
80
|
constructor(input: DescribeDataRepositoryAssociationsCommandInput);
|
|
71
81
|
/**
|
|
72
82
|
* @internal
|
|
73
83
|
*/
|
|
74
84
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDataRepositoryAssociationsCommandInput, DescribeDataRepositoryAssociationsCommandOutput>;
|
|
85
|
+
/**
|
|
86
|
+
* @internal
|
|
87
|
+
*/
|
|
75
88
|
private serialize;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
76
92
|
private deserialize;
|
|
77
93
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeDataRepositoryTasksRequest, DescribeDataRepositoryTasksResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeDataRepositoryTasksCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeDataRepositoryTasksCommandInput extends DescribeDataRepositoryTasksRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeDataRepositoryTasksCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRepositoryTasksResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description of specific Amazon FSx for Lustre or Amazon File Cache data repository tasks, if
|
|
18
23
|
* one or more <code>TaskIds</code> values are provided in the request, or if filters are used in the request.
|
|
19
24
|
* You can use filters to narrow the response to include just tasks for specific file systems or caches,
|
|
@@ -34,6 +39,8 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
|
|
|
34
39
|
* const response = await client.send(command);
|
|
35
40
|
* ```
|
|
36
41
|
*
|
|
42
|
+
* @param DescribeDataRepositoryTasksCommandInput - {@link DescribeDataRepositoryTasksCommandInput}
|
|
43
|
+
* @returns {@link DescribeDataRepositoryTasksCommandOutput}
|
|
37
44
|
* @see {@link DescribeDataRepositoryTasksCommandInput} for command's `input` shape.
|
|
38
45
|
* @see {@link DescribeDataRepositoryTasksCommandOutput} for command's `response` shape.
|
|
39
46
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -55,11 +62,20 @@ export interface DescribeDataRepositoryTasksCommandOutput extends DescribeDataRe
|
|
|
55
62
|
export declare class DescribeDataRepositoryTasksCommand extends $Command<DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput, FSxClientResolvedConfig> {
|
|
56
63
|
readonly input: DescribeDataRepositoryTasksCommandInput;
|
|
57
64
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
65
|
+
/**
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
58
68
|
constructor(input: DescribeDataRepositoryTasksCommandInput);
|
|
59
69
|
/**
|
|
60
70
|
* @internal
|
|
61
71
|
*/
|
|
62
72
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCommandOutput>;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
63
76
|
private serialize;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
64
80
|
private deserialize;
|
|
65
81
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeFileCachesRequest, DescribeFileCachesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFileCachesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFileCachesCommandInput extends DescribeFileCachesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFileCachesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFileCachesCommandOutput extends DescribeFileCachesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description of a specific Amazon File Cache resource, if a
|
|
18
23
|
* <code>FileCacheIds</code> value is provided for that cache. Otherwise, it
|
|
19
24
|
* returns descriptions of all caches owned by your Amazon Web Services account in the
|
|
@@ -52,6 +57,8 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param DescribeFileCachesCommandInput - {@link DescribeFileCachesCommandInput}
|
|
61
|
+
* @returns {@link DescribeFileCachesCommandOutput}
|
|
55
62
|
* @see {@link DescribeFileCachesCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link DescribeFileCachesCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -70,11 +77,20 @@ export interface DescribeFileCachesCommandOutput extends DescribeFileCachesRespo
|
|
|
70
77
|
export declare class DescribeFileCachesCommand extends $Command<DescribeFileCachesCommandInput, DescribeFileCachesCommandOutput, FSxClientResolvedConfig> {
|
|
71
78
|
readonly input: DescribeFileCachesCommandInput;
|
|
72
79
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
80
|
+
/**
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
73
83
|
constructor(input: DescribeFileCachesCommandInput);
|
|
74
84
|
/**
|
|
75
85
|
* @internal
|
|
76
86
|
*/
|
|
77
87
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFileCachesCommandInput, DescribeFileCachesCommandOutput>;
|
|
88
|
+
/**
|
|
89
|
+
* @internal
|
|
90
|
+
*/
|
|
78
91
|
private serialize;
|
|
92
|
+
/**
|
|
93
|
+
* @internal
|
|
94
|
+
*/
|
|
79
95
|
private deserialize;
|
|
80
96
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeFileSystemAliasesRequest, DescribeFileSystemAliasesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFileSystemAliasesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFileSystemAliasesCommandInput extends DescribeFileSystemAliasesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFileSystemAliasesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSystemAliasesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the DNS aliases that are associated with the specified Amazon FSx for Windows File Server file system. A history of
|
|
18
23
|
* all DNS aliases that have been associated with and disassociated from the file system is available in the list of <a>AdministrativeAction</a>
|
|
19
24
|
* provided in the <a>DescribeFileSystems</a> operation response.</p>
|
|
@@ -27,6 +32,8 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DescribeFileSystemAliasesCommandInput - {@link DescribeFileSystemAliasesCommandInput}
|
|
36
|
+
* @returns {@link DescribeFileSystemAliasesCommandOutput}
|
|
30
37
|
* @see {@link DescribeFileSystemAliasesCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DescribeFileSystemAliasesCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface DescribeFileSystemAliasesCommandOutput extends DescribeFileSyst
|
|
|
45
52
|
export declare class DescribeFileSystemAliasesCommand extends $Command<DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
|
|
46
53
|
readonly input: DescribeFileSystemAliasesCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: DescribeFileSystemAliasesCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeFileSystemsRequest, DescribeFileSystemsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeFileSystemsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeFileSystemsCommandInput extends DescribeFileSystemsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeFileSystemsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description of specific Amazon FSx file systems, if a
|
|
18
23
|
* <code>FileSystemIds</code> value is provided for that file system. Otherwise, it
|
|
19
24
|
* returns descriptions of all file systems owned by your Amazon Web Services account in the
|
|
@@ -52,6 +57,8 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
52
57
|
* const response = await client.send(command);
|
|
53
58
|
* ```
|
|
54
59
|
*
|
|
60
|
+
* @param DescribeFileSystemsCommandInput - {@link DescribeFileSystemsCommandInput}
|
|
61
|
+
* @returns {@link DescribeFileSystemsCommandOutput}
|
|
55
62
|
* @see {@link DescribeFileSystemsCommandInput} for command's `input` shape.
|
|
56
63
|
* @see {@link DescribeFileSystemsCommandOutput} for command's `response` shape.
|
|
57
64
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -115,11 +122,20 @@ export interface DescribeFileSystemsCommandOutput extends DescribeFileSystemsRes
|
|
|
115
122
|
export declare class DescribeFileSystemsCommand extends $Command<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput, FSxClientResolvedConfig> {
|
|
116
123
|
readonly input: DescribeFileSystemsCommandInput;
|
|
117
124
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
125
|
+
/**
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
118
128
|
constructor(input: DescribeFileSystemsCommandInput);
|
|
119
129
|
/**
|
|
120
130
|
* @internal
|
|
121
131
|
*/
|
|
122
132
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput>;
|
|
133
|
+
/**
|
|
134
|
+
* @internal
|
|
135
|
+
*/
|
|
123
136
|
private serialize;
|
|
137
|
+
/**
|
|
138
|
+
* @internal
|
|
139
|
+
*/
|
|
124
140
|
private deserialize;
|
|
125
141
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeSnapshotsRequest, DescribeSnapshotsResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeSnapshotsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeSnapshotsCommandInput extends DescribeSnapshotsRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeSnapshotsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the description of specific Amazon FSx for OpenZFS snapshots, if a
|
|
18
23
|
* <code>SnapshotIds</code> value is provided. Otherwise, this operation returns all
|
|
19
24
|
* snapshots owned by your Amazon Web Services account in the Amazon Web Services Region of
|
|
@@ -51,6 +56,8 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
|
|
|
51
56
|
* const response = await client.send(command);
|
|
52
57
|
* ```
|
|
53
58
|
*
|
|
59
|
+
* @param DescribeSnapshotsCommandInput - {@link DescribeSnapshotsCommandInput}
|
|
60
|
+
* @returns {@link DescribeSnapshotsCommandOutput}
|
|
54
61
|
* @see {@link DescribeSnapshotsCommandInput} for command's `input` shape.
|
|
55
62
|
* @see {@link DescribeSnapshotsCommandOutput} for command's `response` shape.
|
|
56
63
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -69,11 +76,20 @@ export interface DescribeSnapshotsCommandOutput extends DescribeSnapshotsRespons
|
|
|
69
76
|
export declare class DescribeSnapshotsCommand extends $Command<DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput, FSxClientResolvedConfig> {
|
|
70
77
|
readonly input: DescribeSnapshotsCommandInput;
|
|
71
78
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
72
82
|
constructor(input: DescribeSnapshotsCommandInput);
|
|
73
83
|
/**
|
|
74
84
|
* @internal
|
|
75
85
|
*/
|
|
76
86
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput>;
|
|
87
|
+
/**
|
|
88
|
+
* @internal
|
|
89
|
+
*/
|
|
77
90
|
private serialize;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
78
94
|
private deserialize;
|
|
79
95
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeStorageVirtualMachinesRequest, DescribeStorageVirtualMachinesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeStorageVirtualMachinesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeStorageVirtualMachinesCommandInput extends DescribeStorageVirtualMachinesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeStorageVirtualMachinesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeStorageVirtualMachinesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes one or more Amazon FSx for NetApp ONTAP storage virtual machines (SVMs).</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 DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DescribeStorageVirtualMachinesCommandInput - {@link DescribeStorageVirtualMachinesCommandInput}
|
|
34
|
+
* @returns {@link DescribeStorageVirtualMachinesCommandOutput}
|
|
28
35
|
* @see {@link DescribeStorageVirtualMachinesCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DescribeStorageVirtualMachinesCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DescribeStorageVirtualMachinesCommandOutput extends DescribeSto
|
|
|
43
50
|
export declare class DescribeStorageVirtualMachinesCommand extends $Command<DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput, FSxClientResolvedConfig> {
|
|
44
51
|
readonly input: DescribeStorageVirtualMachinesCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DescribeStorageVirtualMachinesCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput>;
|
|
61
|
+
/**
|
|
62
|
+
* @internal
|
|
63
|
+
*/
|
|
51
64
|
private serialize;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
52
68
|
private deserialize;
|
|
53
69
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DescribeVolumesRequest, DescribeVolumesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DescribeVolumesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DescribeVolumesCommandInput extends DescribeVolumesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DescribeVolumesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Describes one or more Amazon FSx for NetApp ONTAP or Amazon FSx for
|
|
18
23
|
* OpenZFS volumes.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DescribeVolumesCommandInput - {@link DescribeVolumesCommandInput}
|
|
35
|
+
* @returns {@link DescribeVolumesCommandOutput}
|
|
29
36
|
* @see {@link DescribeVolumesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DescribeVolumesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DescribeVolumesCommandOutput extends DescribeVolumesResponse, _
|
|
|
44
51
|
export declare class DescribeVolumesCommand extends $Command<DescribeVolumesCommandInput, DescribeVolumesCommandOutput, FSxClientResolvedConfig> {
|
|
45
52
|
readonly input: DescribeVolumesCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DescribeVolumesCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeVolumesCommandInput, DescribeVolumesCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { FSxClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../FSxClient";
|
|
5
5
|
import { DisassociateFileSystemAliasesRequest, DisassociateFileSystemAliasesResponse } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisassociateFileSystemAliasesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisassociateFileSystemAliasesCommandInput extends DisassociateFileSystemAliasesRequest {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisassociateFileSystemAliasesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisassociateFileSystemAliasesCommandOutput extends DisassociateFileSystemAliasesResponse, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Use this action to disassociate, or remove, one or more Domain Name Service (DNS) aliases
|
|
18
23
|
* from an Amazon FSx for Windows File Server file system. If you attempt to disassociate a DNS alias that is not
|
|
19
24
|
* associated with the file system, Amazon FSx responds with a 400 Bad Request. For more information, see
|
|
@@ -33,6 +38,8 @@ export interface DisassociateFileSystemAliasesCommandOutput extends Disassociate
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param DisassociateFileSystemAliasesCommandInput - {@link DisassociateFileSystemAliasesCommandInput}
|
|
42
|
+
* @returns {@link DisassociateFileSystemAliasesCommandOutput}
|
|
36
43
|
* @see {@link DisassociateFileSystemAliasesCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link DisassociateFileSystemAliasesCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link FSxClientResolvedConfig | config} for FSxClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface DisassociateFileSystemAliasesCommandOutput extends Disassociate
|
|
|
51
58
|
export declare class DisassociateFileSystemAliasesCommand extends $Command<DisassociateFileSystemAliasesCommandInput, DisassociateFileSystemAliasesCommandOutput, FSxClientResolvedConfig> {
|
|
52
59
|
readonly input: DisassociateFileSystemAliasesCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: DisassociateFileSystemAliasesCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: FSxClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisassociateFileSystemAliasesCommandInput, DisassociateFileSystemAliasesCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|