@aws-sdk/client-datasync 3.1074.0 → 3.1076.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-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultDataSyncHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { CancelTaskExecution$, CreateAgent$, CreateLocationAzureBlob$, CreateLocationEfs$, CreateLocationFsxLustre$, CreateLocationFsxOntap$, CreateLocationFsxOpenZfs$, CreateLocationFsxWindows$, CreateLocationHdfs$, CreateLocationNfs$, CreateLocationObjectStorage$, CreateLocationS3$, CreateLocationSmb$, CreateTask$, DeleteAgent$, DeleteLocation$, DeleteTask$, DescribeAgent$, DescribeLocationAzureBlob$, DescribeLocationEfs$, DescribeLocationFsxLustre$, DescribeLocationFsxOntap$, DescribeLocationFsxOpenZfs$, DescribeLocationFsxWindows$, DescribeLocationHdfs$, DescribeLocationNfs$, DescribeLocationObjectStorage$, DescribeLocationS3$, DescribeLocationSmb$, DescribeTask$, DescribeTaskExecution$, ListAgents$, ListLocations$, ListTagsForResource$, ListTaskExecutions$, ListTasks$, StartTaskExecution$, TagResource$, UntagResource$, UpdateAgent$, UpdateLocationAzureBlob$, UpdateLocationEfs$, UpdateLocationFsxLustre$, UpdateLocationFsxOntap$, UpdateLocationFsxOpenZfs$, UpdateLocationFsxWindows$, UpdateLocationHdfs$, UpdateLocationNfs$, UpdateLocationObjectStorage$, UpdateLocationS3$, UpdateLocationSmb$, UpdateTask$, UpdateTaskExecution$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { DataSyncServiceException } = require("./models/DataSyncServiceException");
18
- exports.DataSyncServiceException = DataSyncServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultDataSyncHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "datasync",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultDataSyncHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,1523 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://datasync-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://datasync-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://datasync.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://datasync.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class DataSyncServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, DataSyncServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class InternalException extends DataSyncServiceException {
140
+ name = "InternalException";
141
+ $fault = "server";
142
+ errorCode;
143
+ constructor(opts) {
144
+ super({
145
+ name: "InternalException",
146
+ $fault: "server",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, InternalException.prototype);
150
+ this.errorCode = opts.errorCode;
151
+ }
152
+ }
153
+ class InvalidRequestException extends DataSyncServiceException {
154
+ name = "InvalidRequestException";
155
+ $fault = "client";
156
+ errorCode;
157
+ datasyncErrorCode;
158
+ constructor(opts) {
159
+ super({
160
+ name: "InvalidRequestException",
161
+ $fault: "client",
162
+ ...opts,
163
+ });
164
+ Object.setPrototypeOf(this, InvalidRequestException.prototype);
165
+ this.errorCode = opts.errorCode;
166
+ this.datasyncErrorCode = opts.datasyncErrorCode;
167
+ }
168
+ }
169
+
170
+ const _A = "Agents";
171
+ const _AA = "AgentArn";
172
+ const _AAg = "AgentArns";
173
+ const _ABSC = "AzureBlobSasConfiguration";
174
+ const _ABST = "AzureBlobSasToken";
175
+ const _ADFD = "AtDestinationForDelete";
176
+ const _AK = "ActivationKey";
177
+ const _AKc = "AccessKey";
178
+ const _AL = "AgentList";
179
+ const _ALE = "AgentListEntry";
180
+ const _AN = "AgentName";
181
+ const _APA = "AccessPointArn";
182
+ const _AS = "AtSource";
183
+ const _AT = "AuthenticationType";
184
+ const _ATc = "AccessTier";
185
+ const _Ac = "Action";
186
+ const _At = "Atime";
187
+ const _BARA = "BucketAccessRoleArn";
188
+ const _BC = "BytesCompressed";
189
+ const _BN = "BucketName";
190
+ const _BPS = "BytesPerSecond";
191
+ const _BS = "BlockSize";
192
+ const _BT = "BlobType";
193
+ const _BTy = "BytesTransferred";
194
+ const _BW = "BytesWritten";
195
+ const _CA = "CreateAgent";
196
+ const _CAR = "CreateAgentRequest";
197
+ const _CARr = "CreateAgentResponse";
198
+ const _CLAB = "CreateLocationAzureBlob";
199
+ const _CLABR = "CreateLocationAzureBlobRequest";
200
+ const _CLABRr = "CreateLocationAzureBlobResponse";
201
+ const _CLE = "CreateLocationEfs";
202
+ const _CLER = "CreateLocationEfsRequest";
203
+ const _CLERr = "CreateLocationEfsResponse";
204
+ const _CLFL = "CreateLocationFsxLustre";
205
+ const _CLFLR = "CreateLocationFsxLustreRequest";
206
+ const _CLFLRr = "CreateLocationFsxLustreResponse";
207
+ const _CLFO = "CreateLocationFsxOntap";
208
+ const _CLFOR = "CreateLocationFsxOntapRequest";
209
+ const _CLFORr = "CreateLocationFsxOntapResponse";
210
+ const _CLFOZ = "CreateLocationFsxOpenZfs";
211
+ const _CLFOZR = "CreateLocationFsxOpenZfsRequest";
212
+ const _CLFOZRr = "CreateLocationFsxOpenZfsResponse";
213
+ const _CLFW = "CreateLocationFsxWindows";
214
+ const _CLFWR = "CreateLocationFsxWindowsRequest";
215
+ const _CLFWRr = "CreateLocationFsxWindowsResponse";
216
+ const _CLH = "CreateLocationHdfs";
217
+ const _CLHR = "CreateLocationHdfsRequest";
218
+ const _CLHRr = "CreateLocationHdfsResponse";
219
+ const _CLN = "CreateLocationNfs";
220
+ const _CLNR = "CreateLocationNfsRequest";
221
+ const _CLNRr = "CreateLocationNfsResponse";
222
+ const _CLOS = "CreateLocationObjectStorage";
223
+ const _CLOSR = "CreateLocationObjectStorageRequest";
224
+ const _CLOSRr = "CreateLocationObjectStorageResponse";
225
+ const _CLS = "CreateLocationS3";
226
+ const _CLSR = "CreateLocationS3Request";
227
+ const _CLSRr = "CreateLocationS3Response";
228
+ const _CLSRre = "CreateLocationSmbRequest";
229
+ const _CLSRrea = "CreateLocationSmbResponse";
230
+ const _CLSr = "CreateLocationSmb";
231
+ const _CSC = "CmkSecretConfig";
232
+ const _CSCu = "CustomSecretConfig";
233
+ const _CT = "CreationTime";
234
+ const _CTE = "CancelTaskExecution";
235
+ const _CTEA = "CurrentTaskExecutionArn";
236
+ const _CTER = "CancelTaskExecutionRequest";
237
+ const _CTERa = "CancelTaskExecutionResponse";
238
+ const _CTR = "CreateTaskRequest";
239
+ const _CTRr = "CreateTaskResponse";
240
+ const _CTr = "CreateTask";
241
+ const _CU = "ContainerUrl";
242
+ const _CWLGA = "CloudWatchLogGroupArn";
243
+ const _D = "Domain";
244
+ const _DA = "DeleteAgent";
245
+ const _DAR = "DeleteAgentRequest";
246
+ const _DARe = "DeleteAgentResponse";
247
+ const _DARes = "DescribeAgentRequest";
248
+ const _DAResc = "DescribeAgentResponse";
249
+ const _DAe = "DescribeAgent";
250
+ const _DB = "DisabledBy";
251
+ const _DIA = "DnsIpAddresses";
252
+ const _DL = "DeleteLocation";
253
+ const _DLA = "DestinationLocationArn";
254
+ const _DLAB = "DescribeLocationAzureBlob";
255
+ const _DLABR = "DescribeLocationAzureBlobRequest";
256
+ const _DLABRe = "DescribeLocationAzureBlobResponse";
257
+ const _DLE = "DescribeLocationEfs";
258
+ const _DLER = "DescribeLocationEfsRequest";
259
+ const _DLERe = "DescribeLocationEfsResponse";
260
+ const _DLFL = "DescribeLocationFsxLustre";
261
+ const _DLFLR = "DescribeLocationFsxLustreRequest";
262
+ const _DLFLRe = "DescribeLocationFsxLustreResponse";
263
+ const _DLFO = "DescribeLocationFsxOntap";
264
+ const _DLFOR = "DescribeLocationFsxOntapRequest";
265
+ const _DLFORe = "DescribeLocationFsxOntapResponse";
266
+ const _DLFOZ = "DescribeLocationFsxOpenZfs";
267
+ const _DLFOZR = "DescribeLocationFsxOpenZfsRequest";
268
+ const _DLFOZRe = "DescribeLocationFsxOpenZfsResponse";
269
+ const _DLFW = "DescribeLocationFsxWindows";
270
+ const _DLFWR = "DescribeLocationFsxWindowsRequest";
271
+ const _DLFWRe = "DescribeLocationFsxWindowsResponse";
272
+ const _DLH = "DescribeLocationHdfs";
273
+ const _DLHR = "DescribeLocationHdfsRequest";
274
+ const _DLHRe = "DescribeLocationHdfsResponse";
275
+ const _DLN = "DescribeLocationNfs";
276
+ const _DLNR = "DescribeLocationNfsRequest";
277
+ const _DLNRe = "DescribeLocationNfsResponse";
278
+ const _DLOS = "DescribeLocationObjectStorage";
279
+ const _DLOSR = "DescribeLocationObjectStorageRequest";
280
+ const _DLOSRe = "DescribeLocationObjectStorageResponse";
281
+ const _DLR = "DeleteLocationRequest";
282
+ const _DLRe = "DeleteLocationResponse";
283
+ const _DLS = "DescribeLocationS3";
284
+ const _DLSR = "DescribeLocationS3Request";
285
+ const _DLSRe = "DescribeLocationS3Response";
286
+ const _DLSRes = "DescribeLocationSmbRequest";
287
+ const _DLSResc = "DescribeLocationSmbResponse";
288
+ const _DLSe = "DescribeLocationSmb";
289
+ const _DNIA = "DestinationNetworkInterfaceArns";
290
+ const _DR = "DisabledReason";
291
+ const _DT = "DeleteTask";
292
+ const _DTE = "DescribeTaskExecution";
293
+ const _DTER = "DescribeTaskExecutionRequest";
294
+ const _DTERe = "DescribeTaskExecutionResponse";
295
+ const _DTP = "DataTransferProtection";
296
+ const _DTR = "DeleteTaskRequest";
297
+ const _DTRe = "DeleteTaskResponse";
298
+ const _DTRes = "DescribeTaskRequest";
299
+ const _DTResc = "DescribeTaskResponse";
300
+ const _DTe = "DescribeTask";
301
+ const _De = "Deleted";
302
+ const _Del = "Delete";
303
+ const _Des = "Destination";
304
+ const _E = "Excludes";
305
+ const _EBTT = "EstimatedBytesToTransfer";
306
+ const _EC = "Ec2Config";
307
+ const _ECr = "ErrorCode";
308
+ const _ED = "ErrorDetail";
309
+ const _EFA = "EfsFilesystemArn";
310
+ const _EFTD = "EstimatedFilesToDelete";
311
+ const _EFTDs = "EstimatedFoldersToDelete";
312
+ const _EFTT = "EstimatedFilesToTransfer";
313
+ const _EFTTs = "EstimatedFoldersToTransfer";
314
+ const _ET = "EndpointType";
315
+ const _ETn = "EndTime";
316
+ const _F = "Filters";
317
+ const _FD = "FilesDeleted";
318
+ const _FDo = "FoldersDeleted";
319
+ const _FF = "FilesFailed";
320
+ const _FFA = "FsxFilesystemArn";
321
+ const _FFo = "FoldersFailed";
322
+ const _FL = "FilesListed";
323
+ const _FLi = "FilterList";
324
+ const _FLo = "FoldersListed";
325
+ const _FP = "FilesPrepared";
326
+ const _FPN = "FsxProtocolNfs";
327
+ const _FPS = "FsxProtocolSmb";
328
+ const _FPo = "FoldersPrepared";
329
+ const _FPs = "FsxProtocol";
330
+ const _FR = "FilterRule";
331
+ const _FS = "FilesSkipped";
332
+ const _FSARA = "FileSystemAccessRoleArn";
333
+ const _FSo = "FoldersSkipped";
334
+ const _FT = "FilesTransferred";
335
+ const _FTi = "FilterType";
336
+ const _FTo = "FoldersTransferred";
337
+ const _FUP = "FsxUpdateProtocol";
338
+ const _FUPS = "FsxUpdateProtocolSmb";
339
+ const _FV = "FilesVerified";
340
+ const _FVo = "FoldersVerified";
341
+ const _Fo = "Format";
342
+ const _G = "Gid";
343
+ const _H = "Hostname";
344
+ const _HNN = "HdfsNameNode";
345
+ const _HNNL = "HdfsNameNodeList";
346
+ const _I = "Includes";
347
+ const _IE = "InternalException";
348
+ const _IRE = "InvalidRequestException";
349
+ const _ITE = "InTransitEncryption";
350
+ const _ITL = "InputTagList";
351
+ const _K = "Key";
352
+ const _KK = "KerberosKeytab";
353
+ const _KKA = "KmsKeyArn";
354
+ const _KKC = "KerberosKrb5Conf";
355
+ const _KKPU = "KmsKeyProviderUri";
356
+ const _KP = "KerberosPrincipal";
357
+ const _Ke = "Keys";
358
+ const _L = "Locations";
359
+ const _LA = "LocationArn";
360
+ const _LAR = "ListAgentsRequest";
361
+ const _LARi = "ListAgentsResponse";
362
+ const _LAi = "ListAgents";
363
+ const _LCT = "LastConnectionTime";
364
+ const _LF = "LocationFilter";
365
+ const _LFo = "LocationFilters";
366
+ const _LL = "LogLevel";
367
+ const _LLE = "LocationListEntry";
368
+ const _LLR = "ListLocationsRequest";
369
+ const _LLRi = "ListLocationsResponse";
370
+ const _LLi = "ListLocations";
371
+ const _LLo = "LocationList";
372
+ const _LT = "LaunchTime";
373
+ const _LTE = "ListTaskExecutions";
374
+ const _LTER = "ListTaskExecutionsRequest";
375
+ const _LTERi = "ListTaskExecutionsResponse";
376
+ const _LTFR = "ListTagsForResource";
377
+ const _LTFRR = "ListTagsForResourceRequest";
378
+ const _LTFRRi = "ListTagsForResourceResponse";
379
+ const _LTR = "ListTasksRequest";
380
+ const _LTRi = "ListTasksResponse";
381
+ const _LTi = "ListTasks";
382
+ const _LU = "LocationUri";
383
+ const _Li = "List";
384
+ const _M = "Mtime";
385
+ const _MC = "ManifestConfig";
386
+ const _MO = "MountOptions";
387
+ const _MOP = "ManifestObjectPath";
388
+ const _MOVI = "ManifestObjectVersionId";
389
+ const _MR = "MaxResults";
390
+ const _MSC = "ManagedSecretConfig";
391
+ const _N = "Name";
392
+ const _NFS = "NFS";
393
+ const _NMO = "NfsMountOptions";
394
+ const _NN = "NameNodes";
395
+ const _NT = "NextToken";
396
+ const _O = "Options";
397
+ const _OM = "OverwriteMode";
398
+ const _OO = "OverrideOptions";
399
+ const _OPC = "OnPremConfig";
400
+ const _OSSK = "ObjectStorageSecretKey";
401
+ const _OT = "ObjectTags";
402
+ const _OTL = "OutputTagList";
403
+ const _OTu = "OutputType";
404
+ const _OVI = "ObjectVersionIds";
405
+ const _Op = "Operator";
406
+ const _Ov = "Overrides";
407
+ const _P = "Platform";
408
+ const _PD = "PreserveDevices";
409
+ const _PDF = "PreserveDeletedFiles";
410
+ const _PDr = "PrepareDuration";
411
+ const _PLC = "PrivateLinkConfig";
412
+ const _PLE = "PrivateLinkEndpoint";
413
+ const _PP = "PosixPermissions";
414
+ const _PS = "PrepareStatus";
415
+ const _Pa = "Password";
416
+ const _Po = "Port";
417
+ const _Pr = "Protocol";
418
+ const _Pre = "Prepare";
419
+ const _QC = "QopConfiguration";
420
+ const _R = "Result";
421
+ const _RA = "ResourceArn";
422
+ const _RD = "ReportDestination";
423
+ const _RDS = "ReportDestinationS3";
424
+ const _RF = "ReplicationFactor";
425
+ const _RL = "ReportLevel";
426
+ const _RO = "ReportOverride";
427
+ const _ROe = "ReportOverrides";
428
+ const _RP = "RpcProtection";
429
+ const _RR = "ReportResult";
430
+ const _S = "Status";
431
+ const _SA = "SecretArn";
432
+ const _SARA = "SecretAccessRoleArn";
433
+ const _SAu = "SubnetArns";
434
+ const _SAub = "SubnetArn";
435
+ const _SBA = "S3BucketArn";
436
+ const _SC = "SasConfiguration";
437
+ const _SCe = "ServerCertificate";
438
+ const _SCo = "S3Config";
439
+ const _SD = "ScheduleDetails";
440
+ const _SDCF = "SecurityDescriptorCopyFlags";
441
+ const _SE = "ScheduleExpression";
442
+ const _SGA = "SecurityGroupArns";
443
+ const _SH = "ServerHostname";
444
+ const _SK = "SecretKey";
445
+ const _SLA = "SourceLocationArn";
446
+ const _SMB = "SMB";
447
+ const _SMC = "S3ManifestConfig";
448
+ const _SMCo = "SourceManifestConfig";
449
+ const _SMO = "SmbMountOptions";
450
+ const _SNIA = "SourceNetworkInterfaceArns";
451
+ const _SP = "SmbPassword";
452
+ const _SPe = "ServerPort";
453
+ const _SPer = "ServerProtocol";
454
+ const _SSC = "S3StorageClass";
455
+ const _ST = "StartTime";
456
+ const _STE = "StartTaskExecution";
457
+ const _STER = "StartTaskExecutionRequest";
458
+ const _STERt = "StartTaskExecutionResponse";
459
+ const _SU = "SimpleUser";
460
+ const _SUT = "StatusUpdateTime";
461
+ const _SVMA = "StorageVirtualMachineArn";
462
+ const _S_ = "S3";
463
+ const _Sc = "Schedule";
464
+ const _Sk = "Skipped";
465
+ const _So = "Source";
466
+ const _Su = "Subdirectory";
467
+ const _T = "Token";
468
+ const _TA = "TaskArn";
469
+ const _TD = "TotalDuration";
470
+ const _TDr = "TransferDuration";
471
+ const _TE = "TaskExecutions";
472
+ const _TEA = "TaskExecutionArn";
473
+ const _TEFFD = "TaskExecutionFilesFailedDetail";
474
+ const _TEFFDa = "TaskExecutionFoldersFailedDetail";
475
+ const _TEFLD = "TaskExecutionFilesListedDetail";
476
+ const _TEFLDa = "TaskExecutionFoldersListedDetail";
477
+ const _TEL = "TaskExecutionList";
478
+ const _TELE = "TaskExecutionListEntry";
479
+ const _TERD = "TaskExecutionResultDetail";
480
+ const _TF = "TaskFilter";
481
+ const _TFa = "TaskFilters";
482
+ const _TL = "TaskList";
483
+ const _TLE = "TagListEntry";
484
+ const _TLEa = "TaskListEntry";
485
+ const _TM = "TaskMode";
486
+ const _TMr = "TransferMode";
487
+ const _TQ = "TaskQueueing";
488
+ const _TR = "TagResource";
489
+ const _TRC = "TaskReportConfig";
490
+ const _TRR = "TagResourceRequest";
491
+ const _TRRa = "TagResourceResponse";
492
+ const _TS = "TransferStatus";
493
+ const _TSD = "TaskScheduleDetails";
494
+ const _TSa = "TaskSchedule";
495
+ const _Ta = "Tags";
496
+ const _Tas = "Tasks";
497
+ const _Tr = "Transferred";
498
+ const _Tra = "Transfer";
499
+ const _U = "User";
500
+ const _UA = "UpdateAgent";
501
+ const _UAR = "UpdateAgentRequest";
502
+ const _UARp = "UpdateAgentResponse";
503
+ const _ULAB = "UpdateLocationAzureBlob";
504
+ const _ULABR = "UpdateLocationAzureBlobRequest";
505
+ const _ULABRp = "UpdateLocationAzureBlobResponse";
506
+ const _ULE = "UpdateLocationEfs";
507
+ const _ULER = "UpdateLocationEfsRequest";
508
+ const _ULERp = "UpdateLocationEfsResponse";
509
+ const _ULFL = "UpdateLocationFsxLustre";
510
+ const _ULFLR = "UpdateLocationFsxLustreRequest";
511
+ const _ULFLRp = "UpdateLocationFsxLustreResponse";
512
+ const _ULFO = "UpdateLocationFsxOntap";
513
+ const _ULFOR = "UpdateLocationFsxOntapRequest";
514
+ const _ULFORp = "UpdateLocationFsxOntapResponse";
515
+ const _ULFOZ = "UpdateLocationFsxOpenZfs";
516
+ const _ULFOZR = "UpdateLocationFsxOpenZfsRequest";
517
+ const _ULFOZRp = "UpdateLocationFsxOpenZfsResponse";
518
+ const _ULFW = "UpdateLocationFsxWindows";
519
+ const _ULFWR = "UpdateLocationFsxWindowsRequest";
520
+ const _ULFWRp = "UpdateLocationFsxWindowsResponse";
521
+ const _ULH = "UpdateLocationHdfs";
522
+ const _ULHR = "UpdateLocationHdfsRequest";
523
+ const _ULHRp = "UpdateLocationHdfsResponse";
524
+ const _ULN = "UpdateLocationNfs";
525
+ const _ULNR = "UpdateLocationNfsRequest";
526
+ const _ULNRp = "UpdateLocationNfsResponse";
527
+ const _ULOS = "UpdateLocationObjectStorage";
528
+ const _ULOSR = "UpdateLocationObjectStorageRequest";
529
+ const _ULOSRp = "UpdateLocationObjectStorageResponse";
530
+ const _ULS = "UpdateLocationS3";
531
+ const _ULSR = "UpdateLocationS3Request";
532
+ const _ULSRp = "UpdateLocationS3Response";
533
+ const _ULSRpd = "UpdateLocationSmbRequest";
534
+ const _ULSRpda = "UpdateLocationSmbResponse";
535
+ const _ULSp = "UpdateLocationSmb";
536
+ const _UR = "UntagResource";
537
+ const _URR = "UntagResourceRequest";
538
+ const _URRn = "UntagResourceResponse";
539
+ const _UT = "UpdateTask";
540
+ const _UTE = "UpdateTaskExecution";
541
+ const _UTER = "UpdateTaskExecutionRequest";
542
+ const _UTERp = "UpdateTaskExecutionResponse";
543
+ const _UTR = "UpdateTaskRequest";
544
+ const _UTRp = "UpdateTaskResponse";
545
+ const _Ui = "Uid";
546
+ const _V = "Value";
547
+ const _VD = "VerifyDuration";
548
+ const _VEI = "VpcEndpointId";
549
+ const _VM = "VerifyMode";
550
+ const _VS = "VerifyStatus";
551
+ const _Va = "Values";
552
+ const _Ve = "Version";
553
+ const _Ver = "Verified";
554
+ const _Veri = "Verify";
555
+ const _c = "client";
556
+ const _dEC = "datasyncErrorCode";
557
+ const _e = "error";
558
+ const _eC = "errorCode";
559
+ const _m = "message";
560
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.datasync";
561
+ const _se = "server";
562
+ const n0 = "com.amazonaws.datasync";
563
+ const _s_registry = TypeRegistry.for(_s);
564
+ var DataSyncServiceException$ = [-3, _s, "DataSyncServiceException", 0, [], []];
565
+ _s_registry.registerError(DataSyncServiceException$, DataSyncServiceException);
566
+ const n0_registry = TypeRegistry.for(n0);
567
+ var InternalException$ = [-3, n0, _IE,
568
+ { [_e]: _se },
569
+ [_m, _eC],
570
+ [0, 0]
571
+ ];
572
+ n0_registry.registerError(InternalException$, InternalException);
573
+ var InvalidRequestException$ = [-3, n0, _IRE,
574
+ { [_e]: _c },
575
+ [_m, _eC, _dEC],
576
+ [0, 0, 0]
577
+ ];
578
+ n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
579
+ const errorTypeRegistries = [
580
+ _s_registry,
581
+ n0_registry,
582
+ ];
583
+ var AzureBlobSasToken = [0, n0, _ABST, 8, 0];
584
+ var ObjectStorageSecretKey = [0, n0, _OSSK, 8, 0];
585
+ var SmbPassword = [0, n0, _SP, 8, 0];
586
+ var AgentListEntry$ = [3, n0, _ALE,
587
+ 0,
588
+ [_AA, _N, _S, _P],
589
+ [0, 0, 0, () => Platform$]
590
+ ];
591
+ var AzureBlobSasConfiguration$ = [3, n0, _ABSC,
592
+ 0,
593
+ [_T],
594
+ [[() => AzureBlobSasToken, 0]], 1
595
+ ];
596
+ var CancelTaskExecutionRequest$ = [3, n0, _CTER,
597
+ 0,
598
+ [_TEA],
599
+ [0], 1
600
+ ];
601
+ var CancelTaskExecutionResponse$ = [3, n0, _CTERa,
602
+ 0,
603
+ [],
604
+ []
605
+ ];
606
+ var CmkSecretConfig$ = [3, n0, _CSC,
607
+ 0,
608
+ [_SA, _KKA],
609
+ [0, 0]
610
+ ];
611
+ var CreateAgentRequest$ = [3, n0, _CAR,
612
+ 0,
613
+ [_AK, _AN, _Ta, _VEI, _SAu, _SGA],
614
+ [0, 0, () => InputTagList, 0, 64 | 0, 64 | 0], 1
615
+ ];
616
+ var CreateAgentResponse$ = [3, n0, _CARr,
617
+ 0,
618
+ [_AA],
619
+ [0]
620
+ ];
621
+ var CreateLocationAzureBlobRequest$ = [3, n0, _CLABR,
622
+ 0,
623
+ [_CU, _AT, _SC, _BT, _ATc, _Su, _AAg, _Ta, _CSC, _CSCu],
624
+ [0, 0, [() => AzureBlobSasConfiguration$, 0], 0, 0, 0, 64 | 0, () => InputTagList, () => CmkSecretConfig$, () => CustomSecretConfig$], 2
625
+ ];
626
+ var CreateLocationAzureBlobResponse$ = [3, n0, _CLABRr,
627
+ 0,
628
+ [_LA],
629
+ [0]
630
+ ];
631
+ var CreateLocationEfsRequest$ = [3, n0, _CLER,
632
+ 0,
633
+ [_EFA, _EC, _Su, _Ta, _APA, _FSARA, _ITE],
634
+ [0, () => Ec2Config$, 0, () => InputTagList, 0, 0, 0], 2
635
+ ];
636
+ var CreateLocationEfsResponse$ = [3, n0, _CLERr,
637
+ 0,
638
+ [_LA],
639
+ [0]
640
+ ];
641
+ var CreateLocationFsxLustreRequest$ = [3, n0, _CLFLR,
642
+ 0,
643
+ [_FFA, _SGA, _Su, _Ta],
644
+ [0, 64 | 0, 0, () => InputTagList], 2
645
+ ];
646
+ var CreateLocationFsxLustreResponse$ = [3, n0, _CLFLRr,
647
+ 0,
648
+ [_LA],
649
+ [0]
650
+ ];
651
+ var CreateLocationFsxOntapRequest$ = [3, n0, _CLFOR,
652
+ 0,
653
+ [_Pr, _SGA, _SVMA, _Su, _Ta],
654
+ [[() => FsxProtocol$, 0], 64 | 0, 0, 0, () => InputTagList], 3
655
+ ];
656
+ var CreateLocationFsxOntapResponse$ = [3, n0, _CLFORr,
657
+ 0,
658
+ [_LA],
659
+ [0]
660
+ ];
661
+ var CreateLocationFsxOpenZfsRequest$ = [3, n0, _CLFOZR,
662
+ 0,
663
+ [_FFA, _Pr, _SGA, _Su, _Ta],
664
+ [0, [() => FsxProtocol$, 0], 64 | 0, 0, () => InputTagList], 3
665
+ ];
666
+ var CreateLocationFsxOpenZfsResponse$ = [3, n0, _CLFOZRr,
667
+ 0,
668
+ [_LA],
669
+ [0]
670
+ ];
671
+ var CreateLocationFsxWindowsRequest$ = [3, n0, _CLFWR,
672
+ 0,
673
+ [_FFA, _SGA, _U, _Su, _Ta, _D, _Pa, _CSC, _CSCu],
674
+ [0, 64 | 0, 0, 0, () => InputTagList, 0, [() => SmbPassword, 0], () => CmkSecretConfig$, () => CustomSecretConfig$], 3
675
+ ];
676
+ var CreateLocationFsxWindowsResponse$ = [3, n0, _CLFWRr,
677
+ 0,
678
+ [_LA],
679
+ [0]
680
+ ];
681
+ var CreateLocationHdfsRequest$ = [3, n0, _CLHR,
682
+ 0,
683
+ [_NN, _AT, _AAg, _Su, _BS, _RF, _KKPU, _QC, _SU, _KP, _KK, _KKC, _Ta, _CSC, _CSCu],
684
+ [() => HdfsNameNodeList, 0, 64 | 0, 0, 1, 1, 0, () => QopConfiguration$, 0, 0, 21, 21, () => InputTagList, () => CmkSecretConfig$, () => CustomSecretConfig$], 3
685
+ ];
686
+ var CreateLocationHdfsResponse$ = [3, n0, _CLHRr,
687
+ 0,
688
+ [_LA],
689
+ [0]
690
+ ];
691
+ var CreateLocationNfsRequest$ = [3, n0, _CLNR,
692
+ 0,
693
+ [_Su, _SH, _OPC, _MO, _Ta],
694
+ [0, 0, () => OnPremConfig$, () => NfsMountOptions$, () => InputTagList], 3
695
+ ];
696
+ var CreateLocationNfsResponse$ = [3, n0, _CLNRr,
697
+ 0,
698
+ [_LA],
699
+ [0]
700
+ ];
701
+ var CreateLocationObjectStorageRequest$ = [3, n0, _CLOSR,
702
+ 0,
703
+ [_SH, _BN, _SPe, _SPer, _Su, _AKc, _SK, _AAg, _Ta, _SCe, _CSC, _CSCu],
704
+ [0, 0, 1, 0, 0, 0, [() => ObjectStorageSecretKey, 0], 64 | 0, () => InputTagList, 21, () => CmkSecretConfig$, () => CustomSecretConfig$], 2
705
+ ];
706
+ var CreateLocationObjectStorageResponse$ = [3, n0, _CLOSRr,
707
+ 0,
708
+ [_LA],
709
+ [0]
710
+ ];
711
+ var CreateLocationS3Request$ = [3, n0, _CLSR,
712
+ 0,
713
+ [_SBA, _SCo, _Su, _SSC, _AAg, _Ta],
714
+ [0, () => S3Config$, 0, 0, 64 | 0, () => InputTagList], 2
715
+ ];
716
+ var CreateLocationS3Response$ = [3, n0, _CLSRr,
717
+ 0,
718
+ [_LA],
719
+ [0]
720
+ ];
721
+ var CreateLocationSmbRequest$ = [3, n0, _CLSRre,
722
+ 0,
723
+ [_Su, _SH, _AAg, _U, _D, _Pa, _CSC, _CSCu, _MO, _Ta, _AT, _DIA, _KP, _KK, _KKC],
724
+ [0, 0, 64 | 0, 0, 0, [() => SmbPassword, 0], () => CmkSecretConfig$, () => CustomSecretConfig$, () => SmbMountOptions$, () => InputTagList, 0, 64 | 0, 0, 21, 21], 3
725
+ ];
726
+ var CreateLocationSmbResponse$ = [3, n0, _CLSRrea,
727
+ 0,
728
+ [_LA],
729
+ [0]
730
+ ];
731
+ var CreateTaskRequest$ = [3, n0, _CTR,
732
+ 0,
733
+ [_SLA, _DLA, _CWLGA, _N, _O, _E, _Sc, _Ta, _I, _MC, _TRC, _TM],
734
+ [0, 0, 0, 0, () => Options$, () => FilterList, () => TaskSchedule$, () => InputTagList, () => FilterList, () => ManifestConfig$, () => TaskReportConfig$, 0], 2
735
+ ];
736
+ var CreateTaskResponse$ = [3, n0, _CTRr,
737
+ 0,
738
+ [_TA],
739
+ [0]
740
+ ];
741
+ var CustomSecretConfig$ = [3, n0, _CSCu,
742
+ 0,
743
+ [_SA, _SARA],
744
+ [0, 0]
745
+ ];
746
+ var DeleteAgentRequest$ = [3, n0, _DAR,
747
+ 0,
748
+ [_AA],
749
+ [0], 1
750
+ ];
751
+ var DeleteAgentResponse$ = [3, n0, _DARe,
752
+ 0,
753
+ [],
754
+ []
755
+ ];
756
+ var DeleteLocationRequest$ = [3, n0, _DLR,
757
+ 0,
758
+ [_LA],
759
+ [0], 1
760
+ ];
761
+ var DeleteLocationResponse$ = [3, n0, _DLRe,
762
+ 0,
763
+ [],
764
+ []
765
+ ];
766
+ var DeleteTaskRequest$ = [3, n0, _DTR,
767
+ 0,
768
+ [_TA],
769
+ [0], 1
770
+ ];
771
+ var DeleteTaskResponse$ = [3, n0, _DTRe,
772
+ 0,
773
+ [],
774
+ []
775
+ ];
776
+ var DescribeAgentRequest$ = [3, n0, _DARes,
777
+ 0,
778
+ [_AA],
779
+ [0], 1
780
+ ];
781
+ var DescribeAgentResponse$ = [3, n0, _DAResc,
782
+ 0,
783
+ [_AA, _N, _S, _LCT, _CT, _ET, _PLC, _P],
784
+ [0, 0, 0, 4, 4, 0, () => PrivateLinkConfig$, () => Platform$]
785
+ ];
786
+ var DescribeLocationAzureBlobRequest$ = [3, n0, _DLABR,
787
+ 0,
788
+ [_LA],
789
+ [0], 1
790
+ ];
791
+ var DescribeLocationAzureBlobResponse$ = [3, n0, _DLABRe,
792
+ 0,
793
+ [_LA, _LU, _AT, _BT, _ATc, _AAg, _CT, _MSC, _CSC, _CSCu],
794
+ [0, 0, 0, 0, 0, 64 | 0, 4, () => ManagedSecretConfig$, () => CmkSecretConfig$, () => CustomSecretConfig$]
795
+ ];
796
+ var DescribeLocationEfsRequest$ = [3, n0, _DLER,
797
+ 0,
798
+ [_LA],
799
+ [0], 1
800
+ ];
801
+ var DescribeLocationEfsResponse$ = [3, n0, _DLERe,
802
+ 0,
803
+ [_LA, _LU, _EC, _CT, _APA, _FSARA, _ITE],
804
+ [0, 0, () => Ec2Config$, 4, 0, 0, 0]
805
+ ];
806
+ var DescribeLocationFsxLustreRequest$ = [3, n0, _DLFLR,
807
+ 0,
808
+ [_LA],
809
+ [0], 1
810
+ ];
811
+ var DescribeLocationFsxLustreResponse$ = [3, n0, _DLFLRe,
812
+ 0,
813
+ [_LA, _LU, _SGA, _CT],
814
+ [0, 0, 64 | 0, 4]
815
+ ];
816
+ var DescribeLocationFsxOntapRequest$ = [3, n0, _DLFOR,
817
+ 0,
818
+ [_LA],
819
+ [0], 1
820
+ ];
821
+ var DescribeLocationFsxOntapResponse$ = [3, n0, _DLFORe,
822
+ 0,
823
+ [_CT, _LA, _LU, _Pr, _SGA, _SVMA, _FFA],
824
+ [4, 0, 0, [() => FsxProtocol$, 0], 64 | 0, 0, 0]
825
+ ];
826
+ var DescribeLocationFsxOpenZfsRequest$ = [3, n0, _DLFOZR,
827
+ 0,
828
+ [_LA],
829
+ [0], 1
830
+ ];
831
+ var DescribeLocationFsxOpenZfsResponse$ = [3, n0, _DLFOZRe,
832
+ 0,
833
+ [_LA, _LU, _SGA, _Pr, _CT],
834
+ [0, 0, 64 | 0, [() => FsxProtocol$, 0], 4]
835
+ ];
836
+ var DescribeLocationFsxWindowsRequest$ = [3, n0, _DLFWR,
837
+ 0,
838
+ [_LA],
839
+ [0], 1
840
+ ];
841
+ var DescribeLocationFsxWindowsResponse$ = [3, n0, _DLFWRe,
842
+ 0,
843
+ [_LA, _LU, _SGA, _CT, _U, _D, _MSC, _CSC, _CSCu],
844
+ [0, 0, 64 | 0, 4, 0, 0, () => ManagedSecretConfig$, () => CmkSecretConfig$, () => CustomSecretConfig$]
845
+ ];
846
+ var DescribeLocationHdfsRequest$ = [3, n0, _DLHR,
847
+ 0,
848
+ [_LA],
849
+ [0], 1
850
+ ];
851
+ var DescribeLocationHdfsResponse$ = [3, n0, _DLHRe,
852
+ 0,
853
+ [_LA, _LU, _NN, _BS, _RF, _KKPU, _QC, _AT, _SU, _KP, _AAg, _CT, _MSC, _CSC, _CSCu],
854
+ [0, 0, () => HdfsNameNodeList, 1, 1, 0, () => QopConfiguration$, 0, 0, 0, 64 | 0, 4, () => ManagedSecretConfig$, () => CmkSecretConfig$, () => CustomSecretConfig$]
855
+ ];
856
+ var DescribeLocationNfsRequest$ = [3, n0, _DLNR,
857
+ 0,
858
+ [_LA],
859
+ [0], 1
860
+ ];
861
+ var DescribeLocationNfsResponse$ = [3, n0, _DLNRe,
862
+ 0,
863
+ [_LA, _LU, _OPC, _MO, _CT],
864
+ [0, 0, () => OnPremConfig$, () => NfsMountOptions$, 4]
865
+ ];
866
+ var DescribeLocationObjectStorageRequest$ = [3, n0, _DLOSR,
867
+ 0,
868
+ [_LA],
869
+ [0], 1
870
+ ];
871
+ var DescribeLocationObjectStorageResponse$ = [3, n0, _DLOSRe,
872
+ 0,
873
+ [_LA, _LU, _AKc, _SPe, _SPer, _AAg, _CT, _SCe, _MSC, _CSC, _CSCu],
874
+ [0, 0, 0, 1, 0, 64 | 0, 4, 21, () => ManagedSecretConfig$, () => CmkSecretConfig$, () => CustomSecretConfig$]
875
+ ];
876
+ var DescribeLocationS3Request$ = [3, n0, _DLSR,
877
+ 0,
878
+ [_LA],
879
+ [0], 1
880
+ ];
881
+ var DescribeLocationS3Response$ = [3, n0, _DLSRe,
882
+ 0,
883
+ [_LA, _LU, _SSC, _SCo, _AAg, _CT],
884
+ [0, 0, 0, () => S3Config$, 64 | 0, 4]
885
+ ];
886
+ var DescribeLocationSmbRequest$ = [3, n0, _DLSRes,
887
+ 0,
888
+ [_LA],
889
+ [0], 1
890
+ ];
891
+ var DescribeLocationSmbResponse$ = [3, n0, _DLSResc,
892
+ 0,
893
+ [_LA, _LU, _AAg, _U, _D, _MO, _CT, _DIA, _KP, _AT, _MSC, _CSC, _CSCu],
894
+ [0, 0, 64 | 0, 0, 0, () => SmbMountOptions$, 4, 64 | 0, 0, 0, () => ManagedSecretConfig$, () => CmkSecretConfig$, () => CustomSecretConfig$]
895
+ ];
896
+ var DescribeTaskExecutionRequest$ = [3, n0, _DTER,
897
+ 0,
898
+ [_TEA],
899
+ [0], 1
900
+ ];
901
+ var DescribeTaskExecutionResponse$ = [3, n0, _DTERe,
902
+ 0,
903
+ [_TEA, _S, _O, _E, _I, _MC, _ST, _EFTT, _EBTT, _FT, _BW, _BTy, _BC, _R, _TRC, _FD, _FS, _FV, _RR, _EFTD, _TM, _FP, _FL, _FF, _EFTDs, _EFTTs, _FSo, _FPo, _FTo, _FVo, _FDo, _FLo, _FFo, _LT, _ETn],
904
+ [0, 0, () => Options$, () => FilterList, () => FilterList, () => ManifestConfig$, 4, 1, 1, 1, 1, 1, 1, () => TaskExecutionResultDetail$, () => TaskReportConfig$, 1, 1, 1, () => ReportResult$, 1, 0, 1, () => TaskExecutionFilesListedDetail$, () => TaskExecutionFilesFailedDetail$, 1, 1, 1, 1, 1, 1, 1, () => TaskExecutionFoldersListedDetail$, () => TaskExecutionFoldersFailedDetail$, 4, 4]
905
+ ];
906
+ var DescribeTaskRequest$ = [3, n0, _DTRes,
907
+ 0,
908
+ [_TA],
909
+ [0], 1
910
+ ];
911
+ var DescribeTaskResponse$ = [3, n0, _DTResc,
912
+ 0,
913
+ [_TA, _S, _N, _CTEA, _SLA, _DLA, _CWLGA, _SNIA, _DNIA, _O, _E, _Sc, _ECr, _ED, _CT, _I, _MC, _TRC, _SD, _TM],
914
+ [0, 0, 0, 0, 0, 0, 0, 64 | 0, 64 | 0, () => Options$, () => FilterList, () => TaskSchedule$, 0, 0, 4, () => FilterList, () => ManifestConfig$, () => TaskReportConfig$, () => TaskScheduleDetails$, 0]
915
+ ];
916
+ var Ec2Config$ = [3, n0, _EC,
917
+ 0,
918
+ [_SAub, _SGA],
919
+ [0, 64 | 0], 2
920
+ ];
921
+ var FilterRule$ = [3, n0, _FR,
922
+ 0,
923
+ [_FTi, _V],
924
+ [0, 0]
925
+ ];
926
+ var FsxProtocol$ = [3, n0, _FPs,
927
+ 0,
928
+ [_NFS, _SMB],
929
+ [() => FsxProtocolNfs$, [() => FsxProtocolSmb$, 0]]
930
+ ];
931
+ var FsxProtocolNfs$ = [3, n0, _FPN,
932
+ 0,
933
+ [_MO],
934
+ [() => NfsMountOptions$]
935
+ ];
936
+ var FsxProtocolSmb$ = [3, n0, _FPS,
937
+ 0,
938
+ [_U, _D, _MO, _Pa, _MSC, _CSC, _CSCu],
939
+ [0, 0, () => SmbMountOptions$, [() => SmbPassword, 0], () => ManagedSecretConfig$, () => CmkSecretConfig$, () => CustomSecretConfig$], 1
940
+ ];
941
+ var FsxUpdateProtocol$ = [3, n0, _FUP,
942
+ 0,
943
+ [_NFS, _SMB],
944
+ [() => FsxProtocolNfs$, [() => FsxUpdateProtocolSmb$, 0]]
945
+ ];
946
+ var FsxUpdateProtocolSmb$ = [3, n0, _FUPS,
947
+ 0,
948
+ [_D, _MO, _Pa, _U, _CSC, _CSCu],
949
+ [0, () => SmbMountOptions$, [() => SmbPassword, 0], 0, () => CmkSecretConfig$, () => CustomSecretConfig$]
950
+ ];
951
+ var HdfsNameNode$ = [3, n0, _HNN,
952
+ 0,
953
+ [_H, _Po],
954
+ [0, 1], 2
955
+ ];
956
+ var ListAgentsRequest$ = [3, n0, _LAR,
957
+ 0,
958
+ [_MR, _NT],
959
+ [1, 0]
960
+ ];
961
+ var ListAgentsResponse$ = [3, n0, _LARi,
962
+ 0,
963
+ [_A, _NT],
964
+ [() => AgentList, 0]
965
+ ];
966
+ var ListLocationsRequest$ = [3, n0, _LLR,
967
+ 0,
968
+ [_MR, _NT, _F],
969
+ [1, 0, () => LocationFilters]
970
+ ];
971
+ var ListLocationsResponse$ = [3, n0, _LLRi,
972
+ 0,
973
+ [_L, _NT],
974
+ [() => LocationList, 0]
975
+ ];
976
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
977
+ 0,
978
+ [_RA, _MR, _NT],
979
+ [0, 1, 0], 1
980
+ ];
981
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
982
+ 0,
983
+ [_Ta, _NT],
984
+ [() => OutputTagList, 0]
985
+ ];
986
+ var ListTaskExecutionsRequest$ = [3, n0, _LTER,
987
+ 0,
988
+ [_TA, _MR, _NT],
989
+ [0, 1, 0]
990
+ ];
991
+ var ListTaskExecutionsResponse$ = [3, n0, _LTERi,
992
+ 0,
993
+ [_TE, _NT],
994
+ [() => TaskExecutionList, 0]
995
+ ];
996
+ var ListTasksRequest$ = [3, n0, _LTR,
997
+ 0,
998
+ [_MR, _NT, _F],
999
+ [1, 0, () => TaskFilters]
1000
+ ];
1001
+ var ListTasksResponse$ = [3, n0, _LTRi,
1002
+ 0,
1003
+ [_Tas, _NT],
1004
+ [() => TaskList, 0]
1005
+ ];
1006
+ var LocationFilter$ = [3, n0, _LF,
1007
+ 0,
1008
+ [_N, _Va, _Op],
1009
+ [0, 64 | 0, 0], 3
1010
+ ];
1011
+ var LocationListEntry$ = [3, n0, _LLE,
1012
+ 0,
1013
+ [_LA, _LU],
1014
+ [0, 0]
1015
+ ];
1016
+ var ManagedSecretConfig$ = [3, n0, _MSC,
1017
+ 0,
1018
+ [_SA],
1019
+ [0]
1020
+ ];
1021
+ var ManifestConfig$ = [3, n0, _MC,
1022
+ 0,
1023
+ [_Ac, _Fo, _So],
1024
+ [0, 0, () => SourceManifestConfig$]
1025
+ ];
1026
+ var NfsMountOptions$ = [3, n0, _NMO,
1027
+ 0,
1028
+ [_Ve],
1029
+ [0]
1030
+ ];
1031
+ var OnPremConfig$ = [3, n0, _OPC,
1032
+ 0,
1033
+ [_AAg],
1034
+ [64 | 0], 1
1035
+ ];
1036
+ var Options$ = [3, n0, _O,
1037
+ 0,
1038
+ [_VM, _OM, _At, _M, _Ui, _G, _PDF, _PD, _PP, _BPS, _TQ, _LL, _TMr, _SDCF, _OT],
1039
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0]
1040
+ ];
1041
+ var Platform$ = [3, n0, _P,
1042
+ 0,
1043
+ [_Ve],
1044
+ [0]
1045
+ ];
1046
+ var PrivateLinkConfig$ = [3, n0, _PLC,
1047
+ 0,
1048
+ [_VEI, _PLE, _SAu, _SGA],
1049
+ [0, 0, 64 | 0, 64 | 0]
1050
+ ];
1051
+ var QopConfiguration$ = [3, n0, _QC,
1052
+ 0,
1053
+ [_RP, _DTP],
1054
+ [0, 0]
1055
+ ];
1056
+ var ReportDestination$ = [3, n0, _RD,
1057
+ 0,
1058
+ [_S_],
1059
+ [() => ReportDestinationS3$]
1060
+ ];
1061
+ var ReportDestinationS3$ = [3, n0, _RDS,
1062
+ 0,
1063
+ [_SBA, _BARA, _Su],
1064
+ [0, 0, 0], 2
1065
+ ];
1066
+ var ReportOverride$ = [3, n0, _RO,
1067
+ 0,
1068
+ [_RL],
1069
+ [0]
1070
+ ];
1071
+ var ReportOverrides$ = [3, n0, _ROe,
1072
+ 0,
1073
+ [_Tr, _Ver, _De, _Sk],
1074
+ [() => ReportOverride$, () => ReportOverride$, () => ReportOverride$, () => ReportOverride$]
1075
+ ];
1076
+ var ReportResult$ = [3, n0, _RR,
1077
+ 0,
1078
+ [_S, _ECr, _ED],
1079
+ [0, 0, 0]
1080
+ ];
1081
+ var S3Config$ = [3, n0, _SCo,
1082
+ 0,
1083
+ [_BARA],
1084
+ [0], 1
1085
+ ];
1086
+ var S3ManifestConfig$ = [3, n0, _SMC,
1087
+ 0,
1088
+ [_MOP, _BARA, _SBA, _MOVI],
1089
+ [0, 0, 0, 0], 3
1090
+ ];
1091
+ var SmbMountOptions$ = [3, n0, _SMO,
1092
+ 0,
1093
+ [_Ve],
1094
+ [0]
1095
+ ];
1096
+ var SourceManifestConfig$ = [3, n0, _SMCo,
1097
+ 0,
1098
+ [_S_],
1099
+ [() => S3ManifestConfig$], 1
1100
+ ];
1101
+ var StartTaskExecutionRequest$ = [3, n0, _STER,
1102
+ 0,
1103
+ [_TA, _OO, _I, _E, _MC, _TRC, _Ta],
1104
+ [0, () => Options$, () => FilterList, () => FilterList, () => ManifestConfig$, () => TaskReportConfig$, () => InputTagList], 1
1105
+ ];
1106
+ var StartTaskExecutionResponse$ = [3, n0, _STERt,
1107
+ 0,
1108
+ [_TEA],
1109
+ [0]
1110
+ ];
1111
+ var TagListEntry$ = [3, n0, _TLE,
1112
+ 0,
1113
+ [_K, _V],
1114
+ [0, 0], 1
1115
+ ];
1116
+ var TagResourceRequest$ = [3, n0, _TRR,
1117
+ 0,
1118
+ [_RA, _Ta],
1119
+ [0, () => InputTagList], 2
1120
+ ];
1121
+ var TagResourceResponse$ = [3, n0, _TRRa,
1122
+ 0,
1123
+ [],
1124
+ []
1125
+ ];
1126
+ var TaskExecutionFilesFailedDetail$ = [3, n0, _TEFFD,
1127
+ 0,
1128
+ [_Pre, _Tra, _Veri, _Del],
1129
+ [1, 1, 1, 1]
1130
+ ];
1131
+ var TaskExecutionFilesListedDetail$ = [3, n0, _TEFLD,
1132
+ 0,
1133
+ [_AS, _ADFD],
1134
+ [1, 1]
1135
+ ];
1136
+ var TaskExecutionFoldersFailedDetail$ = [3, n0, _TEFFDa,
1137
+ 0,
1138
+ [_Li, _Pre, _Tra, _Veri, _Del],
1139
+ [1, 1, 1, 1, 1]
1140
+ ];
1141
+ var TaskExecutionFoldersListedDetail$ = [3, n0, _TEFLDa,
1142
+ 0,
1143
+ [_AS, _ADFD],
1144
+ [1, 1]
1145
+ ];
1146
+ var TaskExecutionListEntry$ = [3, n0, _TELE,
1147
+ 0,
1148
+ [_TEA, _S, _TM],
1149
+ [0, 0, 0]
1150
+ ];
1151
+ var TaskExecutionResultDetail$ = [3, n0, _TERD,
1152
+ 0,
1153
+ [_PDr, _PS, _TD, _TDr, _TS, _VD, _VS, _ECr, _ED],
1154
+ [1, 0, 1, 1, 0, 1, 0, 0, 0]
1155
+ ];
1156
+ var TaskFilter$ = [3, n0, _TF,
1157
+ 0,
1158
+ [_N, _Va, _Op],
1159
+ [0, 64 | 0, 0], 3
1160
+ ];
1161
+ var TaskListEntry$ = [3, n0, _TLEa,
1162
+ 0,
1163
+ [_TA, _S, _N, _TM],
1164
+ [0, 0, 0, 0]
1165
+ ];
1166
+ var TaskReportConfig$ = [3, n0, _TRC,
1167
+ 0,
1168
+ [_Des, _OTu, _RL, _OVI, _Ov],
1169
+ [() => ReportDestination$, 0, 0, 0, () => ReportOverrides$]
1170
+ ];
1171
+ var TaskSchedule$ = [3, n0, _TSa,
1172
+ 0,
1173
+ [_SE, _S],
1174
+ [0, 0], 1
1175
+ ];
1176
+ var TaskScheduleDetails$ = [3, n0, _TSD,
1177
+ 0,
1178
+ [_SUT, _DR, _DB],
1179
+ [4, 0, 0]
1180
+ ];
1181
+ var UntagResourceRequest$ = [3, n0, _URR,
1182
+ 0,
1183
+ [_RA, _Ke],
1184
+ [0, 64 | 0], 2
1185
+ ];
1186
+ var UntagResourceResponse$ = [3, n0, _URRn,
1187
+ 0,
1188
+ [],
1189
+ []
1190
+ ];
1191
+ var UpdateAgentRequest$ = [3, n0, _UAR,
1192
+ 0,
1193
+ [_AA, _N],
1194
+ [0, 0], 1
1195
+ ];
1196
+ var UpdateAgentResponse$ = [3, n0, _UARp,
1197
+ 0,
1198
+ [],
1199
+ []
1200
+ ];
1201
+ var UpdateLocationAzureBlobRequest$ = [3, n0, _ULABR,
1202
+ 0,
1203
+ [_LA, _Su, _AT, _SC, _BT, _ATc, _AAg, _CSC, _CSCu],
1204
+ [0, 0, 0, [() => AzureBlobSasConfiguration$, 0], 0, 0, 64 | 0, () => CmkSecretConfig$, () => CustomSecretConfig$], 1
1205
+ ];
1206
+ var UpdateLocationAzureBlobResponse$ = [3, n0, _ULABRp,
1207
+ 0,
1208
+ [],
1209
+ []
1210
+ ];
1211
+ var UpdateLocationEfsRequest$ = [3, n0, _ULER,
1212
+ 0,
1213
+ [_LA, _Su, _APA, _FSARA, _ITE],
1214
+ [0, 0, 0, 0, 0], 1
1215
+ ];
1216
+ var UpdateLocationEfsResponse$ = [3, n0, _ULERp,
1217
+ 0,
1218
+ [],
1219
+ []
1220
+ ];
1221
+ var UpdateLocationFsxLustreRequest$ = [3, n0, _ULFLR,
1222
+ 0,
1223
+ [_LA, _Su],
1224
+ [0, 0], 1
1225
+ ];
1226
+ var UpdateLocationFsxLustreResponse$ = [3, n0, _ULFLRp,
1227
+ 0,
1228
+ [],
1229
+ []
1230
+ ];
1231
+ var UpdateLocationFsxOntapRequest$ = [3, n0, _ULFOR,
1232
+ 0,
1233
+ [_LA, _Pr, _Su],
1234
+ [0, [() => FsxUpdateProtocol$, 0], 0], 1
1235
+ ];
1236
+ var UpdateLocationFsxOntapResponse$ = [3, n0, _ULFORp,
1237
+ 0,
1238
+ [],
1239
+ []
1240
+ ];
1241
+ var UpdateLocationFsxOpenZfsRequest$ = [3, n0, _ULFOZR,
1242
+ 0,
1243
+ [_LA, _Pr, _Su],
1244
+ [0, [() => FsxProtocol$, 0], 0], 1
1245
+ ];
1246
+ var UpdateLocationFsxOpenZfsResponse$ = [3, n0, _ULFOZRp,
1247
+ 0,
1248
+ [],
1249
+ []
1250
+ ];
1251
+ var UpdateLocationFsxWindowsRequest$ = [3, n0, _ULFWR,
1252
+ 0,
1253
+ [_LA, _Su, _D, _U, _Pa, _CSC, _CSCu],
1254
+ [0, 0, 0, 0, [() => SmbPassword, 0], () => CmkSecretConfig$, () => CustomSecretConfig$], 1
1255
+ ];
1256
+ var UpdateLocationFsxWindowsResponse$ = [3, n0, _ULFWRp,
1257
+ 0,
1258
+ [],
1259
+ []
1260
+ ];
1261
+ var UpdateLocationHdfsRequest$ = [3, n0, _ULHR,
1262
+ 0,
1263
+ [_LA, _Su, _NN, _BS, _RF, _KKPU, _QC, _AT, _SU, _KP, _KK, _KKC, _AAg, _CSC, _CSCu],
1264
+ [0, 0, () => HdfsNameNodeList, 1, 1, 0, () => QopConfiguration$, 0, 0, 0, 21, 21, 64 | 0, () => CmkSecretConfig$, () => CustomSecretConfig$], 1
1265
+ ];
1266
+ var UpdateLocationHdfsResponse$ = [3, n0, _ULHRp,
1267
+ 0,
1268
+ [],
1269
+ []
1270
+ ];
1271
+ var UpdateLocationNfsRequest$ = [3, n0, _ULNR,
1272
+ 0,
1273
+ [_LA, _Su, _SH, _OPC, _MO],
1274
+ [0, 0, 0, () => OnPremConfig$, () => NfsMountOptions$], 1
1275
+ ];
1276
+ var UpdateLocationNfsResponse$ = [3, n0, _ULNRp,
1277
+ 0,
1278
+ [],
1279
+ []
1280
+ ];
1281
+ var UpdateLocationObjectStorageRequest$ = [3, n0, _ULOSR,
1282
+ 0,
1283
+ [_LA, _SPe, _SPer, _Su, _SH, _AKc, _SK, _AAg, _SCe, _CSC, _CSCu],
1284
+ [0, 1, 0, 0, 0, 0, [() => ObjectStorageSecretKey, 0], 64 | 0, 21, () => CmkSecretConfig$, () => CustomSecretConfig$], 1
1285
+ ];
1286
+ var UpdateLocationObjectStorageResponse$ = [3, n0, _ULOSRp,
1287
+ 0,
1288
+ [],
1289
+ []
1290
+ ];
1291
+ var UpdateLocationS3Request$ = [3, n0, _ULSR,
1292
+ 0,
1293
+ [_LA, _Su, _SSC, _SCo],
1294
+ [0, 0, 0, () => S3Config$], 1
1295
+ ];
1296
+ var UpdateLocationS3Response$ = [3, n0, _ULSRp,
1297
+ 0,
1298
+ [],
1299
+ []
1300
+ ];
1301
+ var UpdateLocationSmbRequest$ = [3, n0, _ULSRpd,
1302
+ 0,
1303
+ [_LA, _Su, _SH, _U, _D, _Pa, _CSC, _CSCu, _AAg, _MO, _AT, _DIA, _KP, _KK, _KKC],
1304
+ [0, 0, 0, 0, 0, [() => SmbPassword, 0], () => CmkSecretConfig$, () => CustomSecretConfig$, 64 | 0, () => SmbMountOptions$, 0, 64 | 0, 0, 21, 21], 1
1305
+ ];
1306
+ var UpdateLocationSmbResponse$ = [3, n0, _ULSRpda,
1307
+ 0,
1308
+ [],
1309
+ []
1310
+ ];
1311
+ var UpdateTaskExecutionRequest$ = [3, n0, _UTER,
1312
+ 0,
1313
+ [_TEA, _O],
1314
+ [0, () => Options$], 2
1315
+ ];
1316
+ var UpdateTaskExecutionResponse$ = [3, n0, _UTERp,
1317
+ 0,
1318
+ [],
1319
+ []
1320
+ ];
1321
+ var UpdateTaskRequest$ = [3, n0, _UTR,
1322
+ 0,
1323
+ [_TA, _O, _E, _Sc, _N, _CWLGA, _I, _MC, _TRC],
1324
+ [0, () => Options$, () => FilterList, () => TaskSchedule$, 0, 0, () => FilterList, () => ManifestConfig$, () => TaskReportConfig$], 1
1325
+ ];
1326
+ var UpdateTaskResponse$ = [3, n0, _UTRp,
1327
+ 0,
1328
+ [],
1329
+ []
1330
+ ];
1331
+ var AgentList = [1, n0, _AL,
1332
+ 0, () => AgentListEntry$
1333
+ ];
1334
+ var FilterList = [1, n0, _FLi,
1335
+ 0, () => FilterRule$
1336
+ ];
1337
+ var HdfsNameNodeList = [1, n0, _HNNL,
1338
+ 0, () => HdfsNameNode$
1339
+ ];
1340
+ var InputTagList = [1, n0, _ITL,
1341
+ 0, () => TagListEntry$
1342
+ ];
1343
+ var LocationFilters = [1, n0, _LFo,
1344
+ 0, () => LocationFilter$
1345
+ ];
1346
+ var LocationList = [1, n0, _LLo,
1347
+ 0, () => LocationListEntry$
1348
+ ];
1349
+ var OutputTagList = [1, n0, _OTL,
1350
+ 0, () => TagListEntry$
1351
+ ];
1352
+ var TaskExecutionList = [1, n0, _TEL,
1353
+ 0, () => TaskExecutionListEntry$
1354
+ ];
1355
+ var TaskFilters = [1, n0, _TFa,
1356
+ 0, () => TaskFilter$
1357
+ ];
1358
+ var TaskList = [1, n0, _TL,
1359
+ 0, () => TaskListEntry$
1360
+ ];
1361
+ var CancelTaskExecution$ = [9, n0, _CTE,
1362
+ 0, () => CancelTaskExecutionRequest$, () => CancelTaskExecutionResponse$
1363
+ ];
1364
+ var CreateAgent$ = [9, n0, _CA,
1365
+ 0, () => CreateAgentRequest$, () => CreateAgentResponse$
1366
+ ];
1367
+ var CreateLocationAzureBlob$ = [9, n0, _CLAB,
1368
+ 0, () => CreateLocationAzureBlobRequest$, () => CreateLocationAzureBlobResponse$
1369
+ ];
1370
+ var CreateLocationEfs$ = [9, n0, _CLE,
1371
+ 0, () => CreateLocationEfsRequest$, () => CreateLocationEfsResponse$
1372
+ ];
1373
+ var CreateLocationFsxLustre$ = [9, n0, _CLFL,
1374
+ 0, () => CreateLocationFsxLustreRequest$, () => CreateLocationFsxLustreResponse$
1375
+ ];
1376
+ var CreateLocationFsxOntap$ = [9, n0, _CLFO,
1377
+ 0, () => CreateLocationFsxOntapRequest$, () => CreateLocationFsxOntapResponse$
1378
+ ];
1379
+ var CreateLocationFsxOpenZfs$ = [9, n0, _CLFOZ,
1380
+ 0, () => CreateLocationFsxOpenZfsRequest$, () => CreateLocationFsxOpenZfsResponse$
1381
+ ];
1382
+ var CreateLocationFsxWindows$ = [9, n0, _CLFW,
1383
+ 0, () => CreateLocationFsxWindowsRequest$, () => CreateLocationFsxWindowsResponse$
1384
+ ];
1385
+ var CreateLocationHdfs$ = [9, n0, _CLH,
1386
+ 0, () => CreateLocationHdfsRequest$, () => CreateLocationHdfsResponse$
1387
+ ];
1388
+ var CreateLocationNfs$ = [9, n0, _CLN,
1389
+ 0, () => CreateLocationNfsRequest$, () => CreateLocationNfsResponse$
1390
+ ];
1391
+ var CreateLocationObjectStorage$ = [9, n0, _CLOS,
1392
+ 0, () => CreateLocationObjectStorageRequest$, () => CreateLocationObjectStorageResponse$
1393
+ ];
1394
+ var CreateLocationS3$ = [9, n0, _CLS,
1395
+ 0, () => CreateLocationS3Request$, () => CreateLocationS3Response$
1396
+ ];
1397
+ var CreateLocationSmb$ = [9, n0, _CLSr,
1398
+ 0, () => CreateLocationSmbRequest$, () => CreateLocationSmbResponse$
1399
+ ];
1400
+ var CreateTask$ = [9, n0, _CTr,
1401
+ 0, () => CreateTaskRequest$, () => CreateTaskResponse$
1402
+ ];
1403
+ var DeleteAgent$ = [9, n0, _DA,
1404
+ 0, () => DeleteAgentRequest$, () => DeleteAgentResponse$
1405
+ ];
1406
+ var DeleteLocation$ = [9, n0, _DL,
1407
+ 0, () => DeleteLocationRequest$, () => DeleteLocationResponse$
1408
+ ];
1409
+ var DeleteTask$ = [9, n0, _DT,
1410
+ 0, () => DeleteTaskRequest$, () => DeleteTaskResponse$
1411
+ ];
1412
+ var DescribeAgent$ = [9, n0, _DAe,
1413
+ 0, () => DescribeAgentRequest$, () => DescribeAgentResponse$
1414
+ ];
1415
+ var DescribeLocationAzureBlob$ = [9, n0, _DLAB,
1416
+ 0, () => DescribeLocationAzureBlobRequest$, () => DescribeLocationAzureBlobResponse$
1417
+ ];
1418
+ var DescribeLocationEfs$ = [9, n0, _DLE,
1419
+ 0, () => DescribeLocationEfsRequest$, () => DescribeLocationEfsResponse$
1420
+ ];
1421
+ var DescribeLocationFsxLustre$ = [9, n0, _DLFL,
1422
+ 0, () => DescribeLocationFsxLustreRequest$, () => DescribeLocationFsxLustreResponse$
1423
+ ];
1424
+ var DescribeLocationFsxOntap$ = [9, n0, _DLFO,
1425
+ 0, () => DescribeLocationFsxOntapRequest$, () => DescribeLocationFsxOntapResponse$
1426
+ ];
1427
+ var DescribeLocationFsxOpenZfs$ = [9, n0, _DLFOZ,
1428
+ 0, () => DescribeLocationFsxOpenZfsRequest$, () => DescribeLocationFsxOpenZfsResponse$
1429
+ ];
1430
+ var DescribeLocationFsxWindows$ = [9, n0, _DLFW,
1431
+ 0, () => DescribeLocationFsxWindowsRequest$, () => DescribeLocationFsxWindowsResponse$
1432
+ ];
1433
+ var DescribeLocationHdfs$ = [9, n0, _DLH,
1434
+ 0, () => DescribeLocationHdfsRequest$, () => DescribeLocationHdfsResponse$
1435
+ ];
1436
+ var DescribeLocationNfs$ = [9, n0, _DLN,
1437
+ 0, () => DescribeLocationNfsRequest$, () => DescribeLocationNfsResponse$
1438
+ ];
1439
+ var DescribeLocationObjectStorage$ = [9, n0, _DLOS,
1440
+ 0, () => DescribeLocationObjectStorageRequest$, () => DescribeLocationObjectStorageResponse$
1441
+ ];
1442
+ var DescribeLocationS3$ = [9, n0, _DLS,
1443
+ 0, () => DescribeLocationS3Request$, () => DescribeLocationS3Response$
1444
+ ];
1445
+ var DescribeLocationSmb$ = [9, n0, _DLSe,
1446
+ 0, () => DescribeLocationSmbRequest$, () => DescribeLocationSmbResponse$
1447
+ ];
1448
+ var DescribeTask$ = [9, n0, _DTe,
1449
+ 0, () => DescribeTaskRequest$, () => DescribeTaskResponse$
1450
+ ];
1451
+ var DescribeTaskExecution$ = [9, n0, _DTE,
1452
+ 0, () => DescribeTaskExecutionRequest$, () => DescribeTaskExecutionResponse$
1453
+ ];
1454
+ var ListAgents$ = [9, n0, _LAi,
1455
+ 0, () => ListAgentsRequest$, () => ListAgentsResponse$
1456
+ ];
1457
+ var ListLocations$ = [9, n0, _LLi,
1458
+ 0, () => ListLocationsRequest$, () => ListLocationsResponse$
1459
+ ];
1460
+ var ListTagsForResource$ = [9, n0, _LTFR,
1461
+ 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1462
+ ];
1463
+ var ListTaskExecutions$ = [9, n0, _LTE,
1464
+ 0, () => ListTaskExecutionsRequest$, () => ListTaskExecutionsResponse$
1465
+ ];
1466
+ var ListTasks$ = [9, n0, _LTi,
1467
+ 0, () => ListTasksRequest$, () => ListTasksResponse$
1468
+ ];
1469
+ var StartTaskExecution$ = [9, n0, _STE,
1470
+ 0, () => StartTaskExecutionRequest$, () => StartTaskExecutionResponse$
1471
+ ];
1472
+ var TagResource$ = [9, n0, _TR,
1473
+ 0, () => TagResourceRequest$, () => TagResourceResponse$
1474
+ ];
1475
+ var UntagResource$ = [9, n0, _UR,
1476
+ 0, () => UntagResourceRequest$, () => UntagResourceResponse$
1477
+ ];
1478
+ var UpdateAgent$ = [9, n0, _UA,
1479
+ 0, () => UpdateAgentRequest$, () => UpdateAgentResponse$
1480
+ ];
1481
+ var UpdateLocationAzureBlob$ = [9, n0, _ULAB,
1482
+ 0, () => UpdateLocationAzureBlobRequest$, () => UpdateLocationAzureBlobResponse$
1483
+ ];
1484
+ var UpdateLocationEfs$ = [9, n0, _ULE,
1485
+ 0, () => UpdateLocationEfsRequest$, () => UpdateLocationEfsResponse$
1486
+ ];
1487
+ var UpdateLocationFsxLustre$ = [9, n0, _ULFL,
1488
+ 0, () => UpdateLocationFsxLustreRequest$, () => UpdateLocationFsxLustreResponse$
1489
+ ];
1490
+ var UpdateLocationFsxOntap$ = [9, n0, _ULFO,
1491
+ 0, () => UpdateLocationFsxOntapRequest$, () => UpdateLocationFsxOntapResponse$
1492
+ ];
1493
+ var UpdateLocationFsxOpenZfs$ = [9, n0, _ULFOZ,
1494
+ 0, () => UpdateLocationFsxOpenZfsRequest$, () => UpdateLocationFsxOpenZfsResponse$
1495
+ ];
1496
+ var UpdateLocationFsxWindows$ = [9, n0, _ULFW,
1497
+ 0, () => UpdateLocationFsxWindowsRequest$, () => UpdateLocationFsxWindowsResponse$
1498
+ ];
1499
+ var UpdateLocationHdfs$ = [9, n0, _ULH,
1500
+ 0, () => UpdateLocationHdfsRequest$, () => UpdateLocationHdfsResponse$
1501
+ ];
1502
+ var UpdateLocationNfs$ = [9, n0, _ULN,
1503
+ 0, () => UpdateLocationNfsRequest$, () => UpdateLocationNfsResponse$
1504
+ ];
1505
+ var UpdateLocationObjectStorage$ = [9, n0, _ULOS,
1506
+ 0, () => UpdateLocationObjectStorageRequest$, () => UpdateLocationObjectStorageResponse$
1507
+ ];
1508
+ var UpdateLocationS3$ = [9, n0, _ULS,
1509
+ 0, () => UpdateLocationS3Request$, () => UpdateLocationS3Response$
1510
+ ];
1511
+ var UpdateLocationSmb$ = [9, n0, _ULSp,
1512
+ 0, () => UpdateLocationSmbRequest$, () => UpdateLocationSmbResponse$
1513
+ ];
1514
+ var UpdateTask$ = [9, n0, _UT,
1515
+ 0, () => UpdateTaskRequest$, () => UpdateTaskResponse$
1516
+ ];
1517
+ var UpdateTaskExecution$ = [9, n0, _UTE,
1518
+ 0, () => UpdateTaskExecutionRequest$, () => UpdateTaskExecutionResponse$
1519
+ ];
1520
+
1521
+ const getRuntimeConfig$1 = (config) => {
1522
+ return {
1523
+ apiVersion: "2018-11-09",
1524
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1525
+ base64Encoder: config?.base64Encoder ?? toBase64,
1526
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1527
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1528
+ extensions: config?.extensions ?? [],
1529
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultDataSyncHttpAuthSchemeProvider,
1530
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1531
+ {
1532
+ schemeId: "aws.auth#sigv4",
1533
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1534
+ signer: new AwsSdkSigV4Signer(),
1535
+ },
1536
+ ],
1537
+ logger: config?.logger ?? new NoOpLogger(),
1538
+ protocol: config?.protocol ?? AwsJson1_1Protocol,
1539
+ protocolSettings: config?.protocolSettings ?? {
1540
+ defaultNamespace: "com.amazonaws.datasync",
1541
+ errorTypeRegistries,
1542
+ version: "2018-11-09",
1543
+ serviceTarget: "FmrsService",
1544
+ },
1545
+ serviceId: config?.serviceId ?? "DataSync",
1546
+ urlParser: config?.urlParser ?? parseUrl,
1547
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1548
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1549
+ };
1550
+ };
1551
+
1552
+ const getRuntimeConfig = (config) => {
1553
+ emitWarningIfUnsupportedVersion(process.version);
1554
+ const defaultsMode = resolveDefaultsModeConfig(config);
1555
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1556
+ const clientSharedValues = getRuntimeConfig$1(config);
1557
+ emitWarningIfUnsupportedVersion$1(process.version);
1558
+ const loaderConfig = {
1559
+ profile: config?.profile,
1560
+ logger: clientSharedValues.logger,
1561
+ };
1562
+ return {
1563
+ ...clientSharedValues,
1564
+ ...config,
1565
+ runtime: "node",
1566
+ defaultsMode,
1567
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1568
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1569
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1570
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1571
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1572
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1573
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1574
+ retryMode: config?.retryMode ??
1575
+ loadConfig({
1576
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1577
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1578
+ }, config),
1579
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1580
+ streamCollector: config?.streamCollector ?? streamCollector,
1581
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1582
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1583
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1584
+ };
1585
+ };
1586
+
34
1587
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1588
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1589
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1036,104 +2589,313 @@ const TaskFilterName = {
1036
2589
  LocationId: "LocationId",
1037
2590
  };
