@aws-sdk/client-datasync 3.713.0 → 3.715.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 +48 -0
- package/dist-cjs/index.js +246 -0
- package/dist-cjs/runtimeConfig.js +8 -6
- package/dist-es/DataSync.js +12 -0
- package/dist-es/commands/UpdateLocationEfsCommand.js +22 -0
- package/dist-es/commands/UpdateLocationFsxLustreCommand.js +22 -0
- package/dist-es/commands/UpdateLocationFsxOntapCommand.js +23 -0
- package/dist-es/commands/UpdateLocationFsxOpenZfsCommand.js +23 -0
- package/dist-es/commands/UpdateLocationFsxWindowsCommand.js +23 -0
- package/dist-es/commands/UpdateLocationS3Command.js +22 -0
- package/dist-es/commands/index.js +6 -0
- package/dist-es/models/models_0.js +20 -0
- package/dist-es/protocols/Aws_json1_1.js +114 -0
- package/dist-es/runtimeConfig.js +8 -6
- package/dist-types/DataSync.d.ts +42 -0
- package/dist-types/DataSyncClient.d.ts +26 -2
- package/dist-types/commands/CreateLocationNfsCommand.d.ts +0 -5
- package/dist-types/commands/UpdateLocationAzureBlobCommand.d.ts +2 -1
- package/dist-types/commands/UpdateLocationEfsCommand.d.ts +81 -0
- package/dist-types/commands/UpdateLocationFsxLustreCommand.d.ts +78 -0
- package/dist-types/commands/UpdateLocationFsxOntapCommand.d.ts +93 -0
- package/dist-types/commands/UpdateLocationFsxOpenZfsCommand.d.ts +97 -0
- package/dist-types/commands/UpdateLocationFsxWindowsCommand.d.ts +81 -0
- package/dist-types/commands/UpdateLocationHdfsCommand.d.ts +3 -2
- package/dist-types/commands/UpdateLocationNfsCommand.d.ts +2 -3
- package/dist-types/commands/UpdateLocationObjectStorageCommand.d.ts +2 -2
- package/dist-types/commands/UpdateLocationS3Command.d.ts +97 -0
- package/dist-types/commands/UpdateLocationSmbCommand.d.ts +3 -2
- package/dist-types/commands/index.d.ts +6 -0
- package/dist-types/models/models_0.d.ts +326 -26
- package/dist-types/protocols/Aws_json1_1.d.ts +54 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/ts3.4/DataSync.d.ts +102 -0
- package/dist-types/ts3.4/DataSyncClient.d.ts +37 -0
- package/dist-types/ts3.4/commands/UpdateLocationEfsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxLustreCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxOntapCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxOpenZfsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationFsxWindowsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateLocationS3Command.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +65 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -0
- package/package.json +14 -14
|
@@ -211,6 +211,26 @@ import {
|
|
|
211
211
|
UpdateLocationAzureBlobCommandInput,
|
|
212
212
|
UpdateLocationAzureBlobCommandOutput,
|
|
213
213
|
} from "./commands/UpdateLocationAzureBlobCommand";
|
|
214
|
+
import {
|
|
215
|
+
UpdateLocationEfsCommandInput,
|
|
216
|
+
UpdateLocationEfsCommandOutput,
|
|
217
|
+
} from "./commands/UpdateLocationEfsCommand";
|
|
218
|
+
import {
|
|
219
|
+
UpdateLocationFsxLustreCommandInput,
|
|
220
|
+
UpdateLocationFsxLustreCommandOutput,
|
|
221
|
+
} from "./commands/UpdateLocationFsxLustreCommand";
|
|
222
|
+
import {
|
|
223
|
+
UpdateLocationFsxOntapCommandInput,
|
|
224
|
+
UpdateLocationFsxOntapCommandOutput,
|
|
225
|
+
} from "./commands/UpdateLocationFsxOntapCommand";
|
|
226
|
+
import {
|
|
227
|
+
UpdateLocationFsxOpenZfsCommandInput,
|
|
228
|
+
UpdateLocationFsxOpenZfsCommandOutput,
|
|
229
|
+
} from "./commands/UpdateLocationFsxOpenZfsCommand";
|
|
230
|
+
import {
|
|
231
|
+
UpdateLocationFsxWindowsCommandInput,
|
|
232
|
+
UpdateLocationFsxWindowsCommandOutput,
|
|
233
|
+
} from "./commands/UpdateLocationFsxWindowsCommand";
|
|
214
234
|
import {
|
|
215
235
|
UpdateLocationHdfsCommandInput,
|
|
216
236
|
UpdateLocationHdfsCommandOutput,
|
|
@@ -223,6 +243,10 @@ import {
|
|
|
223
243
|
UpdateLocationObjectStorageCommandInput,
|
|
224
244
|
UpdateLocationObjectStorageCommandOutput,
|
|
225
245
|
} from "./commands/UpdateLocationObjectStorageCommand";
|
|
246
|
+
import {
|
|
247
|
+
UpdateLocationS3CommandInput,
|
|
248
|
+
UpdateLocationS3CommandOutput,
|
|
249
|
+
} from "./commands/UpdateLocationS3Command";
|
|
226
250
|
import {
|
|
227
251
|
UpdateLocationSmbCommandInput,
|
|
228
252
|
UpdateLocationSmbCommandOutput,
|
|
@@ -942,6 +966,71 @@ export interface DataSync {
|
|
|
942
966
|
options: __HttpHandlerOptions,
|
|
943
967
|
cb: (err: any, data?: UpdateLocationAzureBlobCommandOutput) => void
|
|
944
968
|
): void;
|
|
969
|
+
updateLocationEfs(
|
|
970
|
+
args: UpdateLocationEfsCommandInput,
|
|
971
|
+
options?: __HttpHandlerOptions
|
|
972
|
+
): Promise<UpdateLocationEfsCommandOutput>;
|
|
973
|
+
updateLocationEfs(
|
|
974
|
+
args: UpdateLocationEfsCommandInput,
|
|
975
|
+
cb: (err: any, data?: UpdateLocationEfsCommandOutput) => void
|
|
976
|
+
): void;
|
|
977
|
+
updateLocationEfs(
|
|
978
|
+
args: UpdateLocationEfsCommandInput,
|
|
979
|
+
options: __HttpHandlerOptions,
|
|
980
|
+
cb: (err: any, data?: UpdateLocationEfsCommandOutput) => void
|
|
981
|
+
): void;
|
|
982
|
+
updateLocationFsxLustre(
|
|
983
|
+
args: UpdateLocationFsxLustreCommandInput,
|
|
984
|
+
options?: __HttpHandlerOptions
|
|
985
|
+
): Promise<UpdateLocationFsxLustreCommandOutput>;
|
|
986
|
+
updateLocationFsxLustre(
|
|
987
|
+
args: UpdateLocationFsxLustreCommandInput,
|
|
988
|
+
cb: (err: any, data?: UpdateLocationFsxLustreCommandOutput) => void
|
|
989
|
+
): void;
|
|
990
|
+
updateLocationFsxLustre(
|
|
991
|
+
args: UpdateLocationFsxLustreCommandInput,
|
|
992
|
+
options: __HttpHandlerOptions,
|
|
993
|
+
cb: (err: any, data?: UpdateLocationFsxLustreCommandOutput) => void
|
|
994
|
+
): void;
|
|
995
|
+
updateLocationFsxOntap(
|
|
996
|
+
args: UpdateLocationFsxOntapCommandInput,
|
|
997
|
+
options?: __HttpHandlerOptions
|
|
998
|
+
): Promise<UpdateLocationFsxOntapCommandOutput>;
|
|
999
|
+
updateLocationFsxOntap(
|
|
1000
|
+
args: UpdateLocationFsxOntapCommandInput,
|
|
1001
|
+
cb: (err: any, data?: UpdateLocationFsxOntapCommandOutput) => void
|
|
1002
|
+
): void;
|
|
1003
|
+
updateLocationFsxOntap(
|
|
1004
|
+
args: UpdateLocationFsxOntapCommandInput,
|
|
1005
|
+
options: __HttpHandlerOptions,
|
|
1006
|
+
cb: (err: any, data?: UpdateLocationFsxOntapCommandOutput) => void
|
|
1007
|
+
): void;
|
|
1008
|
+
updateLocationFsxOpenZfs(
|
|
1009
|
+
args: UpdateLocationFsxOpenZfsCommandInput,
|
|
1010
|
+
options?: __HttpHandlerOptions
|
|
1011
|
+
): Promise<UpdateLocationFsxOpenZfsCommandOutput>;
|
|
1012
|
+
updateLocationFsxOpenZfs(
|
|
1013
|
+
args: UpdateLocationFsxOpenZfsCommandInput,
|
|
1014
|
+
cb: (err: any, data?: UpdateLocationFsxOpenZfsCommandOutput) => void
|
|
1015
|
+
): void;
|
|
1016
|
+
updateLocationFsxOpenZfs(
|
|
1017
|
+
args: UpdateLocationFsxOpenZfsCommandInput,
|
|
1018
|
+
options: __HttpHandlerOptions,
|
|
1019
|
+
cb: (err: any, data?: UpdateLocationFsxOpenZfsCommandOutput) => void
|
|
1020
|
+
): void;
|
|
1021
|
+
updateLocationFsxWindows(
|
|
1022
|
+
args: UpdateLocationFsxWindowsCommandInput,
|
|
1023
|
+
options?: __HttpHandlerOptions
|
|
1024
|
+
): Promise<UpdateLocationFsxWindowsCommandOutput>;
|
|
1025
|
+
updateLocationFsxWindows(
|
|
1026
|
+
args: UpdateLocationFsxWindowsCommandInput,
|
|
1027
|
+
cb: (err: any, data?: UpdateLocationFsxWindowsCommandOutput) => void
|
|
1028
|
+
): void;
|
|
1029
|
+
updateLocationFsxWindows(
|
|
1030
|
+
args: UpdateLocationFsxWindowsCommandInput,
|
|
1031
|
+
options: __HttpHandlerOptions,
|
|
1032
|
+
cb: (err: any, data?: UpdateLocationFsxWindowsCommandOutput) => void
|
|
1033
|
+
): void;
|
|
945
1034
|
updateLocationHdfs(
|
|
946
1035
|
args: UpdateLocationHdfsCommandInput,
|
|
947
1036
|
options?: __HttpHandlerOptions
|
|
@@ -981,6 +1070,19 @@ export interface DataSync {
|
|
|
981
1070
|
options: __HttpHandlerOptions,
|
|
982
1071
|
cb: (err: any, data?: UpdateLocationObjectStorageCommandOutput) => void
|
|
983
1072
|
): void;
|
|
1073
|
+
updateLocationS3(
|
|
1074
|
+
args: UpdateLocationS3CommandInput,
|
|
1075
|
+
options?: __HttpHandlerOptions
|
|
1076
|
+
): Promise<UpdateLocationS3CommandOutput>;
|
|
1077
|
+
updateLocationS3(
|
|
1078
|
+
args: UpdateLocationS3CommandInput,
|
|
1079
|
+
cb: (err: any, data?: UpdateLocationS3CommandOutput) => void
|
|
1080
|
+
): void;
|
|
1081
|
+
updateLocationS3(
|
|
1082
|
+
args: UpdateLocationS3CommandInput,
|
|
1083
|
+
options: __HttpHandlerOptions,
|
|
1084
|
+
cb: (err: any, data?: UpdateLocationS3CommandOutput) => void
|
|
1085
|
+
): void;
|
|
984
1086
|
updateLocationSmb(
|
|
985
1087
|
args: UpdateLocationSmbCommandInput,
|
|
986
1088
|
options?: __HttpHandlerOptions
|
|
@@ -257,6 +257,26 @@ import {
|
|
|
257
257
|
UpdateLocationAzureBlobCommandInput,
|
|
258
258
|
UpdateLocationAzureBlobCommandOutput,
|
|
259
259
|
} from "./commands/UpdateLocationAzureBlobCommand";
|
|
260
|
+
import {
|
|
261
|
+
UpdateLocationEfsCommandInput,
|
|
262
|
+
UpdateLocationEfsCommandOutput,
|
|
263
|
+
} from "./commands/UpdateLocationEfsCommand";
|
|
264
|
+
import {
|
|
265
|
+
UpdateLocationFsxLustreCommandInput,
|
|
266
|
+
UpdateLocationFsxLustreCommandOutput,
|
|
267
|
+
} from "./commands/UpdateLocationFsxLustreCommand";
|
|
268
|
+
import {
|
|
269
|
+
UpdateLocationFsxOntapCommandInput,
|
|
270
|
+
UpdateLocationFsxOntapCommandOutput,
|
|
271
|
+
} from "./commands/UpdateLocationFsxOntapCommand";
|
|
272
|
+
import {
|
|
273
|
+
UpdateLocationFsxOpenZfsCommandInput,
|
|
274
|
+
UpdateLocationFsxOpenZfsCommandOutput,
|
|
275
|
+
} from "./commands/UpdateLocationFsxOpenZfsCommand";
|
|
276
|
+
import {
|
|
277
|
+
UpdateLocationFsxWindowsCommandInput,
|
|
278
|
+
UpdateLocationFsxWindowsCommandOutput,
|
|
279
|
+
} from "./commands/UpdateLocationFsxWindowsCommand";
|
|
260
280
|
import {
|
|
261
281
|
UpdateLocationHdfsCommandInput,
|
|
262
282
|
UpdateLocationHdfsCommandOutput,
|
|
@@ -269,6 +289,10 @@ import {
|
|
|
269
289
|
UpdateLocationObjectStorageCommandInput,
|
|
270
290
|
UpdateLocationObjectStorageCommandOutput,
|
|
271
291
|
} from "./commands/UpdateLocationObjectStorageCommand";
|
|
292
|
+
import {
|
|
293
|
+
UpdateLocationS3CommandInput,
|
|
294
|
+
UpdateLocationS3CommandOutput,
|
|
295
|
+
} from "./commands/UpdateLocationS3Command";
|
|
272
296
|
import {
|
|
273
297
|
UpdateLocationSmbCommandInput,
|
|
274
298
|
UpdateLocationSmbCommandOutput,
|
|
@@ -346,9 +370,15 @@ export type ServiceInputTypes =
|
|
|
346
370
|
| UpdateAgentCommandInput
|
|
347
371
|
| UpdateDiscoveryJobCommandInput
|
|
348
372
|
| UpdateLocationAzureBlobCommandInput
|
|
373
|
+
| UpdateLocationEfsCommandInput
|
|
374
|
+
| UpdateLocationFsxLustreCommandInput
|
|
375
|
+
| UpdateLocationFsxOntapCommandInput
|
|
376
|
+
| UpdateLocationFsxOpenZfsCommandInput
|
|
377
|
+
| UpdateLocationFsxWindowsCommandInput
|
|
349
378
|
| UpdateLocationHdfsCommandInput
|
|
350
379
|
| UpdateLocationNfsCommandInput
|
|
351
380
|
| UpdateLocationObjectStorageCommandInput
|
|
381
|
+
| UpdateLocationS3CommandInput
|
|
352
382
|
| UpdateLocationSmbCommandInput
|
|
353
383
|
| UpdateStorageSystemCommandInput
|
|
354
384
|
| UpdateTaskCommandInput
|
|
@@ -407,9 +437,15 @@ export type ServiceOutputTypes =
|
|
|
407
437
|
| UpdateAgentCommandOutput
|
|
408
438
|
| UpdateDiscoveryJobCommandOutput
|
|
409
439
|
| UpdateLocationAzureBlobCommandOutput
|
|
440
|
+
| UpdateLocationEfsCommandOutput
|
|
441
|
+
| UpdateLocationFsxLustreCommandOutput
|
|
442
|
+
| UpdateLocationFsxOntapCommandOutput
|
|
443
|
+
| UpdateLocationFsxOpenZfsCommandOutput
|
|
444
|
+
| UpdateLocationFsxWindowsCommandOutput
|
|
410
445
|
| UpdateLocationHdfsCommandOutput
|
|
411
446
|
| UpdateLocationNfsCommandOutput
|
|
412
447
|
| UpdateLocationObjectStorageCommandOutput
|
|
448
|
+
| UpdateLocationS3CommandOutput
|
|
413
449
|
| UpdateLocationSmbCommandOutput
|
|
414
450
|
| UpdateStorageSystemCommandOutput
|
|
415
451
|
| UpdateTaskCommandOutput
|
|
@@ -431,6 +467,7 @@ export interface ClientDefaults
|
|
|
431
467
|
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
432
468
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
433
469
|
region?: string | __Provider<string>;
|
|
470
|
+
profile?: string;
|
|
434
471
|
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
435
472
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
436
473
|
maxAttempts?: number | __Provider<number>;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLocationEfsRequest,
|
|
10
|
+
UpdateLocationEfsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLocationEfsCommandInput
|
|
15
|
+
extends UpdateLocationEfsRequest {}
|
|
16
|
+
export interface UpdateLocationEfsCommandOutput
|
|
17
|
+
extends UpdateLocationEfsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLocationEfsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLocationEfsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLocationEfsCommandInput,
|
|
24
|
+
UpdateLocationEfsCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateLocationEfsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLocationEfsCommandInput,
|
|
33
|
+
UpdateLocationEfsCommandOutput,
|
|
34
|
+
DataSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLocationEfsCommand extends UpdateLocationEfsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLocationEfsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLocationEfsCommandInput;
|
|
48
|
+
output: UpdateLocationEfsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLocationFsxLustreRequest,
|
|
10
|
+
UpdateLocationFsxLustreResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLocationFsxLustreCommandInput
|
|
15
|
+
extends UpdateLocationFsxLustreRequest {}
|
|
16
|
+
export interface UpdateLocationFsxLustreCommandOutput
|
|
17
|
+
extends UpdateLocationFsxLustreResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLocationFsxLustreCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLocationFsxLustreCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLocationFsxLustreCommandInput,
|
|
24
|
+
UpdateLocationFsxLustreCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateLocationFsxLustreCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLocationFsxLustreCommandInput,
|
|
33
|
+
UpdateLocationFsxLustreCommandOutput,
|
|
34
|
+
DataSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLocationFsxLustreCommand extends UpdateLocationFsxLustreCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLocationFsxLustreRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLocationFsxLustreCommandInput;
|
|
48
|
+
output: UpdateLocationFsxLustreCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLocationFsxOntapRequest,
|
|
10
|
+
UpdateLocationFsxOntapResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLocationFsxOntapCommandInput
|
|
15
|
+
extends UpdateLocationFsxOntapRequest {}
|
|
16
|
+
export interface UpdateLocationFsxOntapCommandOutput
|
|
17
|
+
extends UpdateLocationFsxOntapResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLocationFsxOntapCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLocationFsxOntapCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLocationFsxOntapCommandInput,
|
|
24
|
+
UpdateLocationFsxOntapCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateLocationFsxOntapCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLocationFsxOntapCommandInput,
|
|
33
|
+
UpdateLocationFsxOntapCommandOutput,
|
|
34
|
+
DataSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLocationFsxOntapCommand extends UpdateLocationFsxOntapCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLocationFsxOntapRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLocationFsxOntapCommandInput;
|
|
48
|
+
output: UpdateLocationFsxOntapCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLocationFsxOpenZfsRequest,
|
|
10
|
+
UpdateLocationFsxOpenZfsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLocationFsxOpenZfsCommandInput
|
|
15
|
+
extends UpdateLocationFsxOpenZfsRequest {}
|
|
16
|
+
export interface UpdateLocationFsxOpenZfsCommandOutput
|
|
17
|
+
extends UpdateLocationFsxOpenZfsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLocationFsxOpenZfsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLocationFsxOpenZfsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLocationFsxOpenZfsCommandInput,
|
|
24
|
+
UpdateLocationFsxOpenZfsCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateLocationFsxOpenZfsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLocationFsxOpenZfsCommandInput,
|
|
33
|
+
UpdateLocationFsxOpenZfsCommandOutput,
|
|
34
|
+
DataSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLocationFsxOpenZfsCommand extends UpdateLocationFsxOpenZfsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLocationFsxOpenZfsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLocationFsxOpenZfsCommandInput;
|
|
48
|
+
output: UpdateLocationFsxOpenZfsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLocationFsxWindowsRequest,
|
|
10
|
+
UpdateLocationFsxWindowsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLocationFsxWindowsCommandInput
|
|
15
|
+
extends UpdateLocationFsxWindowsRequest {}
|
|
16
|
+
export interface UpdateLocationFsxWindowsCommandOutput
|
|
17
|
+
extends UpdateLocationFsxWindowsResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const UpdateLocationFsxWindowsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: UpdateLocationFsxWindowsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
UpdateLocationFsxWindowsCommandInput,
|
|
24
|
+
UpdateLocationFsxWindowsCommandOutput,
|
|
25
|
+
DataSyncClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: UpdateLocationFsxWindowsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
UpdateLocationFsxWindowsCommandInput,
|
|
33
|
+
UpdateLocationFsxWindowsCommandOutput,
|
|
34
|
+
DataSyncClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class UpdateLocationFsxWindowsCommand extends UpdateLocationFsxWindowsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: UpdateLocationFsxWindowsRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: UpdateLocationFsxWindowsCommandInput;
|
|
48
|
+
output: UpdateLocationFsxWindowsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DataSyncClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../DataSyncClient";
|
|
8
|
+
import {
|
|
9
|
+
UpdateLocationS3Request,
|
|
10
|
+
UpdateLocationS3Response,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface UpdateLocationS3CommandInput extends UpdateLocationS3Request {}
|
|
15
|
+
export interface UpdateLocationS3CommandOutput
|
|
16
|
+
extends UpdateLocationS3Response,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const UpdateLocationS3Command_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: UpdateLocationS3CommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
UpdateLocationS3CommandInput,
|
|
23
|
+
UpdateLocationS3CommandOutput,
|
|
24
|
+
DataSyncClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: UpdateLocationS3CommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
UpdateLocationS3CommandInput,
|
|
32
|
+
UpdateLocationS3CommandOutput,
|
|
33
|
+
DataSyncClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class UpdateLocationS3Command extends UpdateLocationS3Command_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: UpdateLocationS3Request;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: UpdateLocationS3CommandInput;
|
|
47
|
+
output: UpdateLocationS3CommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -51,9 +51,15 @@ export * from "./UntagResourceCommand";
|
|
|
51
51
|
export * from "./UpdateAgentCommand";
|
|
52
52
|
export * from "./UpdateDiscoveryJobCommand";
|
|
53
53
|
export * from "./UpdateLocationAzureBlobCommand";
|
|
54
|
+
export * from "./UpdateLocationEfsCommand";
|
|
55
|
+
export * from "./UpdateLocationFsxLustreCommand";
|
|
56
|
+
export * from "./UpdateLocationFsxOntapCommand";
|
|
57
|
+
export * from "./UpdateLocationFsxOpenZfsCommand";
|
|
58
|
+
export * from "./UpdateLocationFsxWindowsCommand";
|
|
54
59
|
export * from "./UpdateLocationHdfsCommand";
|
|
55
60
|
export * from "./UpdateLocationNfsCommand";
|
|
56
61
|
export * from "./UpdateLocationObjectStorageCommand";
|
|
62
|
+
export * from "./UpdateLocationS3Command";
|
|
57
63
|
export * from "./UpdateLocationSmbCommand";
|
|
58
64
|
export * from "./UpdateStorageSystemCommand";
|
|
59
65
|
export * from "./UpdateTaskCommand";
|
|
@@ -1189,6 +1189,49 @@ export interface UpdateLocationAzureBlobRequest {
|
|
|
1189
1189
|
AgentArns?: string[] | undefined;
|
|
1190
1190
|
}
|
|
1191
1191
|
export interface UpdateLocationAzureBlobResponse {}
|
|
1192
|
+
export interface UpdateLocationEfsRequest {
|
|
1193
|
+
LocationArn: string | undefined;
|
|
1194
|
+
Subdirectory?: string | undefined;
|
|
1195
|
+
AccessPointArn?: string | undefined;
|
|
1196
|
+
FileSystemAccessRoleArn?: string | undefined;
|
|
1197
|
+
InTransitEncryption?: EfsInTransitEncryption | undefined;
|
|
1198
|
+
}
|
|
1199
|
+
export interface UpdateLocationEfsResponse {}
|
|
1200
|
+
export interface UpdateLocationFsxLustreRequest {
|
|
1201
|
+
LocationArn: string | undefined;
|
|
1202
|
+
Subdirectory?: string | undefined;
|
|
1203
|
+
}
|
|
1204
|
+
export interface UpdateLocationFsxLustreResponse {}
|
|
1205
|
+
export interface FsxUpdateProtocolSmb {
|
|
1206
|
+
Domain?: string | undefined;
|
|
1207
|
+
MountOptions?: SmbMountOptions | undefined;
|
|
1208
|
+
Password?: string | undefined;
|
|
1209
|
+
User?: string | undefined;
|
|
1210
|
+
}
|
|
1211
|
+
export interface FsxUpdateProtocol {
|
|
1212
|
+
NFS?: FsxProtocolNfs | undefined;
|
|
1213
|
+
SMB?: FsxUpdateProtocolSmb | undefined;
|
|
1214
|
+
}
|
|
1215
|
+
export interface UpdateLocationFsxOntapRequest {
|
|
1216
|
+
LocationArn: string | undefined;
|
|
1217
|
+
Protocol?: FsxUpdateProtocol | undefined;
|
|
1218
|
+
Subdirectory?: string | undefined;
|
|
1219
|
+
}
|
|
1220
|
+
export interface UpdateLocationFsxOntapResponse {}
|
|
1221
|
+
export interface UpdateLocationFsxOpenZfsRequest {
|
|
1222
|
+
LocationArn: string | undefined;
|
|
1223
|
+
Protocol?: FsxProtocol | undefined;
|
|
1224
|
+
Subdirectory?: string | undefined;
|
|
1225
|
+
}
|
|
1226
|
+
export interface UpdateLocationFsxOpenZfsResponse {}
|
|
1227
|
+
export interface UpdateLocationFsxWindowsRequest {
|
|
1228
|
+
LocationArn: string | undefined;
|
|
1229
|
+
Subdirectory?: string | undefined;
|
|
1230
|
+
Domain?: string | undefined;
|
|
1231
|
+
User?: string | undefined;
|
|
1232
|
+
Password?: string | undefined;
|
|
1233
|
+
}
|
|
1234
|
+
export interface UpdateLocationFsxWindowsResponse {}
|
|
1192
1235
|
export interface UpdateLocationHdfsRequest {
|
|
1193
1236
|
LocationArn: string | undefined;
|
|
1194
1237
|
Subdirectory?: string | undefined;
|
|
@@ -1223,6 +1266,13 @@ export interface UpdateLocationObjectStorageRequest {
|
|
|
1223
1266
|
ServerCertificate?: Uint8Array | undefined;
|
|
1224
1267
|
}
|
|
1225
1268
|
export interface UpdateLocationObjectStorageResponse {}
|
|
1269
|
+
export interface UpdateLocationS3Request {
|
|
1270
|
+
LocationArn: string | undefined;
|
|
1271
|
+
Subdirectory?: string | undefined;
|
|
1272
|
+
S3StorageClass?: S3StorageClass | undefined;
|
|
1273
|
+
S3Config?: S3Config | undefined;
|
|
1274
|
+
}
|
|
1275
|
+
export interface UpdateLocationS3Response {}
|
|
1226
1276
|
export interface UpdateLocationSmbRequest {
|
|
1227
1277
|
LocationArn: string | undefined;
|
|
1228
1278
|
Subdirectory?: string | undefined;
|
|
@@ -1297,6 +1347,21 @@ export declare const DescribeLocationFsxOpenZfsResponseFilterSensitiveLog: (
|
|
|
1297
1347
|
export declare const UpdateLocationAzureBlobRequestFilterSensitiveLog: (
|
|
1298
1348
|
obj: UpdateLocationAzureBlobRequest
|
|
1299
1349
|
) => any;
|
|
1350
|
+
export declare const FsxUpdateProtocolSmbFilterSensitiveLog: (
|
|
1351
|
+
obj: FsxUpdateProtocolSmb
|
|
1352
|
+
) => any;
|
|
1353
|
+
export declare const FsxUpdateProtocolFilterSensitiveLog: (
|
|
1354
|
+
obj: FsxUpdateProtocol
|
|
1355
|
+
) => any;
|
|
1356
|
+
export declare const UpdateLocationFsxOntapRequestFilterSensitiveLog: (
|
|
1357
|
+
obj: UpdateLocationFsxOntapRequest
|
|
1358
|
+
) => any;
|
|
1359
|
+
export declare const UpdateLocationFsxOpenZfsRequestFilterSensitiveLog: (
|
|
1360
|
+
obj: UpdateLocationFsxOpenZfsRequest
|
|
1361
|
+
) => any;
|
|
1362
|
+
export declare const UpdateLocationFsxWindowsRequestFilterSensitiveLog: (
|
|
1363
|
+
obj: UpdateLocationFsxWindowsRequest
|
|
1364
|
+
) => any;
|
|
1300
1365
|
export declare const UpdateLocationObjectStorageRequestFilterSensitiveLog: (
|
|
1301
1366
|
obj: UpdateLocationObjectStorageRequest
|
|
1302
1367
|
) => any;
|