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