1038
2591
 
2592
+ exports.AgentListEntry$ = AgentListEntry$;
1039
2593
  exports.AgentStatus = AgentStatus;
1040
2594
  exports.Atime = Atime;
1041
2595
  exports.AzureAccessTier = AzureAccessTier;
1042
2596
  exports.AzureBlobAuthenticationType = AzureBlobAuthenticationType;
2597
+ exports.AzureBlobSasConfiguration$ = AzureBlobSasConfiguration$;
1043
2598
  exports.AzureBlobType = AzureBlobType;
2599
+ exports.CancelTaskExecution$ = CancelTaskExecution$;
1044
2600
  exports.CancelTaskExecutionCommand = CancelTaskExecutionCommand;
2601
+ exports.CancelTaskExecutionRequest$ = CancelTaskExecutionRequest$;
2602
+ exports.CancelTaskExecutionResponse$ = CancelTaskExecutionResponse$;
2603
+ exports.CmkSecretConfig$ = CmkSecretConfig$;
2604
+ exports.CreateAgent$ = CreateAgent$;
1045
2605
  exports.CreateAgentCommand = CreateAgentCommand;
2606
+ exports.CreateAgentRequest$ = CreateAgentRequest$;
2607
+ exports.CreateAgentResponse$ = CreateAgentResponse$;
2608
+ exports.CreateLocationAzureBlob$ = CreateLocationAzureBlob$;
1046
2609
  exports.CreateLocationAzureBlobCommand = CreateLocationAzureBlobCommand;
