@aws-sdk/client-fsx 3.454.0 → 3.460.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/README.md +66 -42
- package/dist-cjs/FSx.js +6 -0
- package/dist-cjs/commands/CopySnapshotAndUpdateVolumeCommand.js +52 -0
- package/dist-cjs/commands/DescribeSharedVpcConfigurationCommand.js +51 -0
- package/dist-cjs/commands/UpdateSharedVpcConfigurationCommand.js +51 -0
- package/dist-cjs/commands/index.js +3 -0
- package/dist-cjs/models/models_0.js +23 -3
- package/dist-cjs/protocols/Aws_json1_1.js +164 -2
- package/dist-es/FSx.js +6 -0
- package/dist-es/commands/CopySnapshotAndUpdateVolumeCommand.js +48 -0
- package/dist-es/commands/DescribeSharedVpcConfigurationCommand.js +47 -0
- package/dist-es/commands/UpdateSharedVpcConfigurationCommand.js +47 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +19 -0
- package/dist-es/protocols/Aws_json1_1.js +156 -0
- package/dist-types/FSx.d.ts +21 -0
- package/dist-types/FSxClient.d.ts +5 -2
- package/dist-types/commands/CopyBackupCommand.d.ts +36 -6
- package/dist-types/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +666 -0
- package/dist-types/commands/CreateBackupCommand.d.ts +36 -6
- package/dist-types/commands/CreateFileSystemCommand.d.ts +40 -8
- package/dist-types/commands/CreateFileSystemFromBackupCommand.d.ts +36 -6
- package/dist-types/commands/CreateSnapshotCommand.d.ts +36 -6
- package/dist-types/commands/CreateVolumeCommand.d.ts +46 -8
- package/dist-types/commands/CreateVolumeFromBackupCommand.d.ts +45 -7
- package/dist-types/commands/DescribeBackupsCommand.d.ts +36 -6
- package/dist-types/commands/DescribeFileSystemsCommand.d.ts +36 -6
- package/dist-types/commands/DescribeSharedVpcConfigurationCommand.d.ts +79 -0
- package/dist-types/commands/DescribeSnapshotsCommand.d.ts +36 -6
- package/dist-types/commands/DescribeVolumesCommand.d.ts +36 -6
- package/dist-types/commands/DisassociateFileSystemAliasesCommand.d.ts +1 -1
- package/dist-types/commands/ReleaseFileSystemNfsV3LocksCommand.d.ts +36 -6
- package/dist-types/commands/RestoreVolumeFromSnapshotCommand.d.ts +36 -6
- package/dist-types/commands/StartMisconfiguredStateRecoveryCommand.d.ts +36 -6
- package/dist-types/commands/UpdateFileSystemCommand.d.ts +47 -6
- package/dist-types/commands/UpdateSharedVpcConfigurationCommand.d.ts +94 -0
- package/dist-types/commands/UpdateSnapshotCommand.d.ts +36 -6
- package/dist-types/commands/UpdateVolumeCommand.d.ts +37 -6
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +478 -43
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/ts3.4/FSx.d.ts +51 -0
- package/dist-types/ts3.4/FSxClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CopySnapshotAndUpdateVolumeCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/DescribeSharedVpcConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/UpdateSharedVpcConfigurationCommand.d.ts +42 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +69 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/package.json +12 -12
|
@@ -32,8 +32,10 @@ export const AdministrativeActionType = {
|
|
|
32
32
|
STORAGE_OPTIMIZATION: "STORAGE_OPTIMIZATION",
|
|
33
33
|
STORAGE_TYPE_OPTIMIZATION: "STORAGE_TYPE_OPTIMIZATION",
|
|
34
34
|
THROUGHPUT_OPTIMIZATION: "THROUGHPUT_OPTIMIZATION",
|
|
35
|
+
VOLUME_INITIALIZE_WITH_SNAPSHOT: "VOLUME_INITIALIZE_WITH_SNAPSHOT",
|
|
35
36
|
VOLUME_RESTORE: "VOLUME_RESTORE",
|
|
36
37
|
VOLUME_UPDATE: "VOLUME_UPDATE",
|
|
38
|
+
VOLUME_UPDATE_WITH_SNAPSHOT: "VOLUME_UPDATE_WITH_SNAPSHOT",
|
|
37
39
|
};
|
|
38
40
|
export const Status = {
|
|
39
41
|
COMPLETED: "COMPLETED",
|
|
@@ -94,6 +96,7 @@ export const LustreAccessAuditLogLevel = {
|
|
|
94
96
|
export const OntapDeploymentType = {
|
|
95
97
|
MULTI_AZ_1: "MULTI_AZ_1",
|
|
96
98
|
SINGLE_AZ_1: "SINGLE_AZ_1",
|
|
99
|
+
SINGLE_AZ_2: "SINGLE_AZ_2",
|
|
97
100
|
};
|
|
98
101
|
export const DiskIopsConfigurationMode = {
|
|
99
102
|
AUTOMATIC: "AUTOMATIC",
|
|
@@ -193,6 +196,10 @@ export const TieringPolicyName = {
|
|
|
193
196
|
NONE: "NONE",
|
|
194
197
|
SNAPSHOT_ONLY: "SNAPSHOT_ONLY",
|
|
195
198
|
};
|
|
199
|
+
export const VolumeStyle = {
|
|
200
|
+
FLEXGROUP: "FLEXGROUP",
|
|
201
|
+
FLEXVOL: "FLEXVOL",
|
|
202
|
+
};
|
|
196
203
|
export const OpenZFSDataCompressionType = {
|
|
197
204
|
LZ4: "LZ4",
|
|
198
205
|
NONE: "NONE",
|
|
@@ -201,6 +208,7 @@ export const OpenZFSDataCompressionType = {
|
|
|
201
208
|
export const OpenZFSCopyStrategy = {
|
|
202
209
|
CLONE: "CLONE",
|
|
203
210
|
FULL_COPY: "FULL_COPY",
|
|
211
|
+
INCREMENTAL_COPY: "INCREMENTAL_COPY",
|
|
204
212
|
};
|
|
205
213
|
export const OpenZFSQuotaType = {
|
|
206
214
|
GROUP: "GROUP",
|
|
@@ -438,6 +446,11 @@ export class SourceBackupUnavailable extends __BaseException {
|
|
|
438
446
|
this.BackupId = opts.BackupId;
|
|
439
447
|
}
|
|
440
448
|
}
|
|
449
|
+
export const UpdateOpenZFSVolumeOption = {
|
|
450
|
+
DELETE_CLONED_VOLUMES: "DELETE_CLONED_VOLUMES",
|
|
451
|
+
DELETE_INTERMEDIATE_DATA: "DELETE_INTERMEDIATE_DATA",
|
|
452
|
+
DELETE_INTERMEDIATE_SNAPSHOTS: "DELETE_INTERMEDIATE_SNAPSHOTS",
|
|
453
|
+
};
|
|
441
454
|
export class BackupInProgress extends __BaseException {
|
|
442
455
|
constructor(opts) {
|
|
443
456
|
super({
|
|
@@ -905,6 +918,12 @@ export const VolumeFilterSensitiveLog = (obj) => ({
|
|
|
905
918
|
AdministrativeActions: obj.AdministrativeActions.map((item) => AdministrativeActionFilterSensitiveLog(item)),
|
|
906
919
|
}),
|
|
907
920
|
});
|
|
921
|
+
export const CopySnapshotAndUpdateVolumeResponseFilterSensitiveLog = (obj) => ({
|
|
922
|
+
...obj,
|
|
923
|
+
...(obj.AdministrativeActions && {
|
|
924
|
+
AdministrativeActions: obj.AdministrativeActions.map((item) => AdministrativeActionFilterSensitiveLog(item)),
|
|
925
|
+
}),
|
|
926
|
+
});
|
|
908
927
|
export const RestoreVolumeFromSnapshotResponseFilterSensitiveLog = (obj) => ({
|
|
909
928
|
...obj,
|
|
910
929
|
...(obj.AdministrativeActions && {
|
|
@@ -21,6 +21,12 @@ export const se_CopyBackupCommand = async (input, context) => {
|
|
|
21
21
|
body = JSON.stringify(se_CopyBackupRequest(input, context));
|
|
22
22
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
23
23
|
};
|
|
24
|
+
export const se_CopySnapshotAndUpdateVolumeCommand = async (input, context) => {
|
|
25
|
+
const headers = sharedHeaders("CopySnapshotAndUpdateVolume");
|
|
26
|
+
let body;
|
|
27
|
+
body = JSON.stringify(se_CopySnapshotAndUpdateVolumeRequest(input, context));
|
|
28
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
29
|
+
};
|
|
24
30
|
export const se_CreateBackupCommand = async (input, context) => {
|
|
25
31
|
const headers = sharedHeaders("CreateBackup");
|
|
26
32
|
let body;
|
|
@@ -159,6 +165,12 @@ export const se_DescribeFileSystemsCommand = async (input, context) => {
|
|
|
159
165
|
body = JSON.stringify(_json(input));
|
|
160
166
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
161
167
|
};
|
|
168
|
+
export const se_DescribeSharedVpcConfigurationCommand = async (input, context) => {
|
|
169
|
+
const headers = sharedHeaders("DescribeSharedVpcConfiguration");
|
|
170
|
+
let body;
|
|
171
|
+
body = JSON.stringify(_json(input));
|
|
172
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
173
|
+
};
|
|
162
174
|
export const se_DescribeSnapshotsCommand = async (input, context) => {
|
|
163
175
|
const headers = sharedHeaders("DescribeSnapshots");
|
|
164
176
|
let body;
|
|
@@ -237,6 +249,12 @@ export const se_UpdateFileSystemCommand = async (input, context) => {
|
|
|
237
249
|
body = JSON.stringify(se_UpdateFileSystemRequest(input, context));
|
|
238
250
|
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
239
251
|
};
|
|
252
|
+
export const se_UpdateSharedVpcConfigurationCommand = async (input, context) => {
|
|
253
|
+
const headers = sharedHeaders("UpdateSharedVpcConfiguration");
|
|
254
|
+
let body;
|
|
255
|
+
body = JSON.stringify(se_UpdateSharedVpcConfigurationRequest(input, context));
|
|
256
|
+
return buildHttpRpcRequest(context, headers, "/", undefined, body);
|
|
257
|
+
};
|
|
240
258
|
export const se_UpdateSnapshotCommand = async (input, context) => {
|
|
241
259
|
const headers = sharedHeaders("UpdateSnapshot");
|
|
242
260
|
let body;
|
|
@@ -399,6 +417,47 @@ const de_CopyBackupCommandError = async (output, context) => {
|
|
|
399
417
|
});
|
|
400
418
|
}
|
|
401
419
|
};
|
|
420
|
+
export const de_CopySnapshotAndUpdateVolumeCommand = async (output, context) => {
|
|
421
|
+
if (output.statusCode >= 300) {
|
|
422
|
+
return de_CopySnapshotAndUpdateVolumeCommandError(output, context);
|
|
423
|
+
}
|
|
424
|
+
const data = await parseBody(output.body, context);
|
|
425
|
+
let contents = {};
|
|
426
|
+
contents = de_CopySnapshotAndUpdateVolumeResponse(data, context);
|
|
427
|
+
const response = {
|
|
428
|
+
$metadata: deserializeMetadata(output),
|
|
429
|
+
...contents,
|
|
430
|
+
};
|
|
431
|
+
return response;
|
|
432
|
+
};
|
|
433
|
+
const de_CopySnapshotAndUpdateVolumeCommandError = async (output, context) => {
|
|
434
|
+
const parsedOutput = {
|
|
435
|
+
...output,
|
|
436
|
+
body: await parseErrorBody(output.body, context),
|
|
437
|
+
};
|
|
438
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
439
|
+
switch (errorCode) {
|
|
440
|
+
case "BadRequest":
|
|
441
|
+
case "com.amazonaws.fsx#BadRequest":
|
|
442
|
+
throw await de_BadRequestRes(parsedOutput, context);
|
|
443
|
+
case "IncompatibleParameterError":
|
|
444
|
+
case "com.amazonaws.fsx#IncompatibleParameterError":
|
|
445
|
+
throw await de_IncompatibleParameterErrorRes(parsedOutput, context);
|
|
446
|
+
case "InternalServerError":
|
|
447
|
+
case "com.amazonaws.fsx#InternalServerError":
|
|
448
|
+
throw await de_InternalServerErrorRes(parsedOutput, context);
|
|
449
|
+
case "ServiceLimitExceeded":
|
|
450
|
+
case "com.amazonaws.fsx#ServiceLimitExceeded":
|
|
451
|
+
throw await de_ServiceLimitExceededRes(parsedOutput, context);
|
|
452
|
+
default:
|
|
453
|
+
const parsedBody = parsedOutput.body;
|
|
454
|
+
return throwDefaultError({
|
|
455
|
+
output,
|
|
456
|
+
parsedBody,
|
|
457
|
+
errorCode,
|
|
458
|
+
});
|
|
459
|
+
}
|
|
460
|
+
};
|
|
402
461
|
export const de_CreateBackupCommand = async (output, context) => {
|
|
403
462
|
if (output.statusCode >= 300) {
|
|
404
463
|
return de_CreateBackupCommandError(output, context);
|
|
@@ -1459,6 +1518,41 @@ const de_DescribeFileSystemsCommandError = async (output, context) => {
|
|
|
1459
1518
|
});
|
|
1460
1519
|
}
|
|
1461
1520
|
};
|
|
1521
|
+
export const de_DescribeSharedVpcConfigurationCommand = async (output, context) => {
|
|
1522
|
+
if (output.statusCode >= 300) {
|
|
1523
|
+
return de_DescribeSharedVpcConfigurationCommandError(output, context);
|
|
1524
|
+
}
|
|
1525
|
+
const data = await parseBody(output.body, context);
|
|
1526
|
+
let contents = {};
|
|
1527
|
+
contents = _json(data);
|
|
1528
|
+
const response = {
|
|
1529
|
+
$metadata: deserializeMetadata(output),
|
|
1530
|
+
...contents,
|
|
1531
|
+
};
|
|
1532
|
+
return response;
|
|
1533
|
+
};
|
|
1534
|
+
const de_DescribeSharedVpcConfigurationCommandError = async (output, context) => {
|
|
1535
|
+
const parsedOutput = {
|
|
1536
|
+
...output,
|
|
1537
|
+
body: await parseErrorBody(output.body, context),
|
|
1538
|
+
};
|
|
1539
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
1540
|
+
switch (errorCode) {
|
|
1541
|
+
case "BadRequest":
|
|
1542
|
+
case "com.amazonaws.fsx#BadRequest":
|
|
1543
|
+
throw await de_BadRequestRes(parsedOutput, context);
|
|
1544
|
+
case "InternalServerError":
|
|
1545
|
+
case "com.amazonaws.fsx#InternalServerError":
|
|
1546
|
+
throw await de_InternalServerErrorRes(parsedOutput, context);
|
|
1547
|
+
default:
|
|
1548
|
+
const parsedBody = parsedOutput.body;
|
|
1549
|
+
return throwDefaultError({
|
|
1550
|
+
output,
|
|
1551
|
+
parsedBody,
|
|
1552
|
+
errorCode,
|
|
1553
|
+
});
|
|
1554
|
+
}
|
|
1555
|
+
};
|
|
1462
1556
|
export const de_DescribeSnapshotsCommand = async (output, context) => {
|
|
1463
1557
|
if (output.statusCode >= 300) {
|
|
1464
1558
|
return de_DescribeSnapshotsCommandError(output, context);
|
|
@@ -2010,6 +2104,44 @@ const de_UpdateFileSystemCommandError = async (output, context) => {
|
|
|
2010
2104
|
});
|
|
2011
2105
|
}
|
|
2012
2106
|
};
|
|
2107
|
+
export const de_UpdateSharedVpcConfigurationCommand = async (output, context) => {
|
|
2108
|
+
if (output.statusCode >= 300) {
|
|
2109
|
+
return de_UpdateSharedVpcConfigurationCommandError(output, context);
|
|
2110
|
+
}
|
|
2111
|
+
const data = await parseBody(output.body, context);
|
|
2112
|
+
let contents = {};
|
|
2113
|
+
contents = _json(data);
|
|
2114
|
+
const response = {
|
|
2115
|
+
$metadata: deserializeMetadata(output),
|
|
2116
|
+
...contents,
|
|
2117
|
+
};
|
|
2118
|
+
return response;
|
|
2119
|
+
};
|
|
2120
|
+
const de_UpdateSharedVpcConfigurationCommandError = async (output, context) => {
|
|
2121
|
+
const parsedOutput = {
|
|
2122
|
+
...output,
|
|
2123
|
+
body: await parseErrorBody(output.body, context),
|
|
2124
|
+
};
|
|
2125
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
2126
|
+
switch (errorCode) {
|
|
2127
|
+
case "BadRequest":
|
|
2128
|
+
case "com.amazonaws.fsx#BadRequest":
|
|
2129
|
+
throw await de_BadRequestRes(parsedOutput, context);
|
|
2130
|
+
case "IncompatibleParameterError":
|
|
2131
|
+
case "com.amazonaws.fsx#IncompatibleParameterError":
|
|
2132
|
+
throw await de_IncompatibleParameterErrorRes(parsedOutput, context);
|
|
2133
|
+
case "InternalServerError":
|
|
2134
|
+
case "com.amazonaws.fsx#InternalServerError":
|
|
2135
|
+
throw await de_InternalServerErrorRes(parsedOutput, context);
|
|
2136
|
+
default:
|
|
2137
|
+
const parsedBody = parsedOutput.body;
|
|
2138
|
+
return throwDefaultError({
|
|
2139
|
+
output,
|
|
2140
|
+
parsedBody,
|
|
2141
|
+
errorCode,
|
|
2142
|
+
});
|
|
2143
|
+
}
|
|
2144
|
+
};
|
|
2013
2145
|
export const de_UpdateSnapshotCommand = async (output, context) => {
|
|
2014
2146
|
if (output.statusCode >= 300) {
|
|
2015
2147
|
return de_UpdateSnapshotCommandError(output, context);
|
|
@@ -2468,6 +2600,15 @@ const se_CopyBackupRequest = (input, context) => {
|
|
|
2468
2600
|
Tags: _json,
|
|
2469
2601
|
});
|
|
2470
2602
|
};
|
|
2603
|
+
const se_CopySnapshotAndUpdateVolumeRequest = (input, context) => {
|
|
2604
|
+
return take(input, {
|
|
2605
|
+
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2606
|
+
CopyStrategy: [],
|
|
2607
|
+
Options: _json,
|
|
2608
|
+
SourceSnapshotARN: [],
|
|
2609
|
+
VolumeId: [],
|
|
2610
|
+
});
|
|
2611
|
+
};
|
|
2471
2612
|
const se_CreateBackupRequest = (input, context) => {
|
|
2472
2613
|
return take(input, {
|
|
2473
2614
|
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
@@ -2696,6 +2837,12 @@ const se_UpdateFileSystemRequest = (input, context) => {
|
|
|
2696
2837
|
WindowsConfiguration: _json,
|
|
2697
2838
|
});
|
|
2698
2839
|
};
|
|
2840
|
+
const se_UpdateSharedVpcConfigurationRequest = (input, context) => {
|
|
2841
|
+
return take(input, {
|
|
2842
|
+
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
2843
|
+
EnableFsxRouteTableUpdatesFromParticipantAccounts: [],
|
|
2844
|
+
});
|
|
2845
|
+
};
|
|
2699
2846
|
const se_UpdateSnapshotRequest = (input, context) => {
|
|
2700
2847
|
return take(input, {
|
|
2701
2848
|
ClientRequestToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
@@ -2725,11 +2872,13 @@ const de_AdministrativeAction = (output, context) => {
|
|
|
2725
2872
|
AdministrativeActionType: __expectString,
|
|
2726
2873
|
FailureDetails: _json,
|
|
2727
2874
|
ProgressPercent: __expectInt32,
|
|
2875
|
+
RemainingTransferBytes: __expectLong,
|
|
2728
2876
|
RequestTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
2729
2877
|
Status: __expectString,
|
|
2730
2878
|
TargetFileSystemValues: (_) => de_FileSystem(_, context),
|
|
2731
2879
|
TargetSnapshotValues: (_) => de_Snapshot(_, context),
|
|
2732
2880
|
TargetVolumeValues: (_) => de_Volume(_, context),
|
|
2881
|
+
TotalTransferBytes: __expectLong,
|
|
2733
2882
|
});
|
|
2734
2883
|
};
|
|
2735
2884
|
const de_AdministrativeActions = (output, context) => {
|
|
@@ -2773,6 +2922,13 @@ const de_CopyBackupResponse = (output, context) => {
|
|
|
2773
2922
|
Backup: (_) => de_Backup(_, context),
|
|
2774
2923
|
});
|
|
2775
2924
|
};
|
|
2925
|
+
const de_CopySnapshotAndUpdateVolumeResponse = (output, context) => {
|
|
2926
|
+
return take(output, {
|
|
2927
|
+
AdministrativeActions: (_) => de_AdministrativeActions(_, context),
|
|
2928
|
+
Lifecycle: __expectString,
|
|
2929
|
+
VolumeId: __expectString,
|
|
2930
|
+
});
|
|
2931
|
+
};
|
|
2776
2932
|
const de_CreateBackupResponse = (output, context) => {
|
|
2777
2933
|
return take(output, {
|
|
2778
2934
|
Backup: (_) => de_Backup(_, context),
|
package/dist-types/FSx.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
|
2
2
|
import { AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesCommandOutput } from "./commands/AssociateFileSystemAliasesCommand";
|
|
3
3
|
import { CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput } from "./commands/CancelDataRepositoryTaskCommand";
|
|
4
4
|
import { CopyBackupCommandInput, CopyBackupCommandOutput } from "./commands/CopyBackupCommand";
|
|
5
|
+
import { CopySnapshotAndUpdateVolumeCommandInput, CopySnapshotAndUpdateVolumeCommandOutput } from "./commands/CopySnapshotAndUpdateVolumeCommand";
|
|
5
6
|
import { CreateBackupCommandInput, CreateBackupCommandOutput } from "./commands/CreateBackupCommand";
|
|
6
7
|
import { CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput } from "./commands/CreateDataRepositoryAssociationCommand";
|
|
7
8
|
import { CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput } from "./commands/CreateDataRepositoryTaskCommand";
|
|
@@ -25,6 +26,7 @@ import { DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCom
|
|
|
25
26
|
import { DescribeFileCachesCommandInput, DescribeFileCachesCommandOutput } from "./commands/DescribeFileCachesCommand";
|
|
26
27
|
import { DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput } from "./commands/DescribeFileSystemAliasesCommand";
|
|
27
28
|
import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "./commands/DescribeFileSystemsCommand";
|
|
29
|
+
import { DescribeSharedVpcConfigurationCommandInput, DescribeSharedVpcConfigurationCommandOutput } from "./commands/DescribeSharedVpcConfigurationCommand";
|
|
28
30
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
|
|
29
31
|
import { DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput } from "./commands/DescribeStorageVirtualMachinesCommand";
|
|
30
32
|
import { DescribeVolumesCommandInput, DescribeVolumesCommandOutput } from "./commands/DescribeVolumesCommand";
|
|
@@ -38,6 +40,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
38
40
|
import { UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput } from "./commands/UpdateDataRepositoryAssociationCommand";
|
|
39
41
|
import { UpdateFileCacheCommandInput, UpdateFileCacheCommandOutput } from "./commands/UpdateFileCacheCommand";
|
|
40
42
|
import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "./commands/UpdateFileSystemCommand";
|
|
43
|
+
import { UpdateSharedVpcConfigurationCommandInput, UpdateSharedVpcConfigurationCommandOutput } from "./commands/UpdateSharedVpcConfigurationCommand";
|
|
41
44
|
import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./commands/UpdateSnapshotCommand";
|
|
42
45
|
import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "./commands/UpdateStorageVirtualMachineCommand";
|
|
43
46
|
import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
|
|
@@ -61,6 +64,12 @@ export interface FSx {
|
|
|
61
64
|
copyBackup(args: CopyBackupCommandInput, options?: __HttpHandlerOptions): Promise<CopyBackupCommandOutput>;
|
|
62
65
|
copyBackup(args: CopyBackupCommandInput, cb: (err: any, data?: CopyBackupCommandOutput) => void): void;
|
|
63
66
|
copyBackup(args: CopyBackupCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopyBackupCommandOutput) => void): void;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link CopySnapshotAndUpdateVolumeCommand}
|
|
69
|
+
*/
|
|
70
|
+
copySnapshotAndUpdateVolume(args: CopySnapshotAndUpdateVolumeCommandInput, options?: __HttpHandlerOptions): Promise<CopySnapshotAndUpdateVolumeCommandOutput>;
|
|
71
|
+
copySnapshotAndUpdateVolume(args: CopySnapshotAndUpdateVolumeCommandInput, cb: (err: any, data?: CopySnapshotAndUpdateVolumeCommandOutput) => void): void;
|
|
72
|
+
copySnapshotAndUpdateVolume(args: CopySnapshotAndUpdateVolumeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CopySnapshotAndUpdateVolumeCommandOutput) => void): void;
|
|
64
73
|
/**
|
|
65
74
|
* @see {@link CreateBackupCommand}
|
|
66
75
|
*/
|
|
@@ -199,6 +208,12 @@ export interface FSx {
|
|
|
199
208
|
describeFileSystems(args: DescribeFileSystemsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFileSystemsCommandOutput>;
|
|
200
209
|
describeFileSystems(args: DescribeFileSystemsCommandInput, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
|
|
201
210
|
describeFileSystems(args: DescribeFileSystemsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFileSystemsCommandOutput) => void): void;
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link DescribeSharedVpcConfigurationCommand}
|
|
213
|
+
*/
|
|
214
|
+
describeSharedVpcConfiguration(args: DescribeSharedVpcConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSharedVpcConfigurationCommandOutput>;
|
|
215
|
+
describeSharedVpcConfiguration(args: DescribeSharedVpcConfigurationCommandInput, cb: (err: any, data?: DescribeSharedVpcConfigurationCommandOutput) => void): void;
|
|
216
|
+
describeSharedVpcConfiguration(args: DescribeSharedVpcConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSharedVpcConfigurationCommandOutput) => void): void;
|
|
202
217
|
/**
|
|
203
218
|
* @see {@link DescribeSnapshotsCommand}
|
|
204
219
|
*/
|
|
@@ -277,6 +292,12 @@ export interface FSx {
|
|
|
277
292
|
updateFileSystem(args: UpdateFileSystemCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFileSystemCommandOutput>;
|
|
278
293
|
updateFileSystem(args: UpdateFileSystemCommandInput, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
|
|
279
294
|
updateFileSystem(args: UpdateFileSystemCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFileSystemCommandOutput) => void): void;
|
|
295
|
+
/**
|
|
296
|
+
* @see {@link UpdateSharedVpcConfigurationCommand}
|
|
297
|
+
*/
|
|
298
|
+
updateSharedVpcConfiguration(args: UpdateSharedVpcConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateSharedVpcConfigurationCommandOutput>;
|
|
299
|
+
updateSharedVpcConfiguration(args: UpdateSharedVpcConfigurationCommandInput, cb: (err: any, data?: UpdateSharedVpcConfigurationCommandOutput) => void): void;
|
|
300
|
+
updateSharedVpcConfiguration(args: UpdateSharedVpcConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateSharedVpcConfigurationCommandOutput) => void): void;
|
|
280
301
|
/**
|
|
281
302
|
* @see {@link UpdateSnapshotCommand}
|
|
282
303
|
*/
|
|
@@ -11,6 +11,7 @@ import { BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConf
|
|
|
11
11
|
import { AssociateFileSystemAliasesCommandInput, AssociateFileSystemAliasesCommandOutput } from "./commands/AssociateFileSystemAliasesCommand";
|
|
12
12
|
import { CancelDataRepositoryTaskCommandInput, CancelDataRepositoryTaskCommandOutput } from "./commands/CancelDataRepositoryTaskCommand";
|
|
13
13
|
import { CopyBackupCommandInput, CopyBackupCommandOutput } from "./commands/CopyBackupCommand";
|
|
14
|
+
import { CopySnapshotAndUpdateVolumeCommandInput, CopySnapshotAndUpdateVolumeCommandOutput } from "./commands/CopySnapshotAndUpdateVolumeCommand";
|
|
14
15
|
import { CreateBackupCommandInput, CreateBackupCommandOutput } from "./commands/CreateBackupCommand";
|
|
15
16
|
import { CreateDataRepositoryAssociationCommandInput, CreateDataRepositoryAssociationCommandOutput } from "./commands/CreateDataRepositoryAssociationCommand";
|
|
16
17
|
import { CreateDataRepositoryTaskCommandInput, CreateDataRepositoryTaskCommandOutput } from "./commands/CreateDataRepositoryTaskCommand";
|
|
@@ -34,6 +35,7 @@ import { DescribeDataRepositoryTasksCommandInput, DescribeDataRepositoryTasksCom
|
|
|
34
35
|
import { DescribeFileCachesCommandInput, DescribeFileCachesCommandOutput } from "./commands/DescribeFileCachesCommand";
|
|
35
36
|
import { DescribeFileSystemAliasesCommandInput, DescribeFileSystemAliasesCommandOutput } from "./commands/DescribeFileSystemAliasesCommand";
|
|
36
37
|
import { DescribeFileSystemsCommandInput, DescribeFileSystemsCommandOutput } from "./commands/DescribeFileSystemsCommand";
|
|
38
|
+
import { DescribeSharedVpcConfigurationCommandInput, DescribeSharedVpcConfigurationCommandOutput } from "./commands/DescribeSharedVpcConfigurationCommand";
|
|
37
39
|
import { DescribeSnapshotsCommandInput, DescribeSnapshotsCommandOutput } from "./commands/DescribeSnapshotsCommand";
|
|
38
40
|
import { DescribeStorageVirtualMachinesCommandInput, DescribeStorageVirtualMachinesCommandOutput } from "./commands/DescribeStorageVirtualMachinesCommand";
|
|
39
41
|
import { DescribeVolumesCommandInput, DescribeVolumesCommandOutput } from "./commands/DescribeVolumesCommand";
|
|
@@ -47,6 +49,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
47
49
|
import { UpdateDataRepositoryAssociationCommandInput, UpdateDataRepositoryAssociationCommandOutput } from "./commands/UpdateDataRepositoryAssociationCommand";
|
|
48
50
|
import { UpdateFileCacheCommandInput, UpdateFileCacheCommandOutput } from "./commands/UpdateFileCacheCommand";
|
|
49
51
|
import { UpdateFileSystemCommandInput, UpdateFileSystemCommandOutput } from "./commands/UpdateFileSystemCommand";
|
|
52
|
+
import { UpdateSharedVpcConfigurationCommandInput, UpdateSharedVpcConfigurationCommandOutput } from "./commands/UpdateSharedVpcConfigurationCommand";
|
|
50
53
|
import { UpdateSnapshotCommandInput, UpdateSnapshotCommandOutput } from "./commands/UpdateSnapshotCommand";
|
|
51
54
|
import { UpdateStorageVirtualMachineCommandInput, UpdateStorageVirtualMachineCommandOutput } from "./commands/UpdateStorageVirtualMachineCommand";
|
|
52
55
|
import { UpdateVolumeCommandInput, UpdateVolumeCommandOutput } from "./commands/UpdateVolumeCommand";
|
|
@@ -56,11 +59,11 @@ export { __Client };
|
|
|
56
59
|
/**
|
|
57
60
|
* @public
|
|
58
61
|
*/
|
|
59
|
-
export type ServiceInputTypes = AssociateFileSystemAliasesCommandInput | CancelDataRepositoryTaskCommandInput | CopyBackupCommandInput | CreateBackupCommandInput | CreateDataRepositoryAssociationCommandInput | CreateDataRepositoryTaskCommandInput | CreateFileCacheCommandInput | CreateFileSystemCommandInput | CreateFileSystemFromBackupCommandInput | CreateSnapshotCommandInput | CreateStorageVirtualMachineCommandInput | CreateVolumeCommandInput | CreateVolumeFromBackupCommandInput | DeleteBackupCommandInput | DeleteDataRepositoryAssociationCommandInput | DeleteFileCacheCommandInput | DeleteFileSystemCommandInput | DeleteSnapshotCommandInput | DeleteStorageVirtualMachineCommandInput | DeleteVolumeCommandInput | DescribeBackupsCommandInput | DescribeDataRepositoryAssociationsCommandInput | DescribeDataRepositoryTasksCommandInput | DescribeFileCachesCommandInput | DescribeFileSystemAliasesCommandInput | DescribeFileSystemsCommandInput | DescribeSnapshotsCommandInput | DescribeStorageVirtualMachinesCommandInput | DescribeVolumesCommandInput | DisassociateFileSystemAliasesCommandInput | ListTagsForResourceCommandInput | ReleaseFileSystemNfsV3LocksCommandInput | RestoreVolumeFromSnapshotCommandInput | StartMisconfiguredStateRecoveryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataRepositoryAssociationCommandInput | UpdateFileCacheCommandInput | UpdateFileSystemCommandInput | UpdateSnapshotCommandInput | UpdateStorageVirtualMachineCommandInput | UpdateVolumeCommandInput;
|
|
62
|
+
export type ServiceInputTypes = AssociateFileSystemAliasesCommandInput | CancelDataRepositoryTaskCommandInput | CopyBackupCommandInput | CopySnapshotAndUpdateVolumeCommandInput | CreateBackupCommandInput | CreateDataRepositoryAssociationCommandInput | CreateDataRepositoryTaskCommandInput | CreateFileCacheCommandInput | CreateFileSystemCommandInput | CreateFileSystemFromBackupCommandInput | CreateSnapshotCommandInput | CreateStorageVirtualMachineCommandInput | CreateVolumeCommandInput | CreateVolumeFromBackupCommandInput | DeleteBackupCommandInput | DeleteDataRepositoryAssociationCommandInput | DeleteFileCacheCommandInput | DeleteFileSystemCommandInput | DeleteSnapshotCommandInput | DeleteStorageVirtualMachineCommandInput | DeleteVolumeCommandInput | DescribeBackupsCommandInput | DescribeDataRepositoryAssociationsCommandInput | DescribeDataRepositoryTasksCommandInput | DescribeFileCachesCommandInput | DescribeFileSystemAliasesCommandInput | DescribeFileSystemsCommandInput | DescribeSharedVpcConfigurationCommandInput | DescribeSnapshotsCommandInput | DescribeStorageVirtualMachinesCommandInput | DescribeVolumesCommandInput | DisassociateFileSystemAliasesCommandInput | ListTagsForResourceCommandInput | ReleaseFileSystemNfsV3LocksCommandInput | RestoreVolumeFromSnapshotCommandInput | StartMisconfiguredStateRecoveryCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateDataRepositoryAssociationCommandInput | UpdateFileCacheCommandInput | UpdateFileSystemCommandInput | UpdateSharedVpcConfigurationCommandInput | UpdateSnapshotCommandInput | UpdateStorageVirtualMachineCommandInput | UpdateVolumeCommandInput;
|
|
60
63
|
/**
|
|
61
64
|
* @public
|
|
62
65
|
*/
|
|
63
|
-
export type ServiceOutputTypes = AssociateFileSystemAliasesCommandOutput | CancelDataRepositoryTaskCommandOutput | CopyBackupCommandOutput | CreateBackupCommandOutput | CreateDataRepositoryAssociationCommandOutput | CreateDataRepositoryTaskCommandOutput | CreateFileCacheCommandOutput | CreateFileSystemCommandOutput | CreateFileSystemFromBackupCommandOutput | CreateSnapshotCommandOutput | CreateStorageVirtualMachineCommandOutput | CreateVolumeCommandOutput | CreateVolumeFromBackupCommandOutput | DeleteBackupCommandOutput | DeleteDataRepositoryAssociationCommandOutput | DeleteFileCacheCommandOutput | DeleteFileSystemCommandOutput | DeleteSnapshotCommandOutput | DeleteStorageVirtualMachineCommandOutput | DeleteVolumeCommandOutput | DescribeBackupsCommandOutput | DescribeDataRepositoryAssociationsCommandOutput | DescribeDataRepositoryTasksCommandOutput | DescribeFileCachesCommandOutput | DescribeFileSystemAliasesCommandOutput | DescribeFileSystemsCommandOutput | DescribeSnapshotsCommandOutput | DescribeStorageVirtualMachinesCommandOutput | DescribeVolumesCommandOutput | DisassociateFileSystemAliasesCommandOutput | ListTagsForResourceCommandOutput | ReleaseFileSystemNfsV3LocksCommandOutput | RestoreVolumeFromSnapshotCommandOutput | StartMisconfiguredStateRecoveryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataRepositoryAssociationCommandOutput | UpdateFileCacheCommandOutput | UpdateFileSystemCommandOutput | UpdateSnapshotCommandOutput | UpdateStorageVirtualMachineCommandOutput | UpdateVolumeCommandOutput;
|
|
66
|
+
export type ServiceOutputTypes = AssociateFileSystemAliasesCommandOutput | CancelDataRepositoryTaskCommandOutput | CopyBackupCommandOutput | CopySnapshotAndUpdateVolumeCommandOutput | CreateBackupCommandOutput | CreateDataRepositoryAssociationCommandOutput | CreateDataRepositoryTaskCommandOutput | CreateFileCacheCommandOutput | CreateFileSystemCommandOutput | CreateFileSystemFromBackupCommandOutput | CreateSnapshotCommandOutput | CreateStorageVirtualMachineCommandOutput | CreateVolumeCommandOutput | CreateVolumeFromBackupCommandOutput | DeleteBackupCommandOutput | DeleteDataRepositoryAssociationCommandOutput | DeleteFileCacheCommandOutput | DeleteFileSystemCommandOutput | DeleteSnapshotCommandOutput | DeleteStorageVirtualMachineCommandOutput | DeleteVolumeCommandOutput | DescribeBackupsCommandOutput | DescribeDataRepositoryAssociationsCommandOutput | DescribeDataRepositoryTasksCommandOutput | DescribeFileCachesCommandOutput | DescribeFileSystemAliasesCommandOutput | DescribeFileSystemsCommandOutput | DescribeSharedVpcConfigurationCommandOutput | DescribeSnapshotsCommandOutput | DescribeStorageVirtualMachinesCommandOutput | DescribeVolumesCommandOutput | DisassociateFileSystemAliasesCommandOutput | ListTagsForResourceCommandOutput | ReleaseFileSystemNfsV3LocksCommandOutput | RestoreVolumeFromSnapshotCommandOutput | StartMisconfiguredStateRecoveryCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateDataRepositoryAssociationCommandOutput | UpdateFileCacheCommandOutput | UpdateFileSystemCommandOutput | UpdateSharedVpcConfigurationCommandOutput | UpdateSnapshotCommandOutput | UpdateStorageVirtualMachineCommandOutput | UpdateVolumeCommandOutput;
|
|
64
67
|
/**
|
|
65
68
|
* @public
|
|
66
69
|
*/
|
|
@@ -182,7 +182,7 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
182
182
|
* // },
|
|
183
183
|
* // AdministrativeActions: [ // AdministrativeActions
|
|
184
184
|
* // { // AdministrativeAction
|
|
185
|
-
* // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE" || "THROUGHPUT_OPTIMIZATION" || "IOPS_OPTIMIZATION" || "STORAGE_TYPE_OPTIMIZATION" || "MISCONFIGURED_STATE_RECOVERY",
|
|
185
|
+
* // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE" || "THROUGHPUT_OPTIMIZATION" || "IOPS_OPTIMIZATION" || "STORAGE_TYPE_OPTIMIZATION" || "MISCONFIGURED_STATE_RECOVERY" || "VOLUME_UPDATE_WITH_SNAPSHOT" || "VOLUME_INITIALIZE_WITH_SNAPSHOT",
|
|
186
186
|
* // ProgressPercent: Number("int"),
|
|
187
187
|
* // RequestTime: new Date("TIMESTAMP"),
|
|
188
188
|
* // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
|
|
@@ -280,7 +280,7 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
280
280
|
* // },
|
|
281
281
|
* // AdministrativeActions: [
|
|
282
282
|
* // {
|
|
283
|
-
* // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE" || "THROUGHPUT_OPTIMIZATION" || "IOPS_OPTIMIZATION" || "STORAGE_TYPE_OPTIMIZATION" || "MISCONFIGURED_STATE_RECOVERY",
|
|
283
|
+
* // AdministrativeActionType: "FILE_SYSTEM_UPDATE" || "STORAGE_OPTIMIZATION" || "FILE_SYSTEM_ALIAS_ASSOCIATION" || "FILE_SYSTEM_ALIAS_DISASSOCIATION" || "VOLUME_UPDATE" || "SNAPSHOT_UPDATE" || "RELEASE_NFS_V3_LOCKS" || "VOLUME_RESTORE" || "THROUGHPUT_OPTIMIZATION" || "IOPS_OPTIMIZATION" || "STORAGE_TYPE_OPTIMIZATION" || "MISCONFIGURED_STATE_RECOVERY" || "VOLUME_UPDATE_WITH_SNAPSHOT" || "VOLUME_INITIALIZE_WITH_SNAPSHOT",
|
|
284
284
|
* // ProgressPercent: Number("int"),
|
|
285
285
|
* // RequestTime: new Date("TIMESTAMP"),
|
|
286
286
|
* // Status: "FAILED" || "IN_PROGRESS" || "PENDING" || "COMPLETED" || "UPDATED_OPTIMIZING",
|
|
@@ -333,6 +333,14 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
333
333
|
* // SnaplockType: "COMPLIANCE" || "ENTERPRISE",
|
|
334
334
|
* // VolumeAppendModeEnabled: true || false,
|
|
335
335
|
* // },
|
|
336
|
+
* // VolumeStyle: "FLEXVOL" || "FLEXGROUP",
|
|
337
|
+
* // AggregateConfiguration: { // AggregateConfiguration
|
|
338
|
+
* // Aggregates: [ // Aggregates
|
|
339
|
+
* // "STRING_VALUE",
|
|
340
|
+
* // ],
|
|
341
|
+
* // TotalConstituents: Number("int"),
|
|
342
|
+
* // },
|
|
343
|
+
* // SizeInBytes: Number("long"),
|
|
336
344
|
* // },
|
|
337
345
|
* // ResourceARN: "STRING_VALUE",
|
|
338
346
|
* // Tags: "<Tags>",
|
|
@@ -352,7 +360,7 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
352
360
|
* // CopyTagsToSnapshots: true || false,
|
|
353
361
|
* // OriginSnapshot: { // OpenZFSOriginSnapshotConfiguration
|
|
354
362
|
* // SnapshotARN: "STRING_VALUE",
|
|
355
|
-
* // CopyStrategy: "CLONE" || "FULL_COPY",
|
|
363
|
+
* // CopyStrategy: "CLONE" || "FULL_COPY" || "INCREMENTAL_COPY",
|
|
356
364
|
* // },
|
|
357
365
|
* // ReadOnly: true || false,
|
|
358
366
|
* // NfsExports: [ // OpenZFSNfsExports
|
|
@@ -377,6 +385,9 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
377
385
|
* // RestoreToSnapshot: "STRING_VALUE",
|
|
378
386
|
* // DeleteIntermediateSnaphots: true || false,
|
|
379
387
|
* // DeleteClonedVolumes: true || false,
|
|
388
|
+
* // DeleteIntermediateData: true || false,
|
|
389
|
+
* // SourceSnapshotARN: "STRING_VALUE",
|
|
390
|
+
* // DestinationSnapshot: "STRING_VALUE",
|
|
380
391
|
* // },
|
|
381
392
|
* // },
|
|
382
393
|
* // TargetSnapshotValues: { // Snapshot
|
|
@@ -392,12 +403,14 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
392
403
|
* // Tags: "<Tags>",
|
|
393
404
|
* // AdministrativeActions: "<AdministrativeActions>",
|
|
394
405
|
* // },
|
|
406
|
+
* // TotalTransferBytes: Number("long"),
|
|
407
|
+
* // RemainingTransferBytes: Number("long"),
|
|
395
408
|
* // },
|
|
396
409
|
* // ],
|
|
397
410
|
* // OntapConfiguration: { // OntapFileSystemConfiguration
|
|
398
411
|
* // AutomaticBackupRetentionDays: Number("int"),
|
|
399
412
|
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
400
|
-
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
|
|
413
|
+
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
|
|
401
414
|
* // EndpointIpAddressRange: "STRING_VALUE",
|
|
402
415
|
* // Endpoints: { // FileSystemEndpoints
|
|
403
416
|
* // Intercluster: { // FileSystemEndpoint
|
|
@@ -424,6 +437,8 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
424
437
|
* // ThroughputCapacity: Number("int"),
|
|
425
438
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
426
439
|
* // FsxAdminPassword: "STRING_VALUE",
|
|
440
|
+
* // HAPairs: Number("int"),
|
|
441
|
+
* // ThroughputCapacityPerHAPair: Number("int"),
|
|
427
442
|
* // },
|
|
428
443
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
429
444
|
* // OpenZFSConfiguration: { // OpenZFSFileSystemConfiguration
|
|
@@ -492,6 +507,14 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
492
507
|
* // SnaplockType: "COMPLIANCE" || "ENTERPRISE",
|
|
493
508
|
* // VolumeAppendModeEnabled: true || false,
|
|
494
509
|
* // },
|
|
510
|
+
* // VolumeStyle: "FLEXVOL" || "FLEXGROUP",
|
|
511
|
+
* // AggregateConfiguration: {
|
|
512
|
+
* // Aggregates: [
|
|
513
|
+
* // "STRING_VALUE",
|
|
514
|
+
* // ],
|
|
515
|
+
* // TotalConstituents: Number("int"),
|
|
516
|
+
* // },
|
|
517
|
+
* // SizeInBytes: Number("long"),
|
|
495
518
|
* // },
|
|
496
519
|
* // ResourceARN: "STRING_VALUE",
|
|
497
520
|
* // Tags: "<Tags>",
|
|
@@ -511,7 +534,7 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
511
534
|
* // CopyTagsToSnapshots: true || false,
|
|
512
535
|
* // OriginSnapshot: {
|
|
513
536
|
* // SnapshotARN: "STRING_VALUE",
|
|
514
|
-
* // CopyStrategy: "CLONE" || "FULL_COPY",
|
|
537
|
+
* // CopyStrategy: "CLONE" || "FULL_COPY" || "INCREMENTAL_COPY",
|
|
515
538
|
* // },
|
|
516
539
|
* // ReadOnly: true || false,
|
|
517
540
|
* // NfsExports: [
|
|
@@ -536,6 +559,9 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
536
559
|
* // RestoreToSnapshot: "STRING_VALUE",
|
|
537
560
|
* // DeleteIntermediateSnaphots: true || false,
|
|
538
561
|
* // DeleteClonedVolumes: true || false,
|
|
562
|
+
* // DeleteIntermediateData: true || false,
|
|
563
|
+
* // SourceSnapshotARN: "STRING_VALUE",
|
|
564
|
+
* // DestinationSnapshot: "STRING_VALUE",
|
|
539
565
|
* // },
|
|
540
566
|
* // },
|
|
541
567
|
* // TargetSnapshotValues: {
|
|
@@ -551,12 +577,14 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
551
577
|
* // Tags: "<Tags>",
|
|
552
578
|
* // AdministrativeActions: "<AdministrativeActions>",
|
|
553
579
|
* // },
|
|
580
|
+
* // TotalTransferBytes: Number("long"),
|
|
581
|
+
* // RemainingTransferBytes: Number("long"),
|
|
554
582
|
* // },
|
|
555
583
|
* // ],
|
|
556
584
|
* // OntapConfiguration: {
|
|
557
585
|
* // AutomaticBackupRetentionDays: Number("int"),
|
|
558
586
|
* // DailyAutomaticBackupStartTime: "STRING_VALUE",
|
|
559
|
-
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1",
|
|
587
|
+
* // DeploymentType: "MULTI_AZ_1" || "SINGLE_AZ_1" || "SINGLE_AZ_2",
|
|
560
588
|
* // EndpointIpAddressRange: "STRING_VALUE",
|
|
561
589
|
* // Endpoints: {
|
|
562
590
|
* // Intercluster: {
|
|
@@ -583,6 +611,8 @@ export interface CopyBackupCommandOutput extends CopyBackupResponse, __MetadataB
|
|
|
583
611
|
* // ThroughputCapacity: Number("int"),
|
|
584
612
|
* // WeeklyMaintenanceStartTime: "STRING_VALUE",
|
|
585
613
|
* // FsxAdminPassword: "STRING_VALUE",
|
|
614
|
+
* // HAPairs: Number("int"),
|
|
615
|
+
* // ThroughputCapacityPerHAPair: Number("int"),
|
|
586
616
|
* // },
|
|
587
617
|
* // FileSystemTypeVersion: "STRING_VALUE",
|
|
588
618
|
* // OpenZFSConfiguration: {
|