@@ -235,6 +235,31 @@ import {
235
235
UpdateLocationAzureBlobCommandInput ,
236
236
UpdateLocationAzureBlobCommandOutput ,
237
237
} from "./commands/UpdateLocationAzureBlobCommand" ;
238
+ import {
239
+ UpdateLocationEfsCommand ,
240
+ UpdateLocationEfsCommandInput ,
241
+ UpdateLocationEfsCommandOutput ,
242
+ } from "./commands/UpdateLocationEfsCommand" ;
243
+ import {
244
+ UpdateLocationFsxLustreCommand ,
245
+ UpdateLocationFsxLustreCommandInput ,
246
+ UpdateLocationFsxLustreCommandOutput ,
247
+ } from "./commands/UpdateLocationFsxLustreCommand" ;
248
+ import {
249
+ UpdateLocationFsxOntapCommand ,
250
+ UpdateLocationFsxOntapCommandInput ,
251
+ UpdateLocationFsxOntapCommandOutput ,
252
+ } from "./commands/UpdateLocationFsxOntapCommand" ;
253
+ import {
254
+ UpdateLocationFsxOpenZfsCommand ,
255
+ UpdateLocationFsxOpenZfsCommandInput ,
256
+ UpdateLocationFsxOpenZfsCommandOutput ,
257
+ } from "./commands/UpdateLocationFsxOpenZfsCommand" ;
258
+ import {
259
+ UpdateLocationFsxWindowsCommand ,
260
+ UpdateLocationFsxWindowsCommandInput ,
261
+ UpdateLocationFsxWindowsCommandOutput ,
262
+ } from "./commands/UpdateLocationFsxWindowsCommand" ;
238
263
import {
239
264
UpdateLocationHdfsCommand ,
240
265
UpdateLocationHdfsCommandInput ,
@@ -250,6 +275,11 @@ import {
250
275
UpdateLocationObjectStorageCommandInput ,
251
276
UpdateLocationObjectStorageCommandOutput ,
252
277
} from "./commands/UpdateLocationObjectStorageCommand" ;
278
+ import {
279
+ UpdateLocationS3Command ,
280
+ UpdateLocationS3CommandInput ,
281
+ UpdateLocationS3CommandOutput ,
282
+ } from "./commands/UpdateLocationS3Command" ;
253
283
import {
254
284
UpdateLocationSmbCommand ,
255
285
UpdateLocationSmbCommandInput ,
@@ -322,9 +352,15 @@ const commands = {
322
352
UpdateAgentCommand,
323
353
UpdateDiscoveryJobCommand,
324
354
UpdateLocationAzureBlobCommand,
355
+ UpdateLocationEfsCommand,
356
+ UpdateLocationFsxLustreCommand,
357
+ UpdateLocationFsxOntapCommand,
358
+ UpdateLocationFsxOpenZfsCommand,
359
+ UpdateLocationFsxWindowsCommand,
325
360
UpdateLocationHdfsCommand,
326
361
UpdateLocationNfsCommand,
327
362
UpdateLocationObjectStorageCommand,
363
+ UpdateLocationS3Command,
328
364
UpdateLocationSmbCommand,
329
365
UpdateStorageSystemCommand,
330
366
UpdateTaskCommand,
@@ -1164,6 +1200,91 @@ export interface DataSync {
1164
1200
cb : ( err : any , data ?: UpdateLocationAzureBlobCommandOutput ) => void
1165
1201
) : void ;
1166
1202
1203
+ /**
1204
+ * @see {@link UpdateLocationEfsCommand }
1205
+ */
1206
+ updateLocationEfs (
1207
+ args : UpdateLocationEfsCommandInput ,
1208
+ options ?: __HttpHandlerOptions
1209
+ ) : Promise < UpdateLocationEfsCommandOutput > ;
1210
+ updateLocationEfs (
1211
+ args : UpdateLocationEfsCommandInput ,
1212
+ cb : ( err : any , data ?: UpdateLocationEfsCommandOutput ) => void
1213
+ ) : void ;
1214
+ updateLocationEfs (
1215
+ args : UpdateLocationEfsCommandInput ,
1216
+ options : __HttpHandlerOptions ,
1217
+ cb : ( err : any , data ?: UpdateLocationEfsCommandOutput ) => void
1218
+ ) : void ;
1219
+
1220
+ /**
1221
+ * @see {@link UpdateLocationFsxLustreCommand }
1222
+ */
1223
+ updateLocationFsxLustre (
1224
+ args : UpdateLocationFsxLustreCommandInput ,
1225
+ options ?: __HttpHandlerOptions
1226
+ ) : Promise < UpdateLocationFsxLustreCommandOutput > ;
1227
+ updateLocationFsxLustre (
1228
+ args : UpdateLocationFsxLustreCommandInput ,
1229
+ cb : ( err : any , data ?: UpdateLocationFsxLustreCommandOutput ) => void
1230
+ ) : void ;
1231
+ updateLocationFsxLustre (
1232
+ args : UpdateLocationFsxLustreCommandInput ,
1233
+ options : __HttpHandlerOptions ,
1234
+ cb : ( err : any , data ?: UpdateLocationFsxLustreCommandOutput ) => void
1235
+ ) : void ;
1236
+
1237
+ /**
1238
+ * @see {@link UpdateLocationFsxOntapCommand }
1239
+ */
1240
+ updateLocationFsxOntap (
1241
+ args : UpdateLocationFsxOntapCommandInput ,
1242
+ options ?: __HttpHandlerOptions
1243
+ ) : Promise < UpdateLocationFsxOntapCommandOutput > ;
1244
+ updateLocationFsxOntap (
1245
+ args : UpdateLocationFsxOntapCommandInput ,
1246
+ cb : ( err : any , data ?: UpdateLocationFsxOntapCommandOutput ) => void
1247
+ ) : void ;
1248
+ updateLocationFsxOntap (
1249
+ args : UpdateLocationFsxOntapCommandInput ,
1250
+ options : __HttpHandlerOptions ,
1251
+ cb : ( err : any , data ?: UpdateLocationFsxOntapCommandOutput ) => void
1252
+ ) : void ;
1253
+
1254
+ /**
1255
+ * @see {@link UpdateLocationFsxOpenZfsCommand }
1256
+ */
1257
+ updateLocationFsxOpenZfs (
1258
+ args : UpdateLocationFsxOpenZfsCommandInput ,
1259
+ options ?: __HttpHandlerOptions
1260
+ ) : Promise < UpdateLocationFsxOpenZfsCommandOutput > ;
1261
+ updateLocationFsxOpenZfs (
1262
+ args : UpdateLocationFsxOpenZfsCommandInput ,
1263
+ cb : ( err : any , data ?: UpdateLocationFsxOpenZfsCommandOutput ) => void
1264
+ ) : void ;
1265
+ updateLocationFsxOpenZfs (
1266
+ args : UpdateLocationFsxOpenZfsCommandInput ,
1267
+ options : __HttpHandlerOptions ,
1268
+ cb : ( err : any , data ?: UpdateLocationFsxOpenZfsCommandOutput ) => void
1269
+ ) : void ;
1270
+
1271
+ /**
1272
+ * @see {@link UpdateLocationFsxWindowsCommand }
1273
+ */
1274
+ updateLocationFsxWindows (
1275
+ args : UpdateLocationFsxWindowsCommandInput ,
1276
+ options ?: __HttpHandlerOptions
1277
+ ) : Promise < UpdateLocationFsxWindowsCommandOutput > ;
1278
+ updateLocationFsxWindows (
1279
+ args : UpdateLocationFsxWindowsCommandInput ,
1280
+ cb : ( err : any , data ?: UpdateLocationFsxWindowsCommandOutput ) => void
1281
+ ) : void ;
1282
+ updateLocationFsxWindows (
1283
+ args : UpdateLocationFsxWindowsCommandInput ,
1284
+ options : __HttpHandlerOptions ,
1285
+ cb : ( err : any , data ?: UpdateLocationFsxWindowsCommandOutput ) => void
1286
+ ) : void ;
1287
+
1167
1288
/**
1168
1289
* @see {@link UpdateLocationHdfsCommand }
1169
1290
*/
@@ -1215,6 +1336,23 @@ export interface DataSync {
1215
1336
cb : ( err : any , data ?: UpdateLocationObjectStorageCommandOutput ) => void
1216
1337
) : void ;
1217
1338
1339
+ /**
1340
+ * @see {@link UpdateLocationS3Command }
1341
+ */
1342
+ updateLocationS3 (
1343
+ args : UpdateLocationS3CommandInput ,
1344
+ options ?: __HttpHandlerOptions
1345
+ ) : Promise < UpdateLocationS3CommandOutput > ;
1346
+ updateLocationS3 (
1347
+ args : UpdateLocationS3CommandInput ,
1348
+ cb : ( err : any , data ?: UpdateLocationS3CommandOutput ) => void
1349
+ ) : void ;
1350
+ updateLocationS3 (
1351
+ args : UpdateLocationS3CommandInput ,
1352
+ options : __HttpHandlerOptions ,
1353
+ cb : ( err : any , data ?: UpdateLocationS3CommandOutput ) => void
1354
+ ) : void ;
1355
+
1218
1356
/**
1219
1357
* @see {@link UpdateLocationSmbCommand }
1220
1358
*/
0 commit comments