2610
+ exports.CreateLocationAzureBlobRequest$ = CreateLocationAzureBlobRequest$;
2611
+ exports.CreateLocationAzureBlobResponse$ = CreateLocationAzureBlobResponse$;
2612
+ exports.CreateLocationEfs$ = CreateLocationEfs$;
1047
2613
  exports.CreateLocationEfsCommand = CreateLocationEfsCommand;
2614
+ exports.CreateLocationEfsRequest$ = CreateLocationEfsRequest$;
2615
+ exports.CreateLocationEfsResponse$ = CreateLocationEfsResponse$;
2616
+ exports.CreateLocationFsxLustre$ = CreateLocationFsxLustre$;
1048
2617
  exports.CreateLocationFsxLustreCommand = CreateLocationFsxLustreCommand;
2618
+ exports.CreateLocationFsxLustreRequest$ = CreateLocationFsxLustreRequest$;
2619
+ exports.CreateLocationFsxLustreResponse$ = CreateLocationFsxLustreResponse$;
2620
+ exports.CreateLocationFsxOntap$ = CreateLocationFsxOntap$;
1049
2621
  exports.CreateLocationFsxOntapCommand = CreateLocationFsxOntapCommand;
2622
+ exports.CreateLocationFsxOntapRequest$ = CreateLocationFsxOntapRequest$;
2623
+ exports.CreateLocationFsxOntapResponse$ = CreateLocationFsxOntapResponse$;
2624
+ exports.CreateLocationFsxOpenZfs$ = CreateLocationFsxOpenZfs$;
1050
2625
  exports.CreateLocationFsxOpenZfsCommand = CreateLocationFsxOpenZfsCommand;
2626
+ exports.CreateLocationFsxOpenZfsRequest$ = CreateLocationFsxOpenZfsRequest$;
2627
+ exports.CreateLocationFsxOpenZfsResponse$ = CreateLocationFsxOpenZfsResponse$;
2628
+ exports.CreateLocationFsxWindows$ = CreateLocationFsxWindows$;
1051
2629
  exports.CreateLocationFsxWindowsCommand = CreateLocationFsxWindowsCommand;
2630
+ exports.CreateLocationFsxWindowsRequest$ = CreateLocationFsxWindowsRequest$;
2631
+ exports.CreateLocationFsxWindowsResponse$ = CreateLocationFsxWindowsResponse$;
2632
+ exports.CreateLocationHdfs$ = CreateLocationHdfs$;
1052
2633
  exports.CreateLocationHdfsCommand = CreateLocationHdfsCommand;
2634
+ exports.CreateLocationHdfsRequest$ = CreateLocationHdfsRequest$;
2635
+ exports.CreateLocationHdfsResponse$ = CreateLocationHdfsResponse$;
2636
+ exports.CreateLocationNfs$ = CreateLocationNfs$;
1053
2637
  exports.CreateLocationNfsCommand = CreateLocationNfsCommand;
2638
+ exports.CreateLocationNfsRequest$ = CreateLocationNfsRequest$;
2639
+ exports.CreateLocationNfsResponse$ = CreateLocationNfsResponse$;
2640
+ exports.CreateLocationObjectStorage$ = CreateLocationObjectStorage$;
1054
2641
  exports.CreateLocationObjectStorageCommand = CreateLocationObjectStorageCommand;
2642
+ exports.CreateLocationObjectStorageRequest$ = CreateLocationObjectStorageRequest$;
2643
+ exports.CreateLocationObjectStorageResponse$ = CreateLocationObjectStorageResponse$;
2644
+ exports.CreateLocationS3$ = CreateLocationS3$;
1055
2645
  exports.CreateLocationS3Command = CreateLocationS3Command;
2646
+ exports.CreateLocationS3Request$ = CreateLocationS3Request$;
2647
+ exports.CreateLocationS3Response$ = CreateLocationS3Response$;
2648
+ exports.CreateLocationSmb$ = CreateLocationSmb$;
1056
2649
  exports.CreateLocationSmbCommand = CreateLocationSmbCommand;
2650
+ exports.CreateLocationSmbRequest$ = CreateLocationSmbRequest$;
2651
+ exports.CreateLocationSmbResponse$ = CreateLocationSmbResponse$;
2652
+ exports.CreateTask$ = CreateTask$;
1057
2653
  exports.CreateTaskCommand = CreateTaskCommand;
2654
+ exports.CreateTaskRequest$ = CreateTaskRequest$;
2655
+ exports.CreateTaskResponse$ = CreateTaskResponse$;
2656
+ exports.CustomSecretConfig$ = CustomSecretConfig$;
1058
2657
  exports.DataSync = DataSync;
1059
2658
  exports.DataSyncClient = DataSyncClient;
2659
+ exports.DataSyncServiceException = DataSyncServiceException;
2660
+ exports.DataSyncServiceException$ = DataSyncServiceException$;
2661
+ exports.DeleteAgent$ = DeleteAgent$;
1060
2662
  exports.DeleteAgentCommand = DeleteAgentCommand;
2663
+ exports.DeleteAgentRequest$ = DeleteAgentRequest$;
2664
+ exports.DeleteAgentResponse$ = DeleteAgentResponse$;
2665
+ exports.DeleteLocation$ = DeleteLocation$;
1061
2666
  exports.DeleteLocationCommand = DeleteLocationCommand;
2667
+ exports.DeleteLocationRequest$ = DeleteLocationRequest$;
2668
+ exports.DeleteLocationResponse$ = DeleteLocationResponse$;
2669
+ exports.DeleteTask$ = DeleteTask$;
1062
2670
  exports.DeleteTaskCommand = DeleteTaskCommand;
2671
+ exports.DeleteTaskRequest$ = DeleteTaskRequest$;
2672
+ exports.DeleteTaskResponse$ = DeleteTaskResponse$;
2673
+ exports.DescribeAgent$ = DescribeAgent$;
1063
2674
  exports.DescribeAgentCommand = DescribeAgentCommand;
2675
+ exports.DescribeAgentRequest$ = DescribeAgentRequest$;
2676
+ exports.DescribeAgentResponse$ = DescribeAgentResponse$;
2677
+ exports.DescribeLocationAzureBlob$ = DescribeLocationAzureBlob$;
1064
2678
  exports.DescribeLocationAzureBlobCommand = DescribeLocationAzureBlobCommand;
2679
+ exports.DescribeLocationAzureBlobRequest$ = DescribeLocationAzureBlobRequest$;
2680
+ exports.DescribeLocationAzureBlobResponse$ = DescribeLocationAzureBlobResponse$;
2681
+ exports.DescribeLocationEfs$ = DescribeLocationEfs$;
1065
2682
  exports.DescribeLocationEfsCommand = DescribeLocationEfsCommand;
2683
+ exports.DescribeLocationEfsRequest$ = DescribeLocationEfsRequest$;
2684
+ exports.DescribeLocationEfsResponse$ = DescribeLocationEfsResponse$;
2685
+ exports.DescribeLocationFsxLustre$ = DescribeLocationFsxLustre$;
1066
2686
  exports.DescribeLocationFsxLustreCommand = DescribeLocationFsxLustreCommand;
2687
+ exports.DescribeLocationFsxLustreRequest$ = DescribeLocationFsxLustreRequest$;
2688
+ exports.DescribeLocationFsxLustreResponse$ = DescribeLocationFsxLustreResponse$;
2689
+ exports.DescribeLocationFsxOntap$ = DescribeLocationFsxOntap$;
1067
2690
  exports.DescribeLocationFsxOntapCommand = DescribeLocationFsxOntapCommand;
2691
+ exports.DescribeLocationFsxOntapRequest$ = DescribeLocationFsxOntapRequest$;
2692
+ exports.DescribeLocationFsxOntapResponse$ = DescribeLocationFsxOntapResponse$;
2693
+ exports.DescribeLocationFsxOpenZfs$ = DescribeLocationFsxOpenZfs$;
1068
2694
  exports.DescribeLocationFsxOpenZfsCommand = DescribeLocationFsxOpenZfsCommand;
2695
+ exports.DescribeLocationFsxOpenZfsRequest$ = DescribeLocationFsxOpenZfsRequest$;
2696
+ exports.DescribeLocationFsxOpenZfsResponse$ = DescribeLocationFsxOpenZfsResponse$;
2697
+ exports.DescribeLocationFsxWindows$ = DescribeLocationFsxWindows$;
1069
2698
  exports.DescribeLocationFsxWindowsCommand = DescribeLocationFsxWindowsCommand;
2699
+ exports.DescribeLocationFsxWindowsRequest$ = DescribeLocationFsxWindowsRequest$;
2700
+ exports.DescribeLocationFsxWindowsResponse$ = DescribeLocationFsxWindowsResponse$;
2701
+ exports.DescribeLocationHdfs$ = DescribeLocationHdfs$;
1070
2702
  exports.DescribeLocationHdfsCommand = DescribeLocationHdfsCommand;
2703
+ exports.DescribeLocationHdfsRequest$ = DescribeLocationHdfsRequest$;
2704
+ exports.DescribeLocationHdfsResponse$ = DescribeLocationHdfsResponse$;
2705
+ exports.DescribeLocationNfs$ = DescribeLocationNfs$;
1071
2706
  exports.DescribeLocationNfsCommand = DescribeLocationNfsCommand;
2707
+ exports.DescribeLocationNfsRequest$ = DescribeLocationNfsRequest$;
2708
+ exports.DescribeLocationNfsResponse$ = DescribeLocationNfsResponse$;
2709
+ exports.DescribeLocationObjectStorage$ = DescribeLocationObjectStorage$;
1072
2710
  exports.DescribeLocationObjectStorageCommand = DescribeLocationObjectStorageCommand;
2711
+ exports.DescribeLocationObjectStorageRequest$ = DescribeLocationObjectStorageRequest$;
2712
+ exports.DescribeLocationObjectStorageResponse$ = DescribeLocationObjectStorageResponse$;
2713
+ exports.DescribeLocationS3$ = DescribeLocationS3$;
1073
2714
  exports.DescribeLocationS3Command = DescribeLocationS3Command;
2715
+ exports.DescribeLocationS3Request$ = DescribeLocationS3Request$;
2716
+ exports.DescribeLocationS3Response$ = DescribeLocationS3Response$;
2717
+ exports.DescribeLocationSmb$ = DescribeLocationSmb$;
1074
2718
  exports.DescribeLocationSmbCommand = DescribeLocationSmbCommand;
2719
+ exports.DescribeLocationSmbRequest$ = DescribeLocationSmbRequest$;
2720
+ exports.DescribeLocationSmbResponse$ = DescribeLocationSmbResponse$;
2721
+ exports.DescribeTask$ = DescribeTask$;
1075
2722
  exports.DescribeTaskCommand = DescribeTaskCommand;
2723
+ exports.DescribeTaskExecution$ = DescribeTaskExecution$;
1076
2724
  exports.DescribeTaskExecutionCommand = DescribeTaskExecutionCommand;
2725
+ exports.DescribeTaskExecutionRequest$ = DescribeTaskExecutionRequest$;
2726
+ exports.DescribeTaskExecutionResponse$ = DescribeTaskExecutionResponse$;
2727
+ exports.DescribeTaskRequest$ = DescribeTaskRequest$;
2728
+ exports.DescribeTaskResponse$ = DescribeTaskResponse$;
2729
+ exports.Ec2Config$ = Ec2Config$;
1077
2730
  exports.EfsInTransitEncryption = EfsInTransitEncryption;
1078
2731
  exports.EndpointType = EndpointType;
2732
+ exports.FilterRule$ = FilterRule$;
1079
2733
  exports.FilterType = FilterType;
2734
+ exports.FsxProtocol$ = FsxProtocol$;
2735
+ exports.FsxProtocolNfs$ = FsxProtocolNfs$;
2736
+ exports.FsxProtocolSmb$ = FsxProtocolSmb$;
2737
+ exports.FsxUpdateProtocol$ = FsxUpdateProtocol$;
2738
+ exports.FsxUpdateProtocolSmb$ = FsxUpdateProtocolSmb$;
1080
2739
  exports.Gid = Gid;
1081
2740
  exports.HdfsAuthenticationType = HdfsAuthenticationType;
1082
2741
  exports.HdfsDataTransferProtection = HdfsDataTransferProtection;
2742
+ exports.HdfsNameNode$ = HdfsNameNode$;
1083
2743
  exports.HdfsRpcProtection = HdfsRpcProtection;
2744
+ exports.InternalException = InternalException;
2745
+ exports.InternalException$ = InternalException$;
2746
+ exports.InvalidRequestException = InvalidRequestException;
2747
+ exports.InvalidRequestException$ = InvalidRequestException$;
2748
+ exports.ListAgents$ = ListAgents$;
1084
2749
  exports.ListAgentsCommand = ListAgentsCommand;
2750
+ exports.ListAgentsRequest$ = ListAgentsRequest$;
2751
+ exports.ListAgentsResponse$ = ListAgentsResponse$;
2752
+ exports.ListLocations$ = ListLocations$;
1085
2753
  exports.ListLocationsCommand = ListLocationsCommand;
2754
+ exports.ListLocationsRequest$ = ListLocationsRequest$;
2755
+ exports.ListLocationsResponse$ = ListLocationsResponse$;
2756
+ exports.ListTagsForResource$ = ListTagsForResource$;
1086
2757
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2758
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2759
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2760
+ exports.ListTaskExecutions$ = ListTaskExecutions$;
1087
2761
  exports.ListTaskExecutionsCommand = ListTaskExecutionsCommand;
2762
+ exports.ListTaskExecutionsRequest$ = ListTaskExecutionsRequest$;
2763
+ exports.ListTaskExecutionsResponse$ = ListTaskExecutionsResponse$;
2764
+ exports.ListTasks$ = ListTasks$;
1088
2765
  exports.ListTasksCommand = ListTasksCommand;
2766
+ exports.ListTasksRequest$ = ListTasksRequest$;
2767
+ exports.ListTasksResponse$ = ListTasksResponse$;
2768
+ exports.LocationFilter$ = LocationFilter$;
1089
2769
  exports.LocationFilterName = LocationFilterName;
2770
+ exports.LocationListEntry$ = LocationListEntry$;
1090
2771
  exports.LogLevel = LogLevel;
2772
+ exports.ManagedSecretConfig$ = ManagedSecretConfig$;
1091
2773
  exports.ManifestAction = ManifestAction;
2774
+ exports.ManifestConfig$ = ManifestConfig$;
1092
2775
  exports.ManifestFormat = ManifestFormat;
1093
2776
  exports.Mtime = Mtime;
2777
+ exports.NfsMountOptions$ = NfsMountOptions$;
1094
2778
  exports.NfsVersion = NfsVersion;
1095
2779
  exports.ObjectStorageServerProtocol = ObjectStorageServerProtocol;
1096
2780
  exports.ObjectTags = ObjectTags;
1097
2781
  exports.ObjectVersionIds = ObjectVersionIds;
2782
+ exports.OnPremConfig$ = OnPremConfig$;
1098
2783
  exports.Operator = Operator;
2784
+ exports.Options$ = Options$;
1099
2785
  exports.OverwriteMode = OverwriteMode;
1100
2786
  exports.PhaseStatus = PhaseStatus;
2787
+ exports.Platform$ = Platform$;
1101
2788
  exports.PosixPermissions = PosixPermissions;
1102
2789
  exports.PreserveDeletedFiles = PreserveDeletedFiles;
1103
2790
  exports.PreserveDevices = PreserveDevices;
2791
+ exports.PrivateLinkConfig$ = PrivateLinkConfig$;
2792
+ exports.QopConfiguration$ = QopConfiguration$;
2793
+ exports.ReportDestination$ = ReportDestination$;
2794
+ exports.ReportDestinationS3$ = ReportDestinationS3$;
1104
2795
  exports.ReportLevel = ReportLevel;
1105
2796
  exports.ReportOutputType = ReportOutputType;
2797
+ exports.ReportOverride$ = ReportOverride$;
2798
+ exports.ReportOverrides$ = ReportOverrides$;
2799
+ exports.ReportResult$ = ReportResult$;
2800
+ exports.S3Config$ = S3Config$;
2801
+ exports.S3ManifestConfig$ = S3ManifestConfig$;
1106
2802
  exports.S3StorageClass = S3StorageClass;
1107
2803
  exports.ScheduleDisabledBy = ScheduleDisabledBy;
1108
2804
  exports.ScheduleStatus = ScheduleStatus;
1109
2805
  exports.SmbAuthenticationType = SmbAuthenticationType;
2806
+ exports.SmbMountOptions$ = SmbMountOptions$;
1110
2807
  exports.SmbSecurityDescriptorCopyFlags = SmbSecurityDescriptorCopyFlags;
1111
2808
  exports.SmbVersion = SmbVersion;
2809
+ exports.SourceManifestConfig$ = SourceManifestConfig$;
2810
+ exports.StartTaskExecution$ = StartTaskExecution$;
1112
2811
  exports.StartTaskExecutionCommand = StartTaskExecutionCommand;
2812
+ exports.StartTaskExecutionRequest$ = StartTaskExecutionRequest$;
2813
+ exports.StartTaskExecutionResponse$ = StartTaskExecutionResponse$;
2814
+ exports.TagListEntry$ = TagListEntry$;
2815
+ exports.TagResource$ = TagResource$;
1113
2816
  exports.TagResourceCommand = TagResourceCommand;
2817
+ exports.TagResourceRequest$ = TagResourceRequest$;
2818
+ exports.TagResourceResponse$ = TagResourceResponse$;
2819
+ exports.TaskExecutionFilesFailedDetail$ = TaskExecutionFilesFailedDetail$;
2820
+ exports.TaskExecutionFilesListedDetail$ = TaskExecutionFilesListedDetail$;
2821
+ exports.TaskExecutionFoldersFailedDetail$ = TaskExecutionFoldersFailedDetail$;
2822
+ exports.TaskExecutionFoldersListedDetail$ = TaskExecutionFoldersListedDetail$;
2823
+ exports.TaskExecutionListEntry$ = TaskExecutionListEntry$;
2824
+ exports.TaskExecutionResultDetail$ = TaskExecutionResultDetail$;
1114
2825
  exports.TaskExecutionStatus = TaskExecutionStatus;
2826
+ exports.TaskFilter$ = TaskFilter$;
1115
2827
  exports.TaskFilterName = TaskFilterName;
2828
+ exports.TaskListEntry$ = TaskListEntry$;
1116
2829
  exports.TaskMode = TaskMode;
1117
2830
  exports.TaskQueueing = TaskQueueing;
2831
+ exports.TaskReportConfig$ = TaskReportConfig$;
2832
+ exports.TaskSchedule$ = TaskSchedule$;
2833
+ exports.TaskScheduleDetails$ = TaskScheduleDetails$;
1118
2834
  exports.TaskStatus = TaskStatus;
1119
2835
  exports.TransferMode = TransferMode;
1120
2836
  exports.Uid = Uid;
2837
+ exports.UntagResource$ = UntagResource$;
1121
2838
  exports.UntagResourceCommand = UntagResourceCommand;
2839
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2840
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2841
+ exports.UpdateAgent$ = UpdateAgent$;
1122
2842
  exports.UpdateAgentCommand = UpdateAgentCommand;
2843
+ exports.UpdateAgentRequest$ = UpdateAgentRequest$;
2844
+ exports.UpdateAgentResponse$ = UpdateAgentResponse$;
2845
+ exports.UpdateLocationAzureBlob$ = UpdateLocationAzureBlob$;
1123
2846
  exports.UpdateLocationAzureBlobCommand = UpdateLocationAzureBlobCommand;
2847
+ exports.UpdateLocationAzureBlobRequest$ = UpdateLocationAzureBlobRequest$;
2848
+ exports.UpdateLocationAzureBlobResponse$ = UpdateLocationAzureBlobResponse$;
2849
+ exports.UpdateLocationEfs$ = UpdateLocationEfs$;
1124
2850
  exports.UpdateLocationEfsCommand = UpdateLocationEfsCommand;
2851
+ exports.UpdateLocationEfsRequest$ = UpdateLocationEfsRequest$;
2852
+ exports.UpdateLocationEfsResponse$ = UpdateLocationEfsResponse$;
2853
+ exports.UpdateLocationFsxLustre$ = UpdateLocationFsxLustre$;
1125
2854
  exports.UpdateLocationFsxLustreCommand = UpdateLocationFsxLustreCommand;
2855
+ exports.UpdateLocationFsxLustreRequest$ = UpdateLocationFsxLustreRequest$;
2856
+ exports.UpdateLocationFsxLustreResponse$ = UpdateLocationFsxLustreResponse$;
2857
+ exports.UpdateLocationFsxOntap$ = UpdateLocationFsxOntap$;
1126
2858
  exports.UpdateLocationFsxOntapCommand = UpdateLocationFsxOntapCommand;
2859
+ exports.UpdateLocationFsxOntapRequest$ = UpdateLocationFsxOntapRequest$;
2860
+ exports.UpdateLocationFsxOntapResponse$ = UpdateLocationFsxOntapResponse$;
2861
+ exports.UpdateLocationFsxOpenZfs$ = UpdateLocationFsxOpenZfs$;
1127
2862
  exports.UpdateLocationFsxOpenZfsCommand = UpdateLocationFsxOpenZfsCommand;
2863
+ exports.UpdateLocationFsxOpenZfsRequest$ = UpdateLocationFsxOpenZfsRequest$;
2864
+ exports.UpdateLocationFsxOpenZfsResponse$ = UpdateLocationFsxOpenZfsResponse$;
2865
+ exports.UpdateLocationFsxWindows$ = UpdateLocationFsxWindows$;
1128
2866
  exports.UpdateLocationFsxWindowsCommand = UpdateLocationFsxWindowsCommand;
2867
+ exports.UpdateLocationFsxWindowsRequest$ = UpdateLocationFsxWindowsRequest$;
2868
+ exports.UpdateLocationFsxWindowsResponse$ = UpdateLocationFsxWindowsResponse$;
2869
+ exports.UpdateLocationHdfs$ = UpdateLocationHdfs$;
1129
2870
  exports.UpdateLocationHdfsCommand = UpdateLocationHdfsCommand;
2871
+ exports.UpdateLocationHdfsRequest$ = UpdateLocationHdfsRequest$;
2872
+ exports.UpdateLocationHdfsResponse$ = UpdateLocationHdfsResponse$;
2873
+ exports.UpdateLocationNfs$ = UpdateLocationNfs$;
1130
2874
  exports.UpdateLocationNfsCommand = UpdateLocationNfsCommand;
2875
+ exports.UpdateLocationNfsRequest$ = UpdateLocationNfsRequest$;
2876
+ exports.UpdateLocationNfsResponse$ = UpdateLocationNfsResponse$;
2877
+ exports.UpdateLocationObjectStorage$ = UpdateLocationObjectStorage$;
1131
2878
  exports.UpdateLocationObjectStorageCommand = UpdateLocationObjectStorageCommand;
2879
+ exports.UpdateLocationObjectStorageRequest$ = UpdateLocationObjectStorageRequest$;
2880
+ exports.UpdateLocationObjectStorageResponse$ = UpdateLocationObjectStorageResponse$;
2881
+ exports.UpdateLocationS3$ = UpdateLocationS3$;
1132
2882
  exports.UpdateLocationS3Command = UpdateLocationS3Command;
2883
+ exports.UpdateLocationS3Request$ = UpdateLocationS3Request$;
2884
+ exports.UpdateLocationS3Response$ = UpdateLocationS3Response$;
2885
+ exports.UpdateLocationSmb$ = UpdateLocationSmb$;
1133
2886
  exports.UpdateLocationSmbCommand = UpdateLocationSmbCommand;
2887
+ exports.UpdateLocationSmbRequest$ = UpdateLocationSmbRequest$;
2888
+ exports.UpdateLocationSmbResponse$ = UpdateLocationSmbResponse$;
2889
+ exports.UpdateTask$ = UpdateTask$;
1134
2890
  exports.UpdateTaskCommand = UpdateTaskCommand;
2891
+ exports.UpdateTaskExecution$ = UpdateTaskExecution$;
1135
2892
  exports.UpdateTaskExecutionCommand = UpdateTaskExecutionCommand;
2893
+ exports.UpdateTaskExecutionRequest$ = UpdateTaskExecutionRequest$;
2894
+ exports.UpdateTaskExecutionResponse$ = UpdateTaskExecutionResponse$;
2895
+ exports.UpdateTaskRequest$ = UpdateTaskRequest$;
2896
+ exports.UpdateTaskResponse$ = UpdateTaskResponse$;
1136
2897
  exports.VerifyMode = VerifyMode;
2898
+ exports.errorTypeRegistries = errorTypeRegistries;
1137
2899
  exports.paginateListAgents = paginateListAgents;
1138
2900
  exports.paginateListLocations = paginateListLocations;
1139
2901
  exports.paginateListTagsForResource = paginateListTagsForResource;