@aws-sdk/client-transfer 3.986.0 → 3.988.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
@@ -15,7 +15,10 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
15
15
  var runtimeConfig = require('./runtimeConfig');
16
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
17
17
  var protocolHttp = require('@smithy/protocol-http');
18
+ var schemas_0 = require('./schemas/schemas_0');
18
19
  var utilWaiter = require('@smithy/util-waiter');
20
+ var errors = require('./models/errors');
21
+ var TransferServiceException = require('./models/TransferServiceException');
19
22
 
20
23
  const resolveClientEndpointParameters = (options) => {
21
24
  return Object.assign(options, {
@@ -111,2039 +114,6 @@ class TransferClient extends smithyClient.Client {
111
114
  }
112
115
  }
113
116
 
114
- class TransferServiceException extends smithyClient.ServiceException {
115
- constructor(options) {
116
- super(options);
117
- Object.setPrototypeOf(this, TransferServiceException.prototype);
118
- }
119
- }
120
-
121
- class AccessDeniedException extends TransferServiceException {
122
- name = "AccessDeniedException";
123
- $fault = "client";
124
- Message;
125
- constructor(opts) {
126
- super({
127
- name: "AccessDeniedException",
128
- $fault: "client",
129
- ...opts,
130
- });
131
- Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
- this.Message = opts.Message;
133
- }
134
- }
135
- class InternalServiceError extends TransferServiceException {
136
- name = "InternalServiceError";
137
- $fault = "server";
138
- Message;
139
- constructor(opts) {
140
- super({
141
- name: "InternalServiceError",
142
- $fault: "server",
143
- ...opts,
144
- });
145
- Object.setPrototypeOf(this, InternalServiceError.prototype);
146
- this.Message = opts.Message;
147
- }
148
- }
149
- class InvalidRequestException extends TransferServiceException {
150
- name = "InvalidRequestException";
151
- $fault = "client";
152
- Message;
153
- constructor(opts) {
154
- super({
155
- name: "InvalidRequestException",
156
- $fault: "client",
157
- ...opts,
158
- });
159
- Object.setPrototypeOf(this, InvalidRequestException.prototype);
160
- this.Message = opts.Message;
161
- }
162
- }
163
- class ResourceExistsException extends TransferServiceException {
164
- name = "ResourceExistsException";
165
- $fault = "client";
166
- Message;
167
- Resource;
168
- ResourceType;
169
- constructor(opts) {
170
- super({
171
- name: "ResourceExistsException",
172
- $fault: "client",
173
- ...opts,
174
- });
175
- Object.setPrototypeOf(this, ResourceExistsException.prototype);
176
- this.Message = opts.Message;
177
- this.Resource = opts.Resource;
178
- this.ResourceType = opts.ResourceType;
179
- }
180
- }
181
- class ResourceNotFoundException extends TransferServiceException {
182
- name = "ResourceNotFoundException";
183
- $fault = "client";
184
- Message;
185
- Resource;
186
- ResourceType;
187
- constructor(opts) {
188
- super({
189
- name: "ResourceNotFoundException",
190
- $fault: "client",
191
- ...opts,
192
- });
193
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
194
- this.Message = opts.Message;
195
- this.Resource = opts.Resource;
196
- this.ResourceType = opts.ResourceType;
197
- }
198
- }
199
- class ServiceUnavailableException extends TransferServiceException {
200
- name = "ServiceUnavailableException";
201
- $fault = "server";
202
- Message;
203
- constructor(opts) {
204
- super({
205
- name: "ServiceUnavailableException",
206
- $fault: "server",
207
- ...opts,
208
- });
209
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
210
- this.Message = opts.Message;
211
- }
212
- }
213
- class ThrottlingException extends TransferServiceException {
214
- name = "ThrottlingException";
215
- $fault = "client";
216
- RetryAfterSeconds;
217
- constructor(opts) {
218
- super({
219
- name: "ThrottlingException",
220
- $fault: "client",
221
- ...opts,
222
- });
223
- Object.setPrototypeOf(this, ThrottlingException.prototype);
224
- this.RetryAfterSeconds = opts.RetryAfterSeconds;
225
- }
226
- }
227
- class InvalidNextTokenException extends TransferServiceException {
228
- name = "InvalidNextTokenException";
229
- $fault = "client";
230
- Message;
231
- constructor(opts) {
232
- super({
233
- name: "InvalidNextTokenException",
234
- $fault: "client",
235
- ...opts,
236
- });
237
- Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
238
- this.Message = opts.Message;
239
- }
240
- }
241
- class ConflictException extends TransferServiceException {
242
- name = "ConflictException";
243
- $fault = "client";
244
- Message;
245
- constructor(opts) {
246
- super({
247
- name: "ConflictException",
248
- $fault: "client",
249
- ...opts,
250
- });
251
- Object.setPrototypeOf(this, ConflictException.prototype);
252
- this.Message = opts.Message;
253
- }
254
- }
255
-
256
- const _A = "Access";
257
- const _AA = "ApplicationArn";
258
- const _AAI = "AddressAllocationIds";
259
- const _AAMCC = "As2AsyncMdnConnectorConfig";
260
- const _AC = "As2Config";
261
- const _ACC = "As2ConnectorConfig";
262
- const _AD = "ActiveDate";
263
- const _ADE = "AccessDeniedException";
264
- const _AE = "AccessEndpoint";
265
- const _AI = "AgreementId";
266
- const _AIs = "As2Id";
267
- const _AMC = "AsyncMdnConfig";
268
- const _AR = "AccessRole";
269
- const _ASMEIA = "As2ServiceManagedEgressIpAddresses";
270
- const _AT = "As2Transports";
271
- const _Ac = "Accesses";
272
- const _Ag = "Agreement";
273
- const _Agr = "Agreements";
274
- const _Ar = "Arn";
275
- const _B = "Bucket";
276
- const _BASI = "BasicAuthSecretId";
277
- const _BD = "BaseDirectory";
278
- const _C = "Compression";
279
- const _CA = "CreateAccess";
280
- const _CAR = "CreateAccessRequest";
281
- const _CARr = "CreateAccessResponse";
282
- const _CARre = "CreateAgreementRequest";
283
- const _CARrea = "CreateAgreementResponse";
284
- const _CAr = "CreateAgreement";
285
- const _CBT = "CertificateBodyType";
286
- const _CC = "CertificateChain";
287
- const _CCR = "CreateConnectorRequest";
288
- const _CCRr = "CreateConnectorResponse";
289
- const _CCT = "CertificateChainType";
290
- const _CCr = "CreateConnector";
291
- const _CD = "CustomDirectories";
292
- const _CDT = "CustomDirectoriesType";
293
- const _CE = "ConflictException";
294
- const _CEC = "ConnectorEgressConfig";
295
- const _CFTR = "ConnectorFileTransferResult";
296
- const _CFTRo = "ConnectorFileTransferResults";
297
- const _CHH = "CustomHttpHeader";
298
- const _CHHKT = "CustomHttpHeaderKeyType";
299
- const _CHHVT = "CustomHttpHeaderValueType";
300
- const _CHHu = "CustomHttpHeaders";
301
- const _CI = "ConnectorId";
302
- const _CIe = "CertificateIds";
303
- const _CIer = "CertificateId";
304
- const _CP = "CreateProfile";
305
- const _CPR = "CreateProfileRequest";
306
- const _CPRr = "CreateProfileResponse";
307
- const _CS = "CreateServer";
308
- const _CSD = "CopyStepDetails";
309
- const _CSDu = "CustomStepDetails";
310
- const _CSR = "CreateServerRequest";
311
- const _CSRr = "CreateServerResponse";
312
- const _CU = "CreateUser";
313
- const _CUR = "CreateUserRequest";
314
- const _CURr = "CreateUserResponse";
315
- const _CVLEC = "ConnectorVpcLatticeEgressConfig";
316
- const _CW = "CreateWorkflow";
317
- const _CWA = "CreateWebApp";
318
- const _CWAR = "CreateWebAppRequest";
319
- const _CWARr = "CreateWebAppResponse";
320
- const _CWR = "CreateWorkflowRequest";
321
- const _CWRr = "CreateWorkflowResponse";
322
- const _Ce = "Certificate";
323
- const _Cer = "Certificates";
324
- const _Co = "Connector";
325
- const _Con = "Connectors";
326
- const _D = "Description";
327
- const _DA = "DescribedAccess";
328
- const _DAR = "DeleteAccessRequest";
329
- const _DARe = "DeleteAgreementRequest";
330
- const _DARes = "DescribeAccessRequest";
331
- const _DAResc = "DescribeAccessResponse";
332
- const _DARescr = "DescribeAgreementRequest";
333
- const _DARescri = "DescribeAgreementResponse";
334
- const _DAe = "DescribedAgreement";
335
- const _DAel = "DeleteAccess";
336
- const _DAele = "DeleteAgreement";
337
- const _DAes = "DescribeAccess";
338
- const _DAesc = "DescribeAgreement";
339
- const _DC = "DescribedCertificate";
340
- const _DCEC = "DescribedConnectorEgressConfig";
341
- const _DCR = "DeleteCertificateRequest";
342
- const _DCRe = "DeleteConnectorRequest";
343
- const _DCRes = "DescribeCertificateRequest";
344
- const _DCResc = "DescribeCertificateResponse";
345
- const _DCRescr = "DescribeConnectorRequest";
346
- const _DCRescri = "DescribeConnectorResponse";
347
- const _DCVLEC = "DescribedConnectorVpcLatticeEgressConfig";
348
- const _DCe = "DescribedConnector";
349
- const _DCel = "DeleteCertificate";
350
- const _DCele = "DeleteConnector";
351
- const _DCes = "DescribeCertificate";
352
- const _DCesc = "DescribeConnector";
353
- const _DE = "DescribedExecution";
354
- const _DED = "DescribedEndpointDetails";
355
- const _DER = "DescribeExecutionRequest";
356
- const _DERe = "DescribeExecutionResponse";
357
- const _DEe = "DescribeExecution";
358
- const _DFL = "DestinationFileLocation";
359
- const _DHK = "DescribedHostKey";
360
- const _DHKR = "DeleteHostKeyRequest";
361
- const _DHKRe = "DescribeHostKeyRequest";
362
- const _DHKRes = "DescribeHostKeyResponse";
363
- const _DHKe = "DeleteHostKey";
364
- const _DHKes = "DescribeHostKey";
365
- const _DI = "DateImported";
366
- const _DICC = "DescribedIdentityCenterConfig";
367
- const _DIPD = "DescribedIdentityProviderDetails";
368
- const _DIe = "DeleteId";
369
- const _DIi = "DirectoryId";
370
- const _DLO = "DirectoryListingOptimization";
371
- const _DP = "DescribedProfile";
372
- const _DPR = "DeleteProfileRequest";
373
- const _DPRe = "DescribeProfileRequest";
374
- const _DPRes = "DescribeProfileResponse";
375
- const _DPe = "DeletePath";
376
- const _DPel = "DeleteProfile";
377
- const _DPes = "DescribeProfile";
378
- const _DS = "DescribedServer";
379
- const _DSD = "DecryptStepDetails";
380
- const _DSDe = "DeleteStepDetails";
381
- const _DSP = "DescribedSecurityPolicy";
382
- const _DSPK = "DeleteSshPublicKey";
383
- const _DSPKR = "DeleteSshPublicKeyRequest";
384
- const _DSPR = "DescribeSecurityPolicyRequest";
385
- const _DSPRe = "DescribeSecurityPolicyResponse";
386
- const _DSPe = "DescribeSecurityPolicy";
387
- const _DSR = "DeleteServerRequest";
388
- const _DSRe = "DescribeServerRequest";
389
- const _DSRes = "DescribeServerResponse";
390
- const _DSe = "DeleteServer";
391
- const _DSes = "DescribeServer";
392
- const _DU = "DescribedUser";
393
- const _DUR = "DeleteUserRequest";
394
- const _DURe = "DescribeUserRequest";
395
- const _DURes = "DescribeUserResponse";
396
- const _DUe = "DeleteUser";
397
- const _DUes = "DescribeUser";
398
- const _DW = "DescribedWorkflow";
399
- const _DWA = "DescribedWebApp";
400
- const _DWAC = "DescribedWebAppCustomization";
401
- const _DWACR = "DeleteWebAppCustomizationRequest";
402
- const _DWACRe = "DescribeWebAppCustomizationRequest";
403
- const _DWACRes = "DescribeWebAppCustomizationResponse";
404
- const _DWACe = "DeleteWebAppCustomization";
405
- const _DWACes = "DescribeWebAppCustomization";
406
- const _DWAED = "DescribedWebAppEndpointDetails";
407
- const _DWAIPD = "DescribedWebAppIdentityProviderDetails";
408
- const _DWAR = "DeleteWebAppRequest";
409
- const _DWARe = "DescribeWebAppRequest";
410
- const _DWARes = "DescribeWebAppResponse";
411
- const _DWAVC = "DescribedWebAppVpcConfig";
412
- const _DWAe = "DeleteWebApp";
413
- const _DWAes = "DescribeWebApp";
414
- const _DWR = "DeleteWorkflowRequest";
415
- const _DWRe = "DescribeWorkflowRequest";
416
- const _DWRes = "DescribeWorkflowResponse";
417
- const _DWe = "DeleteWorkflow";
418
- const _DWes = "DescribeWorkflow";
419
- const _Do = "Domain";
420
- const _E = "Execution";
421
- const _EA = "EncryptionAlgorithm";
422
- const _EC = "EgressConfig";
423
- const _ED = "EndpointDetails";
424
- const _EE = "ExecutionError";
425
- const _EFL = "EfsFileLocation";
426
- const _EI = "ExternalId";
427
- const _EIx = "ExecutionId";
428
- const _EM = "ErrorMessage";
429
- const _EMS = "EnforceMessageSigning";
430
- const _ER = "ExecutionRole";
431
- const _ERx = "ExecutionResults";
432
- const _ESR = "ExecutionStepResult";
433
- const _ESRx = "ExecutionStepResults";
434
- const _ET = "EndpointType";
435
- const _ETg = "EgressType";
436
- const _En = "Entry";
437
- const _Er = "Error";
438
- const _Et = "Etag";
439
- const _Ex = "Executions";
440
- const _F = "Fips";
441
- const _FC = "FailureCode";
442
- const _FF = "FaviconFile";
443
- const _FFD = "FailedFilesDirectory";
444
- const _FL = "FileLocation";
445
- const _FM = "FailureMessage";
446
- const _FP = "FilePath";
447
- const _FSI = "FileSystemId";
448
- const _FTR = "FileTransferResults";
449
- const _Fi = "Fingerprint";
450
- const _Fu = "Function";
451
- const _G = "Gid";
452
- const _HD = "HomeDirectory";
453
- const _HDM = "HomeDirectoryMappings";
454
- const _HDME = "HomeDirectoryMapEntry";
455
- const _HDT = "HomeDirectoryType";
456
- const _HK = "HostKey";
457
- const _HKB = "HostKeyBody";
458
- const _HKF = "HostKeyFingerprint";
459
- const _HKI = "HostKeyId";
460
- const _HKo = "HostKeys";
461
- const _IA = "InstanceArn";
462
- const _IAT = "IpAddressType";
463
- const _IC = "ImportCertificate";
464
- const _ICC = "IdentityCenterConfig";
465
- const _ICR = "ImportCertificateRequest";
466
- const _ICRm = "ImportCertificateResponse";
467
- const _ID = "InactiveDate";
468
- const _IFL = "InitialFileLocation";
469
- const _IFLn = "InputFileLocation";
470
- const _IHK = "ImportHostKey";
471
- const _IHKR = "ImportHostKeyRequest";
472
- const _IHKRm = "ImportHostKeyResponse";
473
- const _INTE = "InvalidNextTokenException";
474
- const _IPD = "IdentityProviderDetails";
475
- const _IPT = "IdentityProviderType";
476
- const _IR = "InvocationRole";
477
- const _IRE = "InvalidRequestException";
478
- const _ISE = "InternalServiceError";
479
- const _ISPK = "ImportSshPublicKey";
480
- const _ISPKR = "ImportSshPublicKeyRequest";
481
- const _ISPKRm = "ImportSshPublicKeyResponse";
482
- const _K = "Key";
483
- const _LA = "ListedAccess";
484
- const _LAR = "ListAccessesRequest";
485
- const _LARi = "ListAccessesResponse";
486
- const _LARis = "ListAgreementsRequest";
487
- const _LARist = "ListAgreementsResponse";
488
- const _LAi = "ListedAgreement";
489
- const _LAis = "ListedAccesses";
490
- const _LAist = "ListedAgreements";
491
- const _LAistc = "ListAccesses";
492
- const _LAistg = "ListAgreements";
493
- const _LC = "LoggingConfiguration";
494
- const _LCR = "ListCertificatesRequest";
495
- const _LCRi = "ListCertificatesResponse";
496
- const _LCRis = "ListConnectorsRequest";
497
- const _LCRist = "ListConnectorsResponse";
498
- const _LCi = "ListedCertificate";
499
- const _LCis = "ListedConnector";
500
- const _LCist = "ListedCertificates";
501
- const _LCiste = "ListedConnectors";
502
- const _LCister = "ListCertificates";
503
- const _LCisto = "ListConnectors";
504
- const _LDP = "LocalDirectoryPath";
505
- const _LE = "ListedExecution";
506
- const _LER = "ListExecutionsRequest";
507
- const _LERi = "ListExecutionsResponse";
508
- const _LEi = "ListedExecutions";
509
- const _LEis = "ListExecutions";
510
- const _LF = "LogoFile";
511
- const _LFTR = "ListFileTransferResults";
512
- const _LFTRR = "ListFileTransferResultsRequest";
513
- const _LFTRRi = "ListFileTransferResultsResponse";
514
- const _LGN = "LogGroupName";
515
- const _LHK = "ListedHostKey";
516
- const _LHKR = "ListHostKeysRequest";
517
- const _LHKRi = "ListHostKeysResponse";
518
- const _LHKi = "ListedHostKeys";
519
- const _LHKis = "ListHostKeys";
520
- const _LI = "ListingId";
521
- const _LP = "ListedProfile";
522
- const _LPI = "LocalProfileId";
523
- const _LPR = "ListProfilesRequest";
524
- const _LPRi = "ListProfilesResponse";
525
- const _LPi = "ListedProfiles";
526
- const _LPis = "ListProfiles";
527
- const _LR = "LoggingRole";
528
- const _LS = "ListedServer";
529
- const _LSP = "ListSecurityPolicies";
530
- const _LSPR = "ListSecurityPoliciesRequest";
531
- const _LSPRi = "ListSecurityPoliciesResponse";
532
- const _LSR = "ListServersRequest";
533
- const _LSRi = "ListServersResponse";
534
- const _LSi = "ListedServers";
535
- const _LSis = "ListServers";
536
- const _LTFR = "ListTagsForResource";
537
- const _LTFRR = "ListTagsForResourceRequest";
538
- const _LTFRRi = "ListTagsForResourceResponse";
539
- const _LU = "ListedUser";
540
- const _LUR = "ListUsersRequest";
541
- const _LURi = "ListUsersResponse";
542
- const _LUi = "ListedUsers";
543
- const _LUis = "ListUsers";
544
- const _LW = "ListedWorkflow";
545
- const _LWA = "ListedWebApp";
546
- const _LWAR = "ListWebAppsRequest";
547
- const _LWARi = "ListWebAppsResponse";
548
- const _LWAi = "ListedWebApps";
549
- const _LWAis = "ListWebApps";
550
- const _LWR = "ListWorkflowsRequest";
551
- const _LWRi = "ListWorkflowsResponse";
552
- const _LWi = "ListedWorkflows";
553
- const _LWis = "ListWorkflows";
554
- const _M = "Message";
555
- const _MCC = "MaxConcurrentConnections";
556
- const _MFD = "MdnFilesDirectory";
557
- const _MI = "MaxItems";
558
- const _MIo = "MoveId";
559
- const _MR = "MdnResponse";
560
- const _MRa = "MaxResults";
561
- const _MS = "MessageSubject";
562
- const _MSA = "MdnSigningAlgorithm";
563
- const _N = "Name";
564
- const _NAD = "NotAfterDate";
565
- const _NBD = "NotBeforeDate";
566
- const _NT = "NextToken";
567
- const _O = "Outputs";
568
- const _ODP = "OutputDirectoryPath";
569
- const _OE = "OverwriteExisting";
570
- const _OES = "OnExceptionSteps";
571
- const _OFN = "OutputFileName";
572
- const _OPU = "OnPartialUpload";
573
- const _OPUWD = "OnPartialUploadWorkflowDetails";
574
- const _OU = "OnUpload";
575
- const _OUWD = "OnUploadWorkflowDetails";
576
- const _P = "Policy";
577
- const _PALB = "PostAuthenticationLoginBanner";
578
- const _PALBr = "PreAuthenticationLoginBanner";
579
- const _PCT = "PreserveContentType";
580
- const _PD = "ProtocolDetails";
581
- const _PF = "PreserveFilename";
582
- const _PFD = "PayloadFilesDirectory";
583
- const _PI = "ProfileId";
584
- const _PIa = "PassiveIp";
585
- const _PK = "PrivateKey";
586
- const _PKT = "PrivateKeyType";
587
- const _PN = "PortNumber";
588
- const _PP = "PosixProfile";
589
- const _PPI = "PartnerProfileId";
590
- const _PT = "ProfileType";
591
- const _Pa = "Path";
592
- const _Pr = "Protocols";
593
- const _Pro = "Profile";
594
- const _Prof = "Profiles";
595
- const _Prov = "Provisioned";
596
- const _R = "Role";
597
- const _RA = "Retry-After";
598
- const _RAS = "RetryAfterSeconds";
599
- const _RCA = "ResourceConfigurationArn";
600
- const _RDP = "RemoteDirectoryPath";
601
- const _REE = "ResourceExistsException";
602
- const _RFP = "RetrieveFilePaths";
603
- const _RNFE = "ResourceNotFoundException";
604
- const _RT = "ResourceType";
605
- const _Re = "Results";
606
- const _Res = "Resource";
607
- const _Resp = "Response";
608
- const _S = "Status";
609
- const _SA = "SigningAlgorithm";
610
- const _SAM = "SftpAuthenticationMethods";
611
- const _SC = "StatusCode";
612
- const _SCC = "SftpConnectorConfig";
613
- const _SCCD = "SftpConnectorConnectionDetails";
614
- const _SCD = "SftpConnectionDetails";
615
- const _SCf = "SftpConfig";
616
- const _SCs = "SshCiphers";
617
- const _SDL = "StartDirectoryListing";
618
- const _SDLR = "StartDirectoryListingRequest";
619
- const _SDLRt = "StartDirectoryListingResponse";
620
- const _SFD = "StatusFilesDirectory";
621
- const _SFL = "SourceFileLocation";
622
- const _SFLi = "S3FileLocation";
623
- const _SFP = "SendFilePaths";
624
- const _SFT = "StartFileTransfer";
625
- const _SFTR = "StartFileTransferRequest";
626
- const _SFTRt = "StartFileTransferResponse";
627
- const _SG = "SecondaryGids";
628
- const _SGI = "SecurityGroupIds";
629
- const _SHKA = "SshHostKeyAlgorithms";
630
- const _SI = "ServerIds";
631
- const _SIFL = "S3InputFileLocation";
632
- const _SIe = "ServerId";
633
- const _SIes = "SessionId";
634
- const _SIo = "SourceIp";
635
- const _SIu = "SubnetIds";
636
- const _SK = "SshKexs";
637
- const _SLD = "StructuredLogDestinations";
638
- const _SM = "ServiceMetadata";
639
- const _SMEIA = "ServiceManagedEgressIpAddresses";
640
- const _SMs = "SshMacs";
641
- const _SMt = "StatusMessage";
642
- const _SP = "SecurityPolicy";
643
- const _SPK = "SshPublicKeys";
644
- const _SPKB = "SshPublicKeyBody";
645
- const _SPKC = "SshPublicKeyCount";
646
- const _SPKI = "SshPublicKeyId";
647
- const _SPKs = "SshPublicKey";
648
- const _SPN = "SecurityPolicyName";
649
- const _SPNe = "SecurityPolicyNames";
650
- const _SPe = "ServerProtocol";
651
- const _SPo = "SourcePath";
652
- const _SRD = "StartRemoteDelete";
653
- const _SRDR = "StartRemoteDeleteRequest";
654
- const _SRDRt = "StartRemoteDeleteResponse";
655
- const _SRM = "StartRemoteMove";
656
- const _SRMR = "StartRemoteMoveRequest";
657
- const _SRMRt = "StartRemoteMoveResponse";
658
- const _SS = "StartServer";
659
- const _SSO = "S3StorageOptions";
660
- const _SSOe = "SetStatOption";
661
- const _SSR = "StartServerRequest";
662
- const _SSRt = "StopServerRequest";
663
- const _SSt = "StopServer";
664
- const _ST = "StepType";
665
- const _STa = "S3Tag";
666
- const _STag = "S3Tags";
667
- const _SUE = "ServiceUnavailableException";
668
- const _SWSS = "SendWorkflowStepState";
669
- const _SWSSR = "SendWorkflowStepStateRequest";
670
- const _SWSSRe = "SendWorkflowStepStateResponse";
671
- const _Se = "Serial";
672
- const _Ser = "Server";
673
- const _Serv = "Servers";
674
- const _St = "Steps";
675
- const _Sta = "State";
676
- const _T = "Tags";
677
- const _TC = "TlsCiphers";
678
- const _TCR = "TestConnectionRequest";
679
- const _TCRe = "TestConnectionResponse";
680
- const _TCe = "TestConnection";
681
- const _TE = "ThrottlingException";
682
- const _TFD = "TemporaryFilesDirectory";
683
- const _THK = "TrustedHostKeys";
684
- const _TI = "TransferId";
685
- const _TIP = "TestIdentityProvider";
686
- const _TIPR = "TestIdentityProviderRequest";
687
- const _TIPRe = "TestIdentityProviderResponse";
688
- const _TK = "TagKeys";
689
- const _TP = "TargetPath";
690
- const _TR = "TagResource";
691
- const _TRR = "TagResourceRequest";
692
- const _TS = "TimeoutSeconds";
693
- const _TSD = "TagStepDetails";
694
- const _TSRM = "TlsSessionResumptionMode";
695
- const _Ta = "Target";
696
- const _Tag = "Tag";
697
- const _Ti = "Title";
698
- const _To = "Token";
699
- const _Ty = "Type";
700
- const _U = "Url";
701
- const _UA = "UpdateAccess";
702
- const _UAR = "UpdateAccessRequest";
703
- const _UARp = "UpdateAccessResponse";
704
- const _UARpd = "UpdateAgreementRequest";
705
- const _UARpda = "UpdateAgreementResponse";
706
- const _UAp = "UpdateAgreement";
707
- const _UC = "UserCount";
708
- const _UCEC = "UpdateConnectorEgressConfig";
709
- const _UCR = "UpdateCertificateRequest";
710
- const _UCRp = "UpdateCertificateResponse";
711
- const _UCRpd = "UpdateConnectorRequest";
712
- const _UCRpda = "UpdateConnectorResponse";
713
- const _UCVLEC = "UpdateConnectorVpcLatticeEgressConfig";
714
- const _UCp = "UpdateCertificate";
715
- const _UCpd = "UpdateConnector";
716
- const _UD = "UserDetails";
717
- const _UHK = "UpdateHostKey";
718
- const _UHKR = "UpdateHostKeyRequest";
719
- const _UHKRp = "UpdateHostKeyResponse";
720
- const _UN = "UserName";
721
- const _UP = "UserPassword";
722
- const _UPR = "UpdateProfileRequest";
723
- const _UPRp = "UpdateProfileResponse";
724
- const _UPp = "UpdateProfile";
725
- const _UR = "UntagResource";
726
- const _URR = "UntagResourceRequest";
727
- const _US = "UpdateServer";
728
- const _USI = "UserSecretId";
729
- const _USR = "UpdateServerRequest";
730
- const _USRp = "UpdateServerResponse";
731
- const _UU = "UpdateUser";
732
- const _UUR = "UpdateUserRequest";
733
- const _UURp = "UpdateUserResponse";
734
- const _UWA = "UpdateWebApp";
735
- const _UWAC = "UpdateWebAppCustomization";
736
- const _UWACR = "UpdateWebAppCustomizationRequest";
737
- const _UWACRp = "UpdateWebAppCustomizationResponse";
738
- const _UWAED = "UpdateWebAppEndpointDetails";
739
- const _UWAICC = "UpdateWebAppIdentityCenterConfig";
740
- const _UWAIPD = "UpdateWebAppIdentityProviderDetails";
741
- const _UWAR = "UpdateWebAppRequest";
742
- const _UWARp = "UpdateWebAppResponse";
743
- const _UWAVC = "UpdateWebAppVpcConfig";
744
- const _Ui = "Uid";
745
- const _Us = "Usage";
746
- const _Use = "User";
747
- const _User = "Users";
748
- const _V = "Value";
749
- const _VEI = "VpcEndpointId";
750
- const _VI = "VpcId";
751
- const _VIe = "VersionId";
752
- const _VL = "VpcLattice";
753
- const _Vp = "Vpc";
754
- const _W = "Workflow";
755
- const _WA = "WebApp";
756
- const _WAC = "WebAppCustomization";
757
- const _WAE = "WebAppEndpoint";
758
- const _WAED = "WebAppEndpointDetails";
759
- const _WAEP = "WebAppEndpointPolicy";
760
- const _WAFF = "WebAppFaviconFile";
761
- const _WAI = "WebAppId";
762
- const _WAIPD = "WebAppIdentityProviderDetails";
763
- const _WALF = "WebAppLogoFile";
764
- const _WAU = "WebAppUnits";
765
- const _WAVC = "WebAppVpcConfig";
766
- const _WAe = "WebApps";
767
- const _WD = "WorkflowDetails";
768
- const _WDo = "WorkflowDetail";
769
- const _WI = "WorkflowId";
770
- const _WS = "WorkflowStep";
771
- const _WSo = "WorkflowSteps";
772
- const _Wo = "Workflows";
773
- const _aQE = "awsQueryError";
774
- const _c = "client";
775
- const _e = "error";
776
- const _h = "http";
777
- const _hE = "httpError";
778
- const _hH = "httpHeader";
779
- const _s = "server";
780
- const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.transfer";
781
- const n0 = "com.amazonaws.transfer";
782
- var CertificateBodyType = [0, n0, _CBT, 8, 0];
783
- var CertificateChainType = [0, n0, _CCT, 8, 0];
784
- var CustomHttpHeaderKeyType = [0, n0, _CHHKT, 8, 0];
785
- var CustomHttpHeaderValueType = [0, n0, _CHHVT, 8, 0];
786
- var HostKey = [0, n0, _HK, 8, 0];
787
- var MessageSubject = [0, n0, _MS, 8, 0];
788
- var PrivateKeyType = [0, n0, _PKT, 8, 0];
789
- var UserPassword = [0, n0, _UP, 8, 0];
790
- var WebAppFaviconFile = [0, n0, _WAFF, 8, 21];
791
- var WebAppLogoFile = [0, n0, _WALF, 8, 21];
792
- var AccessDeniedException$ = [-3, n0, _ADE,
793
- { [_aQE]: [`AccessDenied`, 403], [_e]: _c, [_hE]: 403 },
794
- [_M],
795
- [0]
796
- ];
797
- schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
798
- var As2AsyncMdnConnectorConfig$ = [3, n0, _AAMCC,
799
- 0,
800
- [_U, _SI],
801
- [0, 64 | 0]
802
- ];
803
- var As2ConnectorConfig$ = [3, n0, _ACC,
804
- 0,
805
- [_LPI, _PPI, _MS, _C, _EA, _SA, _MSA, _MR, _BASI, _PCT, _AMC],
806
- [0, 0, [() => MessageSubject, 0], 0, 0, 0, 0, 0, 0, 0, () => As2AsyncMdnConnectorConfig$]
807
- ];
808
- var ConflictException$ = [-3, n0, _CE,
809
- { [_e]: _c, [_hE]: 409 },
810
- [_M],
811
- [0], 1
812
- ];
813
- schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
814
- var ConnectorFileTransferResult$ = [3, n0, _CFTR,
815
- 0,
816
- [_FP, _SC, _FC, _FM],
817
- [0, 0, 0, 0], 2
818
- ];
819
- var ConnectorVpcLatticeEgressConfig$ = [3, n0, _CVLEC,
820
- 0,
821
- [_RCA, _PN],
822
- [0, 1], 1
823
- ];
824
- var CopyStepDetails$ = [3, n0, _CSD,
825
- 0,
826
- [_N, _DFL, _OE, _SFL],
827
- [0, () => InputFileLocation$, 0, 0]
828
- ];
829
- var CreateAccessRequest$ = [3, n0, _CAR,
830
- 0,
831
- [_R, _SIe, _EI, _HD, _HDT, _HDM, _P, _PP],
832
- [0, 0, 0, 0, 0, () => HomeDirectoryMappings, 0, () => PosixProfile$], 3
833
- ];
834
- var CreateAccessResponse$ = [3, n0, _CARr,
835
- 0,
836
- [_SIe, _EI],
837
- [0, 0], 2
838
- ];
839
- var CreateAgreementRequest$ = [3, n0, _CARre,
840
- 0,
841
- [_SIe, _LPI, _PPI, _AR, _D, _BD, _S, _T, _PF, _EMS, _CD],
842
- [0, 0, 0, 0, 0, 0, 0, () => Tags, 0, 0, () => CustomDirectoriesType$], 4
843
- ];
844
- var CreateAgreementResponse$ = [3, n0, _CARrea,
845
- 0,
846
- [_AI],
847
- [0], 1
848
- ];
849
- var CreateConnectorRequest$ = [3, n0, _CCR,
850
- 0,
851
- [_AR, _U, _AC, _LR, _T, _SCf, _SPN, _EC],
852
- [0, 0, [() => As2ConnectorConfig$, 0], 0, () => Tags, () => SftpConnectorConfig$, 0, () => ConnectorEgressConfig$], 1
853
- ];
854
- var CreateConnectorResponse$ = [3, n0, _CCRr,
855
- 0,
856
- [_CI],
857
- [0], 1
858
- ];
859
- var CreateProfileRequest$ = [3, n0, _CPR,
860
- 0,
861
- [_AIs, _PT, _CIe, _T],
862
- [0, 0, 64 | 0, () => Tags], 2
863
- ];
864
- var CreateProfileResponse$ = [3, n0, _CPRr,
865
- 0,
866
- [_PI],
867
- [0], 1
868
- ];
869
- var CreateServerRequest$ = [3, n0, _CSR,
870
- 0,
871
- [_Ce, _Do, _ED, _ET, _HK, _IPD, _IPT, _LR, _PALB, _PALBr, _Pr, _PD, _SPN, _T, _WD, _SLD, _SSO, _IAT],
872
- [0, 0, () => EndpointDetails$, 0, [() => HostKey, 0], () => IdentityProviderDetails$, 0, 0, 0, 0, 64 | 0, () => ProtocolDetails$, 0, () => Tags, () => WorkflowDetails$, 64 | 0, () => S3StorageOptions$, 0]
873
- ];
874
- var CreateServerResponse$ = [3, n0, _CSRr,
875
- 0,
876
- [_SIe],
877
- [0], 1
878
- ];
879
- var CreateUserRequest$ = [3, n0, _CUR,
880
- 0,
881
- [_R, _SIe, _UN, _HD, _HDT, _HDM, _P, _PP, _SPKB, _T],
882
- [0, 0, 0, 0, 0, () => HomeDirectoryMappings, 0, () => PosixProfile$, 0, () => Tags], 3
883
- ];
884
- var CreateUserResponse$ = [3, n0, _CURr,
885
- 0,
886
- [_SIe, _UN],
887
- [0, 0], 2
888
- ];
889
- var CreateWebAppRequest$ = [3, n0, _CWAR,
890
- 0,
891
- [_IPD, _AE, _WAU, _T, _WAEP, _ED],
892
- [() => WebAppIdentityProviderDetails$, 0, () => WebAppUnits$, () => Tags, 0, () => WebAppEndpointDetails$], 1
893
- ];
894
- var CreateWebAppResponse$ = [3, n0, _CWARr,
895
- 0,
896
- [_WAI],
897
- [0], 1
898
- ];
899
- var CreateWorkflowRequest$ = [3, n0, _CWR,
900
- 0,
901
- [_St, _D, _OES, _T],
902
- [() => WorkflowSteps, 0, () => WorkflowSteps, () => Tags], 1
903
- ];
904
- var CreateWorkflowResponse$ = [3, n0, _CWRr,
905
- 0,
906
- [_WI],
907
- [0], 1
908
- ];
909
- var CustomDirectoriesType$ = [3, n0, _CDT,
910
- 0,
911
- [_FFD, _MFD, _PFD, _SFD, _TFD],
912
- [0, 0, 0, 0, 0], 5
913
- ];
914
- var CustomHttpHeader$ = [3, n0, _CHH,
915
- 8,
916
- [_K, _V],
917
- [[() => CustomHttpHeaderKeyType, 0], [() => CustomHttpHeaderValueType, 0]]
918
- ];
919
- var CustomStepDetails$ = [3, n0, _CSDu,
920
- 0,
921
- [_N, _Ta, _TS, _SFL],
922
- [0, 0, 1, 0]
923
- ];
924
- var DecryptStepDetails$ = [3, n0, _DSD,
925
- 0,
926
- [_Ty, _DFL, _N, _SFL, _OE],
927
- [0, () => InputFileLocation$, 0, 0, 0], 2
928
- ];
929
- var DeleteAccessRequest$ = [3, n0, _DAR,
930
- 0,
931
- [_SIe, _EI],
932
- [0, 0], 2
933
- ];
934
- var DeleteAgreementRequest$ = [3, n0, _DARe,
935
- 0,
936
- [_AI, _SIe],
937
- [0, 0], 2
938
- ];
939
- var DeleteCertificateRequest$ = [3, n0, _DCR,
940
- 0,
941
- [_CIer],
942
- [0], 1
943
- ];
944
- var DeleteConnectorRequest$ = [3, n0, _DCRe,
945
- 0,
946
- [_CI],
947
- [0], 1
948
- ];
949
- var DeleteHostKeyRequest$ = [3, n0, _DHKR,
950
- 0,
951
- [_SIe, _HKI],
952
- [0, 0], 2
953
- ];
954
- var DeleteProfileRequest$ = [3, n0, _DPR,
955
- 0,
956
- [_PI],
957
- [0], 1
958
- ];
959
- var DeleteServerRequest$ = [3, n0, _DSR,
960
- 0,
961
- [_SIe],
962
- [0], 1
963
- ];
964
- var DeleteSshPublicKeyRequest$ = [3, n0, _DSPKR,
965
- 0,
966
- [_SIe, _SPKI, _UN],
967
- [0, 0, 0], 3
968
- ];
969
- var DeleteStepDetails$ = [3, n0, _DSDe,
970
- 0,
971
- [_N, _SFL],
972
- [0, 0]
973
- ];
974
- var DeleteUserRequest$ = [3, n0, _DUR,
975
- 0,
976
- [_SIe, _UN],
977
- [0, 0], 2
978
- ];
979
- var DeleteWebAppCustomizationRequest$ = [3, n0, _DWACR,
980
- 0,
981
- [_WAI],
982
- [0], 1
983
- ];
984
- var DeleteWebAppRequest$ = [3, n0, _DWAR,
985
- 0,
986
- [_WAI],
987
- [0], 1
988
- ];
989
- var DeleteWorkflowRequest$ = [3, n0, _DWR,
990
- 0,
991
- [_WI],
992
- [0], 1
993
- ];
994
- var DescribeAccessRequest$ = [3, n0, _DARes,
995
- 0,
996
- [_SIe, _EI],
997
- [0, 0], 2
998
- ];
999
- var DescribeAccessResponse$ = [3, n0, _DAResc,
1000
- 0,
1001
- [_SIe, _A],
1002
- [0, () => DescribedAccess$], 2
1003
- ];
1004
- var DescribeAgreementRequest$ = [3, n0, _DARescr,
1005
- 0,
1006
- [_AI, _SIe],
1007
- [0, 0], 2
1008
- ];
1009
- var DescribeAgreementResponse$ = [3, n0, _DARescri,
1010
- 0,
1011
- [_Ag],
1012
- [() => DescribedAgreement$], 1
1013
- ];
1014
- var DescribeCertificateRequest$ = [3, n0, _DCRes,
1015
- 0,
1016
- [_CIer],
1017
- [0], 1
1018
- ];
1019
- var DescribeCertificateResponse$ = [3, n0, _DCResc,
1020
- 0,
1021
- [_Ce],
1022
- [[() => DescribedCertificate$, 0]], 1
1023
- ];
1024
- var DescribeConnectorRequest$ = [3, n0, _DCRescr,
1025
- 0,
1026
- [_CI],
1027
- [0], 1
1028
- ];
1029
- var DescribeConnectorResponse$ = [3, n0, _DCRescri,
1030
- 0,
1031
- [_Co],
1032
- [[() => DescribedConnector$, 0]], 1
1033
- ];
1034
- var DescribedAccess$ = [3, n0, _DA,
1035
- 0,
1036
- [_HD, _HDM, _HDT, _P, _PP, _R, _EI],
1037
- [0, () => HomeDirectoryMappings, 0, 0, () => PosixProfile$, 0, 0]
1038
- ];
1039
- var DescribedAgreement$ = [3, n0, _DAe,
1040
- 0,
1041
- [_Ar, _AI, _D, _S, _SIe, _LPI, _PPI, _BD, _AR, _T, _PF, _EMS, _CD],
1042
- [0, 0, 0, 0, 0, 0, 0, 0, 0, () => Tags, 0, 0, () => CustomDirectoriesType$], 1
1043
- ];
1044
- var DescribedCertificate$ = [3, n0, _DC,
1045
- 0,
1046
- [_Ar, _CIer, _Us, _S, _Ce, _CC, _AD, _ID, _Se, _NBD, _NAD, _Ty, _D, _T],
1047
- [0, 0, 0, 0, [() => CertificateBodyType, 0], [() => CertificateChainType, 0], 4, 4, 0, 4, 4, 0, 0, () => Tags], 1
1048
- ];
1049
- var DescribedConnector$ = [3, n0, _DCe,
1050
- 0,
1051
- [_Ar, _ETg, _S, _CI, _U, _AC, _AR, _LR, _T, _SCf, _SMEIA, _SPN, _EC, _EM],
1052
- [0, 0, 0, 0, 0, [() => As2ConnectorConfig$, 0], 0, 0, () => Tags, () => SftpConnectorConfig$, 64 | 0, 0, () => DescribedConnectorEgressConfig$, 0], 3
1053
- ];
1054
- var DescribedConnectorVpcLatticeEgressConfig$ = [3, n0, _DCVLEC,
1055
- 0,
1056
- [_RCA, _PN],
1057
- [0, 1], 1
1058
- ];
1059
- var DescribedExecution$ = [3, n0, _DE,
1060
- 0,
1061
- [_EIx, _IFL, _SM, _ER, _LC, _PP, _S, _Re],
1062
- [0, () => FileLocation$, () => ServiceMetadata$, 0, () => LoggingConfiguration$, () => PosixProfile$, 0, () => ExecutionResults$]
1063
- ];
1064
- var DescribedHostKey$ = [3, n0, _DHK,
1065
- 0,
1066
- [_Ar, _HKI, _HKF, _D, _Ty, _DI, _T],
1067
- [0, 0, 0, 0, 0, 4, () => Tags], 1
1068
- ];
1069
- var DescribedIdentityCenterConfig$ = [3, n0, _DICC,
1070
- 0,
1071
- [_AA, _IA, _R],
1072
- [0, 0, 0]
1073
- ];
1074
- var DescribedProfile$ = [3, n0, _DP,
1075
- 0,
1076
- [_Ar, _PI, _PT, _AIs, _CIe, _T],
1077
- [0, 0, 0, 0, 64 | 0, () => Tags], 1
1078
- ];
1079
- var DescribedSecurityPolicy$ = [3, n0, _DSP,
1080
- 0,
1081
- [_SPN, _F, _SCs, _SK, _SMs, _TC, _SHKA, _Ty, _Pr],
1082
- [0, 2, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 0, 64 | 0], 1
1083
- ];
1084
- var DescribedServer$ = [3, n0, _DS,
1085
- 0,
1086
- [_Ar, _Ce, _PD, _Do, _ED, _ET, _HKF, _IPD, _IPT, _LR, _PALB, _PALBr, _Pr, _SPN, _SIe, _Sta, _T, _UC, _WD, _SLD, _SSO, _ASMEIA, _IAT],
1087
- [0, 0, () => ProtocolDetails$, 0, () => EndpointDetails$, 0, 0, () => IdentityProviderDetails$, 0, 0, 0, 0, 64 | 0, 0, 0, 0, () => Tags, 1, () => WorkflowDetails$, 64 | 0, () => S3StorageOptions$, 64 | 0, 0], 1
1088
- ];
1089
- var DescribedUser$ = [3, n0, _DU,
1090
- 0,
1091
- [_Ar, _HD, _HDM, _HDT, _P, _PP, _R, _SPK, _T, _UN],
1092
- [0, 0, () => HomeDirectoryMappings, 0, 0, () => PosixProfile$, 0, () => SshPublicKeys, () => Tags, 0], 1
1093
- ];
1094
- var DescribedWebApp$ = [3, n0, _DWA,
1095
- 0,
1096
- [_Ar, _WAI, _DIPD, _AE, _WAE, _WAU, _T, _WAEP, _ET, _DED],
1097
- [0, 0, () => DescribedWebAppIdentityProviderDetails$, 0, 0, () => WebAppUnits$, () => Tags, 0, 0, () => DescribedWebAppEndpointDetails$], 2
1098
- ];
1099
- var DescribedWebAppCustomization$ = [3, n0, _DWAC,
1100
- 0,
1101
- [_Ar, _WAI, _Ti, _LF, _FF],
1102
- [0, 0, 0, [() => WebAppLogoFile, 0], [() => WebAppFaviconFile, 0]], 2
1103
- ];
1104
- var DescribedWebAppVpcConfig$ = [3, n0, _DWAVC,
1105
- 0,
1106
- [_SIu, _VI, _VEI],
1107
- [64 | 0, 0, 0]
1108
- ];
1109
- var DescribedWorkflow$ = [3, n0, _DW,
1110
- 0,
1111
- [_Ar, _D, _St, _OES, _WI, _T],
1112
- [0, 0, () => WorkflowSteps, () => WorkflowSteps, 0, () => Tags], 1
1113
- ];
1114
- var DescribeExecutionRequest$ = [3, n0, _DER,
1115
- 0,
1116
- [_EIx, _WI],
1117
- [0, 0], 2
1118
- ];
1119
- var DescribeExecutionResponse$ = [3, n0, _DERe,
1120
- 0,
1121
- [_WI, _E],
1122
- [0, () => DescribedExecution$], 2
1123
- ];
1124
- var DescribeHostKeyRequest$ = [3, n0, _DHKRe,
1125
- 0,
1126
- [_SIe, _HKI],
1127
- [0, 0], 2
1128
- ];
1129
- var DescribeHostKeyResponse$ = [3, n0, _DHKRes,
1130
- 0,
1131
- [_HK],
1132
- [() => DescribedHostKey$], 1
1133
- ];
1134
- var DescribeProfileRequest$ = [3, n0, _DPRe,
1135
- 0,
1136
- [_PI],
1137
- [0], 1
1138
- ];
1139
- var DescribeProfileResponse$ = [3, n0, _DPRes,
1140
- 0,
1141
- [_Pro],
1142
- [() => DescribedProfile$], 1
1143
- ];
1144
- var DescribeSecurityPolicyRequest$ = [3, n0, _DSPR,
1145
- 0,
1146
- [_SPN],
1147
- [0], 1
1148
- ];
1149
- var DescribeSecurityPolicyResponse$ = [3, n0, _DSPRe,
1150
- 0,
1151
- [_SP],
1152
- [() => DescribedSecurityPolicy$], 1
1153
- ];
1154
- var DescribeServerRequest$ = [3, n0, _DSRe,
1155
- 0,
1156
- [_SIe],
1157
- [0], 1
1158
- ];
1159
- var DescribeServerResponse$ = [3, n0, _DSRes,
1160
- 0,
1161
- [_Ser],
1162
- [() => DescribedServer$], 1
1163
- ];
1164
- var DescribeUserRequest$ = [3, n0, _DURe,
1165
- 0,
1166
- [_SIe, _UN],
1167
- [0, 0], 2
1168
- ];
1169
- var DescribeUserResponse$ = [3, n0, _DURes,
1170
- 0,
1171
- [_SIe, _Use],
1172
- [0, () => DescribedUser$], 2
1173
- ];
1174
- var DescribeWebAppCustomizationRequest$ = [3, n0, _DWACRe,
1175
- 0,
1176
- [_WAI],
1177
- [0], 1
1178
- ];
1179
- var DescribeWebAppCustomizationResponse$ = [3, n0, _DWACRes,
1180
- 0,
1181
- [_WAC],
1182
- [[() => DescribedWebAppCustomization$, 0]], 1
1183
- ];
1184
- var DescribeWebAppRequest$ = [3, n0, _DWARe,
1185
- 0,
1186
- [_WAI],
1187
- [0], 1
1188
- ];
1189
- var DescribeWebAppResponse$ = [3, n0, _DWARes,
1190
- 0,
1191
- [_WA],
1192
- [() => DescribedWebApp$], 1
1193
- ];
1194
- var DescribeWorkflowRequest$ = [3, n0, _DWRe,
1195
- 0,
1196
- [_WI],
1197
- [0], 1
1198
- ];
1199
- var DescribeWorkflowResponse$ = [3, n0, _DWRes,
1200
- 0,
1201
- [_W],
1202
- [() => DescribedWorkflow$], 1
1203
- ];
1204
- var EfsFileLocation$ = [3, n0, _EFL,
1205
- 0,
1206
- [_FSI, _Pa],
1207
- [0, 0]
1208
- ];
1209
- var EndpointDetails$ = [3, n0, _ED,
1210
- 0,
1211
- [_AAI, _SIu, _VEI, _VI, _SGI],
1212
- [64 | 0, 64 | 0, 0, 0, 64 | 0]
1213
- ];
1214
- var ExecutionError$ = [3, n0, _EE,
1215
- 0,
1216
- [_Ty, _M],
1217
- [0, 0], 2
1218
- ];
1219
- var ExecutionResults$ = [3, n0, _ERx,
1220
- 0,
1221
- [_St, _OES],
1222
- [() => ExecutionStepResults, () => ExecutionStepResults]
1223
- ];
1224
- var ExecutionStepResult$ = [3, n0, _ESR,
1225
- 0,
1226
- [_ST, _O, _Er],
1227
- [0, 0, () => ExecutionError$]
1228
- ];
1229
- var FileLocation$ = [3, n0, _FL,
1230
- 0,
1231
- [_SFLi, _EFL],
1232
- [() => S3FileLocation$, () => EfsFileLocation$]
1233
- ];
1234
- var HomeDirectoryMapEntry$ = [3, n0, _HDME,
1235
- 0,
1236
- [_En, _Ta, _Ty],
1237
- [0, 0, 0], 2
1238
- ];
1239
- var IdentityCenterConfig$ = [3, n0, _ICC,
1240
- 0,
1241
- [_IA, _R],
1242
- [0, 0]
1243
- ];
1244
- var IdentityProviderDetails$ = [3, n0, _IPD,
1245
- 0,
1246
- [_U, _IR, _DIi, _Fu, _SAM],
1247
- [0, 0, 0, 0, 0]
1248
- ];
1249
- var ImportCertificateRequest$ = [3, n0, _ICR,
1250
- 0,
1251
- [_Us, _Ce, _CC, _PK, _AD, _ID, _D, _T],
1252
- [0, [() => CertificateBodyType, 0], [() => CertificateChainType, 0], [() => PrivateKeyType, 0], 4, 4, 0, () => Tags], 2
1253
- ];
1254
- var ImportCertificateResponse$ = [3, n0, _ICRm,
1255
- 0,
1256
- [_CIer],
1257
- [0], 1
1258
- ];
1259
- var ImportHostKeyRequest$ = [3, n0, _IHKR,
1260
- 0,
1261
- [_SIe, _HKB, _D, _T],
1262
- [0, [() => HostKey, 0], 0, () => Tags], 2
1263
- ];
1264
- var ImportHostKeyResponse$ = [3, n0, _IHKRm,
1265
- 0,
1266
- [_SIe, _HKI],
1267
- [0, 0], 2
1268
- ];
1269
- var ImportSshPublicKeyRequest$ = [3, n0, _ISPKR,
1270
- 0,
1271
- [_SIe, _SPKB, _UN],
1272
- [0, 0, 0], 3
1273
- ];
1274
- var ImportSshPublicKeyResponse$ = [3, n0, _ISPKRm,
1275
- 0,
1276
- [_SIe, _SPKI, _UN],
1277
- [0, 0, 0], 3
1278
- ];
1279
- var InputFileLocation$ = [3, n0, _IFLn,
1280
- 0,
1281
- [_SFLi, _EFL],
1282
- [() => S3InputFileLocation$, () => EfsFileLocation$]
1283
- ];
1284
- var InternalServiceError$ = [-3, n0, _ISE,
1285
- { [_e]: _s, [_hE]: 503 },
1286
- [_M],
1287
- [0], 1
1288
- ];
1289
- schema.TypeRegistry.for(n0).registerError(InternalServiceError$, InternalServiceError);
1290
- var InvalidNextTokenException$ = [-3, n0, _INTE,
1291
- { [_e]: _c, [_hE]: 400 },
1292
- [_M],
1293
- [0], 1
1294
- ];
1295
- schema.TypeRegistry.for(n0).registerError(InvalidNextTokenException$, InvalidNextTokenException);
1296
- var InvalidRequestException$ = [-3, n0, _IRE,
1297
- { [_e]: _c, [_hE]: 400 },
1298
- [_M],
1299
- [0], 1
1300
- ];
1301
- schema.TypeRegistry.for(n0).registerError(InvalidRequestException$, InvalidRequestException);
1302
- var ListAccessesRequest$ = [3, n0, _LAR,
1303
- 0,
1304
- [_SIe, _MRa, _NT],
1305
- [0, 1, 0], 1
1306
- ];
1307
- var ListAccessesResponse$ = [3, n0, _LARi,
1308
- 0,
1309
- [_SIe, _Ac, _NT],
1310
- [0, () => ListedAccesses, 0], 2
1311
- ];
1312
- var ListAgreementsRequest$ = [3, n0, _LARis,
1313
- 0,
1314
- [_SIe, _MRa, _NT],
1315
- [0, 1, 0], 1
1316
- ];
1317
- var ListAgreementsResponse$ = [3, n0, _LARist,
1318
- 0,
1319
- [_Agr, _NT],
1320
- [() => ListedAgreements, 0], 1
1321
- ];
1322
- var ListCertificatesRequest$ = [3, n0, _LCR,
1323
- 0,
1324
- [_MRa, _NT],
1325
- [1, 0]
1326
- ];
1327
- var ListCertificatesResponse$ = [3, n0, _LCRi,
1328
- 0,
1329
- [_Cer, _NT],
1330
- [() => ListedCertificates, 0], 1
1331
- ];
1332
- var ListConnectorsRequest$ = [3, n0, _LCRis,
1333
- 0,
1334
- [_MRa, _NT],
1335
- [1, 0]
1336
- ];
1337
- var ListConnectorsResponse$ = [3, n0, _LCRist,
1338
- 0,
1339
- [_Con, _NT],
1340
- [() => ListedConnectors, 0], 1
1341
- ];
1342
- var ListedAccess$ = [3, n0, _LA,
1343
- 0,
1344
- [_HD, _HDT, _R, _EI],
1345
- [0, 0, 0, 0]
1346
- ];
1347
- var ListedAgreement$ = [3, n0, _LAi,
1348
- 0,
1349
- [_Ar, _AI, _D, _S, _SIe, _LPI, _PPI],
1350
- [0, 0, 0, 0, 0, 0, 0]
1351
- ];
1352
- var ListedCertificate$ = [3, n0, _LCi,
1353
- 0,
1354
- [_Ar, _CIer, _Us, _S, _AD, _ID, _Ty, _D],
1355
- [0, 0, 0, 0, 4, 4, 0, 0]
1356
- ];
1357
- var ListedConnector$ = [3, n0, _LCis,
1358
- 0,
1359
- [_Ar, _CI, _U],
1360
- [0, 0, 0]
1361
- ];
1362
- var ListedExecution$ = [3, n0, _LE,
1363
- 0,
1364
- [_EIx, _IFL, _SM, _S],
1365
- [0, () => FileLocation$, () => ServiceMetadata$, 0]
1366
- ];
1367
- var ListedHostKey$ = [3, n0, _LHK,
1368
- 0,
1369
- [_Ar, _HKI, _Fi, _D, _Ty, _DI],
1370
- [0, 0, 0, 0, 0, 4], 1
1371
- ];
1372
- var ListedProfile$ = [3, n0, _LP,
1373
- 0,
1374
- [_Ar, _PI, _AIs, _PT],
1375
- [0, 0, 0, 0]
1376
- ];
1377
- var ListedServer$ = [3, n0, _LS,
1378
- 0,
1379
- [_Ar, _Do, _IPT, _ET, _LR, _SIe, _Sta, _UC],
1380
- [0, 0, 0, 0, 0, 0, 0, 1], 1
1381
- ];
1382
- var ListedUser$ = [3, n0, _LU,
1383
- 0,
1384
- [_Ar, _HD, _HDT, _R, _SPKC, _UN],
1385
- [0, 0, 0, 0, 1, 0], 1
1386
- ];
1387
- var ListedWebApp$ = [3, n0, _LWA,
1388
- 0,
1389
- [_Ar, _WAI, _AE, _WAE, _ET],
1390
- [0, 0, 0, 0, 0], 2
1391
- ];
1392
- var ListedWorkflow$ = [3, n0, _LW,
1393
- 0,
1394
- [_WI, _D, _Ar],
1395
- [0, 0, 0]
1396
- ];
1397
- var ListExecutionsRequest$ = [3, n0, _LER,
1398
- 0,
1399
- [_WI, _MRa, _NT],
1400
- [0, 1, 0], 1
1401
- ];
1402
- var ListExecutionsResponse$ = [3, n0, _LERi,
1403
- 0,
1404
- [_WI, _Ex, _NT],
1405
- [0, () => ListedExecutions, 0], 2
1406
- ];
1407
- var ListFileTransferResultsRequest$ = [3, n0, _LFTRR,
1408
- 0,
1409
- [_CI, _TI, _NT, _MRa],
1410
- [0, 0, 0, 1], 2
1411
- ];
1412
- var ListFileTransferResultsResponse$ = [3, n0, _LFTRRi,
1413
- 0,
1414
- [_FTR, _NT],
1415
- [() => ConnectorFileTransferResults, 0], 1
1416
- ];
1417
- var ListHostKeysRequest$ = [3, n0, _LHKR,
1418
- 0,
1419
- [_SIe, _MRa, _NT],
1420
- [0, 1, 0], 1
1421
- ];
1422
- var ListHostKeysResponse$ = [3, n0, _LHKRi,
1423
- 0,
1424
- [_SIe, _HKo, _NT],
1425
- [0, () => ListedHostKeys, 0], 2
1426
- ];
1427
- var ListProfilesRequest$ = [3, n0, _LPR,
1428
- 0,
1429
- [_MRa, _NT, _PT],
1430
- [1, 0, 0]
1431
- ];
1432
- var ListProfilesResponse$ = [3, n0, _LPRi,
1433
- 0,
1434
- [_Prof, _NT],
1435
- [() => ListedProfiles, 0], 1
1436
- ];
1437
- var ListSecurityPoliciesRequest$ = [3, n0, _LSPR,
1438
- 0,
1439
- [_MRa, _NT],
1440
- [1, 0]
1441
- ];
1442
- var ListSecurityPoliciesResponse$ = [3, n0, _LSPRi,
1443
- 0,
1444
- [_SPNe, _NT],
1445
- [64 | 0, 0], 1
1446
- ];
1447
- var ListServersRequest$ = [3, n0, _LSR,
1448
- 0,
1449
- [_MRa, _NT],
1450
- [1, 0]
1451
- ];
1452
- var ListServersResponse$ = [3, n0, _LSRi,
1453
- 0,
1454
- [_Serv, _NT],
1455
- [() => ListedServers, 0], 1
1456
- ];
1457
- var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
1458
- 0,
1459
- [_Ar, _MRa, _NT],
1460
- [0, 1, 0], 1
1461
- ];
1462
- var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1463
- 0,
1464
- [_Ar, _NT, _T],
1465
- [0, 0, () => Tags]
1466
- ];
1467
- var ListUsersRequest$ = [3, n0, _LUR,
1468
- 0,
1469
- [_SIe, _MRa, _NT],
1470
- [0, 1, 0], 1
1471
- ];
1472
- var ListUsersResponse$ = [3, n0, _LURi,
1473
- 0,
1474
- [_SIe, _User, _NT],
1475
- [0, () => ListedUsers, 0], 2
1476
- ];
1477
- var ListWebAppsRequest$ = [3, n0, _LWAR,
1478
- 0,
1479
- [_MRa, _NT],
1480
- [1, 0]
1481
- ];
1482
- var ListWebAppsResponse$ = [3, n0, _LWARi,
1483
- 0,
1484
- [_WAe, _NT],
1485
- [() => ListedWebApps, 0], 1
1486
- ];
1487
- var ListWorkflowsRequest$ = [3, n0, _LWR,
1488
- 0,
1489
- [_MRa, _NT],
1490
- [1, 0]
1491
- ];
1492
- var ListWorkflowsResponse$ = [3, n0, _LWRi,
1493
- 0,
1494
- [_Wo, _NT],
1495
- [() => ListedWorkflows, 0], 1
1496
- ];
1497
- var LoggingConfiguration$ = [3, n0, _LC,
1498
- 0,
1499
- [_LR, _LGN],
1500
- [0, 0]
1501
- ];
1502
- var PosixProfile$ = [3, n0, _PP,
1503
- 0,
1504
- [_Ui, _G, _SG],
1505
- [1, 1, 64 | 1], 2
1506
- ];
1507
- var ProtocolDetails$ = [3, n0, _PD,
1508
- 0,
1509
- [_PIa, _TSRM, _SSOe, _AT],
1510
- [0, 0, 0, 64 | 0]
1511
- ];
1512
- var ResourceExistsException$ = [-3, n0, _REE,
1513
- { [_e]: _c, [_hE]: 409 },
1514
- [_M, _Res, _RT],
1515
- [0, 0, 0], 3
1516
- ];
1517
- schema.TypeRegistry.for(n0).registerError(ResourceExistsException$, ResourceExistsException);
1518
- var ResourceNotFoundException$ = [-3, n0, _RNFE,
1519
- { [_e]: _c, [_hE]: 404 },
1520
- [_M, _Res, _RT],
1521
- [0, 0, 0], 3
1522
- ];
1523
- schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
1524
- var S3FileLocation$ = [3, n0, _SFLi,
1525
- 0,
1526
- [_B, _K, _VIe, _Et],
1527
- [0, 0, 0, 0]
1528
- ];
1529
- var S3InputFileLocation$ = [3, n0, _SIFL,
1530
- 0,
1531
- [_B, _K],
1532
- [0, 0]
1533
- ];
1534
- var S3StorageOptions$ = [3, n0, _SSO,
1535
- 0,
1536
- [_DLO],
1537
- [0]
1538
- ];
1539
- var S3Tag$ = [3, n0, _STa,
1540
- 0,
1541
- [_K, _V],
1542
- [0, 0], 2
1543
- ];
1544
- var SendWorkflowStepStateRequest$ = [3, n0, _SWSSR,
1545
- 0,
1546
- [_WI, _EIx, _To, _S],
1547
- [0, 0, 0, 0], 4
1548
- ];
1549
- var SendWorkflowStepStateResponse$ = [3, n0, _SWSSRe,
1550
- 0,
1551
- [],
1552
- []
1553
- ];
1554
- var ServiceMetadata$ = [3, n0, _SM,
1555
- 0,
1556
- [_UD],
1557
- [() => UserDetails$], 1
1558
- ];
1559
- var ServiceUnavailableException$ = [-3, n0, _SUE,
1560
- { [_aQE]: [`ServiceUnavailable`, 503], [_e]: _s, [_hE]: 503 },
1561
- [_M],
1562
- [0]
1563
- ];
1564
- schema.TypeRegistry.for(n0).registerError(ServiceUnavailableException$, ServiceUnavailableException);
1565
- var SftpConnectorConfig$ = [3, n0, _SCC,
1566
- 0,
1567
- [_USI, _THK, _MCC],
1568
- [0, 64 | 0, 1]
1569
- ];
1570
- var SftpConnectorConnectionDetails$ = [3, n0, _SCCD,
1571
- 0,
1572
- [_HK],
1573
- [0]
1574
- ];
1575
- var SshPublicKey$ = [3, n0, _SPKs,
1576
- 0,
1577
- [_DI, _SPKB, _SPKI],
1578
- [4, 0, 0], 3
1579
- ];
1580
- var StartDirectoryListingRequest$ = [3, n0, _SDLR,
1581
- 0,
1582
- [_CI, _RDP, _ODP, _MI],
1583
- [0, 0, 0, 1], 3
1584
- ];
1585
- var StartDirectoryListingResponse$ = [3, n0, _SDLRt,
1586
- 0,
1587
- [_LI, _OFN],
1588
- [0, 0], 2
1589
- ];
1590
- var StartFileTransferRequest$ = [3, n0, _SFTR,
1591
- 0,
1592
- [_CI, _SFP, _RFP, _LDP, _RDP, _CHHu],
1593
- [0, 64 | 0, 64 | 0, 0, 0, [() => CustomHttpHeaders, 0]], 1
1594
- ];
1595
- var StartFileTransferResponse$ = [3, n0, _SFTRt,
1596
- 0,
1597
- [_TI],
1598
- [0], 1
1599
- ];
1600
- var StartRemoteDeleteRequest$ = [3, n0, _SRDR,
1601
- 0,
1602
- [_CI, _DPe],
1603
- [0, 0], 2
1604
- ];
1605
- var StartRemoteDeleteResponse$ = [3, n0, _SRDRt,
1606
- 0,
1607
- [_DIe],
1608
- [0], 1
1609
- ];
1610
- var StartRemoteMoveRequest$ = [3, n0, _SRMR,
1611
- 0,
1612
- [_CI, _SPo, _TP],
1613
- [0, 0, 0], 3
1614
- ];
1615
- var StartRemoteMoveResponse$ = [3, n0, _SRMRt,
1616
- 0,
1617
- [_MIo],
1618
- [0], 1
1619
- ];
1620
- var StartServerRequest$ = [3, n0, _SSR,
1621
- 0,
1622
- [_SIe],
1623
- [0], 1
1624
- ];
1625
- var StopServerRequest$ = [3, n0, _SSRt,
1626
- 0,
1627
- [_SIe],
1628
- [0], 1
1629
- ];
1630
- var Tag$ = [3, n0, _Tag,
1631
- 0,
1632
- [_K, _V],
1633
- [0, 0], 2
1634
- ];
1635
- var TagResourceRequest$ = [3, n0, _TRR,
1636
- 0,
1637
- [_Ar, _T],
1638
- [0, () => Tags], 2
1639
- ];
1640
- var TagStepDetails$ = [3, n0, _TSD,
1641
- 0,
1642
- [_N, _T, _SFL],
1643
- [0, () => S3Tags, 0]
1644
- ];
1645
- var TestConnectionRequest$ = [3, n0, _TCR,
1646
- 0,
1647
- [_CI],
1648
- [0], 1
1649
- ];
1650
- var TestConnectionResponse$ = [3, n0, _TCRe,
1651
- 0,
1652
- [_CI, _S, _SMt, _SCD],
1653
- [0, 0, 0, () => SftpConnectorConnectionDetails$]
1654
- ];
1655
- var TestIdentityProviderRequest$ = [3, n0, _TIPR,
1656
- 0,
1657
- [_SIe, _UN, _SPe, _SIo, _UP],
1658
- [0, 0, 0, 0, [() => UserPassword, 0]], 2
1659
- ];
1660
- var TestIdentityProviderResponse$ = [3, n0, _TIPRe,
1661
- 0,
1662
- [_SC, _U, _Resp, _M],
1663
- [1, 0, 0, 0], 2
1664
- ];
1665
- var ThrottlingException$ = [-3, n0, _TE,
1666
- { [_e]: _c, [_hE]: 429 },
1667
- [_RAS],
1668
- [[0, { [_hH]: _RA }]]
1669
- ];
1670
- schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
1671
- var UntagResourceRequest$ = [3, n0, _URR,
1672
- 0,
1673
- [_Ar, _TK],
1674
- [0, 64 | 0], 2
1675
- ];
1676
- var UpdateAccessRequest$ = [3, n0, _UAR,
1677
- 0,
1678
- [_SIe, _EI, _HD, _HDT, _HDM, _P, _PP, _R],
1679
- [0, 0, 0, 0, () => HomeDirectoryMappings, 0, () => PosixProfile$, 0], 2
1680
- ];
1681
- var UpdateAccessResponse$ = [3, n0, _UARp,
1682
- 0,
1683
- [_SIe, _EI],
1684
- [0, 0], 2
1685
- ];
1686
- var UpdateAgreementRequest$ = [3, n0, _UARpd,
1687
- 0,
1688
- [_AI, _SIe, _D, _S, _LPI, _PPI, _BD, _AR, _PF, _EMS, _CD],
1689
- [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, () => CustomDirectoriesType$], 2
1690
- ];
1691
- var UpdateAgreementResponse$ = [3, n0, _UARpda,
1692
- 0,
1693
- [_AI],
1694
- [0], 1
1695
- ];
1696
- var UpdateCertificateRequest$ = [3, n0, _UCR,
1697
- 0,
1698
- [_CIer, _AD, _ID, _D],
1699
- [0, 4, 4, 0], 1
1700
- ];
1701
- var UpdateCertificateResponse$ = [3, n0, _UCRp,
1702
- 0,
1703
- [_CIer],
1704
- [0], 1
1705
- ];
1706
- var UpdateConnectorRequest$ = [3, n0, _UCRpd,
1707
- 0,
1708
- [_CI, _U, _AC, _AR, _LR, _SCf, _SPN, _EC],
1709
- [0, 0, [() => As2ConnectorConfig$, 0], 0, 0, () => SftpConnectorConfig$, 0, () => UpdateConnectorEgressConfig$], 1
1710
- ];
1711
- var UpdateConnectorResponse$ = [3, n0, _UCRpda,
1712
- 0,
1713
- [_CI],
1714
- [0], 1
1715
- ];
1716
- var UpdateConnectorVpcLatticeEgressConfig$ = [3, n0, _UCVLEC,
1717
- 0,
1718
- [_RCA, _PN],
1719
- [0, 1]
1720
- ];
1721
- var UpdateHostKeyRequest$ = [3, n0, _UHKR,
1722
- 0,
1723
- [_SIe, _HKI, _D],
1724
- [0, 0, 0], 3
1725
- ];
1726
- var UpdateHostKeyResponse$ = [3, n0, _UHKRp,
1727
- 0,
1728
- [_SIe, _HKI],
1729
- [0, 0], 2
1730
- ];
1731
- var UpdateProfileRequest$ = [3, n0, _UPR,
1732
- 0,
1733
- [_PI, _CIe],
1734
- [0, 64 | 0], 1
1735
- ];
1736
- var UpdateProfileResponse$ = [3, n0, _UPRp,
1737
- 0,
1738
- [_PI],
1739
- [0], 1
1740
- ];
1741
- var UpdateServerRequest$ = [3, n0, _USR,
1742
- 0,
1743
- [_SIe, _Ce, _PD, _ED, _ET, _HK, _IPD, _LR, _PALB, _PALBr, _Pr, _SPN, _WD, _SLD, _SSO, _IAT, _IPT],
1744
- [0, 0, () => ProtocolDetails$, () => EndpointDetails$, 0, [() => HostKey, 0], () => IdentityProviderDetails$, 0, 0, 0, 64 | 0, 0, () => WorkflowDetails$, 64 | 0, () => S3StorageOptions$, 0, 0], 1
1745
- ];
1746
- var UpdateServerResponse$ = [3, n0, _USRp,
1747
- 0,
1748
- [_SIe],
1749
- [0], 1
1750
- ];
1751
- var UpdateUserRequest$ = [3, n0, _UUR,
1752
- 0,
1753
- [_SIe, _UN, _HD, _HDT, _HDM, _P, _PP, _R],
1754
- [0, 0, 0, 0, () => HomeDirectoryMappings, 0, () => PosixProfile$, 0], 2
1755
- ];
1756
- var UpdateUserResponse$ = [3, n0, _UURp,
1757
- 0,
1758
- [_SIe, _UN],
1759
- [0, 0], 2
1760
- ];
1761
- var UpdateWebAppCustomizationRequest$ = [3, n0, _UWACR,
1762
- 0,
1763
- [_WAI, _Ti, _LF, _FF],
1764
- [0, 0, [() => WebAppLogoFile, 0], [() => WebAppFaviconFile, 0]], 1
1765
- ];
1766
- var UpdateWebAppCustomizationResponse$ = [3, n0, _UWACRp,
1767
- 0,
1768
- [_WAI],
1769
- [0], 1
1770
- ];
1771
- var UpdateWebAppIdentityCenterConfig$ = [3, n0, _UWAICC,
1772
- 0,
1773
- [_R],
1774
- [0]
1775
- ];
1776
- var UpdateWebAppRequest$ = [3, n0, _UWAR,
1777
- 0,
1778
- [_WAI, _IPD, _AE, _WAU, _ED],
1779
- [0, () => UpdateWebAppIdentityProviderDetails$, 0, () => WebAppUnits$, () => UpdateWebAppEndpointDetails$], 1
1780
- ];
1781
- var UpdateWebAppResponse$ = [3, n0, _UWARp,
1782
- 0,
1783
- [_WAI],
1784
- [0], 1
1785
- ];
1786
- var UpdateWebAppVpcConfig$ = [3, n0, _UWAVC,
1787
- 0,
1788
- [_SIu],
1789
- [64 | 0]
1790
- ];
1791
- var UserDetails$ = [3, n0, _UD,
1792
- 0,
1793
- [_UN, _SIe, _SIes],
1794
- [0, 0, 0], 2
1795
- ];
1796
- var WebAppVpcConfig$ = [3, n0, _WAVC,
1797
- 0,
1798
- [_SIu, _VI, _SGI],
1799
- [64 | 0, 0, 64 | 0]
1800
- ];
1801
- var WorkflowDetail$ = [3, n0, _WDo,
1802
- 0,
1803
- [_WI, _ER],
1804
- [0, 0], 2
1805
- ];
1806
- var WorkflowDetails$ = [3, n0, _WD,
1807
- 0,
1808
- [_OU, _OPU],
1809
- [() => OnUploadWorkflowDetails, () => OnPartialUploadWorkflowDetails]
1810
- ];
1811
- var WorkflowStep$ = [3, n0, _WS,
1812
- 0,
1813
- [_Ty, _CSD, _CSDu, _DSDe, _TSD, _DSD],
1814
- [0, () => CopyStepDetails$, () => CustomStepDetails$, () => DeleteStepDetails$, () => TagStepDetails$, () => DecryptStepDetails$]
1815
- ];
1816
- var __Unit = "unit";
1817
- var TransferServiceException$ = [-3, _sm, "TransferServiceException", 0, [], []];
1818
- schema.TypeRegistry.for(_sm).registerError(TransferServiceException$, TransferServiceException);
1819
- var ConnectorFileTransferResults = [1, n0, _CFTRo,
1820
- 0, () => ConnectorFileTransferResult$
1821
- ];
1822
- var CustomHttpHeaders = [1, n0, _CHHu,
1823
- 0, [() => CustomHttpHeader$,
1824
- 0]
1825
- ];
1826
- var ExecutionStepResults = [1, n0, _ESRx,
1827
- 0, () => ExecutionStepResult$
1828
- ];
1829
- var HomeDirectoryMappings = [1, n0, _HDM,
1830
- 0, () => HomeDirectoryMapEntry$
1831
- ];
1832
- var ListedAccesses = [1, n0, _LAis,
1833
- 0, () => ListedAccess$
1834
- ];
1835
- var ListedAgreements = [1, n0, _LAist,
1836
- 0, () => ListedAgreement$
1837
- ];
1838
- var ListedCertificates = [1, n0, _LCist,
1839
- 0, () => ListedCertificate$
1840
- ];
1841
- var ListedConnectors = [1, n0, _LCiste,
1842
- 0, () => ListedConnector$
1843
- ];
1844
- var ListedExecutions = [1, n0, _LEi,
1845
- 0, () => ListedExecution$
1846
- ];
1847
- var ListedHostKeys = [1, n0, _LHKi,
1848
- 0, () => ListedHostKey$
1849
- ];
1850
- var ListedProfiles = [1, n0, _LPi,
1851
- 0, () => ListedProfile$
1852
- ];
1853
- var ListedServers = [1, n0, _LSi,
1854
- 0, () => ListedServer$
1855
- ];
1856
- var ListedUsers = [1, n0, _LUi,
1857
- 0, () => ListedUser$
1858
- ];
1859
- var ListedWebApps = [1, n0, _LWAi,
1860
- 0, () => ListedWebApp$
1861
- ];
1862
- var ListedWorkflows = [1, n0, _LWi,
1863
- 0, () => ListedWorkflow$
1864
- ];
1865
- var OnPartialUploadWorkflowDetails = [1, n0, _OPUWD,
1866
- 0, () => WorkflowDetail$
1867
- ];
1868
- var OnUploadWorkflowDetails = [1, n0, _OUWD,
1869
- 0, () => WorkflowDetail$
1870
- ];
1871
- var S3Tags = [1, n0, _STag,
1872
- 0, () => S3Tag$
1873
- ];
1874
- var SshPublicKeys = [1, n0, _SPK,
1875
- 0, () => SshPublicKey$
1876
- ];
1877
- var Tags = [1, n0, _T,
1878
- 0, () => Tag$
1879
- ];
1880
- var WorkflowSteps = [1, n0, _WSo,
1881
- 0, () => WorkflowStep$
1882
- ];
1883
- var ConnectorEgressConfig$ = [4, n0, _CEC,
1884
- 0,
1885
- [_VL],
1886
- [() => ConnectorVpcLatticeEgressConfig$]
1887
- ];
1888
- var DescribedConnectorEgressConfig$ = [4, n0, _DCEC,
1889
- 0,
1890
- [_VL],
1891
- [() => DescribedConnectorVpcLatticeEgressConfig$]
1892
- ];
1893
- var DescribedWebAppEndpointDetails$ = [4, n0, _DWAED,
1894
- 0,
1895
- [_Vp],
1896
- [() => DescribedWebAppVpcConfig$]
1897
- ];
1898
- var DescribedWebAppIdentityProviderDetails$ = [4, n0, _DWAIPD,
1899
- 0,
1900
- [_ICC],
1901
- [() => DescribedIdentityCenterConfig$]
1902
- ];
1903
- var UpdateConnectorEgressConfig$ = [4, n0, _UCEC,
1904
- 0,
1905
- [_VL],
1906
- [() => UpdateConnectorVpcLatticeEgressConfig$]
1907
- ];
1908
- var UpdateWebAppEndpointDetails$ = [4, n0, _UWAED,
1909
- 0,
1910
- [_Vp],
1911
- [() => UpdateWebAppVpcConfig$]
1912
- ];
1913
- var UpdateWebAppIdentityProviderDetails$ = [4, n0, _UWAIPD,
1914
- 0,
1915
- [_ICC],
1916
- [() => UpdateWebAppIdentityCenterConfig$]
1917
- ];
1918
- var WebAppEndpointDetails$ = [4, n0, _WAED,
1919
- 0,
1920
- [_Vp],
1921
- [() => WebAppVpcConfig$]
1922
- ];
1923
- var WebAppIdentityProviderDetails$ = [4, n0, _WAIPD,
1924
- 0,
1925
- [_ICC],
1926
- [() => IdentityCenterConfig$]
1927
- ];
1928
- var WebAppUnits$ = [4, n0, _WAU,
1929
- 0,
1930
- [_Prov],
1931
- [1]
1932
- ];
1933
- var CreateAccess$ = [9, n0, _CA,
1934
- 0, () => CreateAccessRequest$, () => CreateAccessResponse$
1935
- ];
1936
- var CreateAgreement$ = [9, n0, _CAr,
1937
- 0, () => CreateAgreementRequest$, () => CreateAgreementResponse$
1938
- ];
1939
- var CreateConnector$ = [9, n0, _CCr,
1940
- 0, () => CreateConnectorRequest$, () => CreateConnectorResponse$
1941
- ];
1942
- var CreateProfile$ = [9, n0, _CP,
1943
- 0, () => CreateProfileRequest$, () => CreateProfileResponse$
1944
- ];
1945
- var CreateServer$ = [9, n0, _CS,
1946
- 0, () => CreateServerRequest$, () => CreateServerResponse$
1947
- ];
1948
- var CreateUser$ = [9, n0, _CU,
1949
- 2, () => CreateUserRequest$, () => CreateUserResponse$
1950
- ];
1951
- var CreateWebApp$ = [9, n0, _CWA,
1952
- { [_h]: ["POST", "/createWebApp", 200] }, () => CreateWebAppRequest$, () => CreateWebAppResponse$
1953
- ];
1954
- var CreateWorkflow$ = [9, n0, _CW,
1955
- 0, () => CreateWorkflowRequest$, () => CreateWorkflowResponse$
1956
- ];
1957
- var DeleteAccess$ = [9, n0, _DAel,
1958
- 0, () => DeleteAccessRequest$, () => __Unit
1959
- ];
1960
- var DeleteAgreement$ = [9, n0, _DAele,
1961
- 2, () => DeleteAgreementRequest$, () => __Unit
1962
- ];
1963
- var DeleteCertificate$ = [9, n0, _DCel,
1964
- 2, () => DeleteCertificateRequest$, () => __Unit
1965
- ];
1966
- var DeleteConnector$ = [9, n0, _DCele,
1967
- 2, () => DeleteConnectorRequest$, () => __Unit
1968
- ];
1969
- var DeleteHostKey$ = [9, n0, _DHKe,
1970
- 0, () => DeleteHostKeyRequest$, () => __Unit
1971
- ];
1972
- var DeleteProfile$ = [9, n0, _DPel,
1973
- 2, () => DeleteProfileRequest$, () => __Unit
1974
- ];
1975
- var DeleteServer$ = [9, n0, _DSe,
1976
- 2, () => DeleteServerRequest$, () => __Unit
1977
- ];
1978
- var DeleteSshPublicKey$ = [9, n0, _DSPK,
1979
- 0, () => DeleteSshPublicKeyRequest$, () => __Unit
1980
- ];
1981
- var DeleteUser$ = [9, n0, _DUe,
1982
- 2, () => DeleteUserRequest$, () => __Unit
1983
- ];
1984
- var DeleteWebApp$ = [9, n0, _DWAe,
1985
- { [_h]: ["POST", "/deleteWebApp", 200] }, () => DeleteWebAppRequest$, () => __Unit
1986
- ];
1987
- var DeleteWebAppCustomization$ = [9, n0, _DWACe,
1988
- { [_h]: ["POST", "/deleteWebAppCustomization", 200] }, () => DeleteWebAppCustomizationRequest$, () => __Unit
1989
- ];
1990
- var DeleteWorkflow$ = [9, n0, _DWe,
1991
- 2, () => DeleteWorkflowRequest$, () => __Unit
1992
- ];
1993
- var DescribeAccess$ = [9, n0, _DAes,
1994
- 0, () => DescribeAccessRequest$, () => DescribeAccessResponse$
1995
- ];
1996
- var DescribeAgreement$ = [9, n0, _DAesc,
1997
- 0, () => DescribeAgreementRequest$, () => DescribeAgreementResponse$
1998
- ];
1999
- var DescribeCertificate$ = [9, n0, _DCes,
2000
- 0, () => DescribeCertificateRequest$, () => DescribeCertificateResponse$
2001
- ];
2002
- var DescribeConnector$ = [9, n0, _DCesc,
2003
- 0, () => DescribeConnectorRequest$, () => DescribeConnectorResponse$
2004
- ];
2005
- var DescribeExecution$ = [9, n0, _DEe,
2006
- 0, () => DescribeExecutionRequest$, () => DescribeExecutionResponse$
2007
- ];
2008
- var DescribeHostKey$ = [9, n0, _DHKes,
2009
- 0, () => DescribeHostKeyRequest$, () => DescribeHostKeyResponse$
2010
- ];
2011
- var DescribeProfile$ = [9, n0, _DPes,
2012
- 0, () => DescribeProfileRequest$, () => DescribeProfileResponse$
2013
- ];
2014
- var DescribeSecurityPolicy$ = [9, n0, _DSPe,
2015
- 0, () => DescribeSecurityPolicyRequest$, () => DescribeSecurityPolicyResponse$
2016
- ];
2017
- var DescribeServer$ = [9, n0, _DSes,
2018
- 0, () => DescribeServerRequest$, () => DescribeServerResponse$
2019
- ];
2020
- var DescribeUser$ = [9, n0, _DUes,
2021
- 0, () => DescribeUserRequest$, () => DescribeUserResponse$
2022
- ];
2023
- var DescribeWebApp$ = [9, n0, _DWAes,
2024
- { [_h]: ["POST", "/describeWebApp", 200] }, () => DescribeWebAppRequest$, () => DescribeWebAppResponse$
2025
- ];
2026
- var DescribeWebAppCustomization$ = [9, n0, _DWACes,
2027
- { [_h]: ["POST", "/describeWebAppCustomization", 200] }, () => DescribeWebAppCustomizationRequest$, () => DescribeWebAppCustomizationResponse$
2028
- ];
2029
- var DescribeWorkflow$ = [9, n0, _DWes,
2030
- 0, () => DescribeWorkflowRequest$, () => DescribeWorkflowResponse$
2031
- ];
2032
- var ImportCertificate$ = [9, n0, _IC,
2033
- 0, () => ImportCertificateRequest$, () => ImportCertificateResponse$
2034
- ];
2035
- var ImportHostKey$ = [9, n0, _IHK,
2036
- 0, () => ImportHostKeyRequest$, () => ImportHostKeyResponse$
2037
- ];
2038
- var ImportSshPublicKey$ = [9, n0, _ISPK,
2039
- 0, () => ImportSshPublicKeyRequest$, () => ImportSshPublicKeyResponse$
2040
- ];
2041
- var ListAccesses$ = [9, n0, _LAistc,
2042
- 0, () => ListAccessesRequest$, () => ListAccessesResponse$
2043
- ];
2044
- var ListAgreements$ = [9, n0, _LAistg,
2045
- 0, () => ListAgreementsRequest$, () => ListAgreementsResponse$
2046
- ];
2047
- var ListCertificates$ = [9, n0, _LCister,
2048
- 0, () => ListCertificatesRequest$, () => ListCertificatesResponse$
2049
- ];
2050
- var ListConnectors$ = [9, n0, _LCisto,
2051
- 0, () => ListConnectorsRequest$, () => ListConnectorsResponse$
2052
- ];
2053
- var ListExecutions$ = [9, n0, _LEis,
2054
- 0, () => ListExecutionsRequest$, () => ListExecutionsResponse$
2055
- ];
2056
- var ListFileTransferResults$ = [9, n0, _LFTR,
2057
- { [_h]: ["POST", "/listFileTransferResults", 200] }, () => ListFileTransferResultsRequest$, () => ListFileTransferResultsResponse$
2058
- ];
2059
- var ListHostKeys$ = [9, n0, _LHKis,
2060
- 0, () => ListHostKeysRequest$, () => ListHostKeysResponse$
2061
- ];
2062
- var ListProfiles$ = [9, n0, _LPis,
2063
- 0, () => ListProfilesRequest$, () => ListProfilesResponse$
2064
- ];
2065
- var ListSecurityPolicies$ = [9, n0, _LSP,
2066
- 0, () => ListSecurityPoliciesRequest$, () => ListSecurityPoliciesResponse$
2067
- ];
2068
- var ListServers$ = [9, n0, _LSis,
2069
- 0, () => ListServersRequest$, () => ListServersResponse$
2070
- ];
2071
- var ListTagsForResource$ = [9, n0, _LTFR,
2072
- 0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
2073
- ];
2074
- var ListUsers$ = [9, n0, _LUis,
2075
- 0, () => ListUsersRequest$, () => ListUsersResponse$
2076
- ];
2077
- var ListWebApps$ = [9, n0, _LWAis,
2078
- { [_h]: ["POST", "/listWebApps", 200] }, () => ListWebAppsRequest$, () => ListWebAppsResponse$
2079
- ];
2080
- var ListWorkflows$ = [9, n0, _LWis,
2081
- 0, () => ListWorkflowsRequest$, () => ListWorkflowsResponse$
2082
- ];
2083
- var SendWorkflowStepState$ = [9, n0, _SWSS,
2084
- 0, () => SendWorkflowStepStateRequest$, () => SendWorkflowStepStateResponse$
2085
- ];
2086
- var StartDirectoryListing$ = [9, n0, _SDL,
2087
- 0, () => StartDirectoryListingRequest$, () => StartDirectoryListingResponse$
2088
- ];
2089
- var StartFileTransfer$ = [9, n0, _SFT,
2090
- 0, () => StartFileTransferRequest$, () => StartFileTransferResponse$
2091
- ];
2092
- var StartRemoteDelete$ = [9, n0, _SRD,
2093
- { [_h]: ["POST", "/startRemoteDelete", 200] }, () => StartRemoteDeleteRequest$, () => StartRemoteDeleteResponse$
2094
- ];
2095
- var StartRemoteMove$ = [9, n0, _SRM,
2096
- { [_h]: ["POST", "/startRemoteMove", 200] }, () => StartRemoteMoveRequest$, () => StartRemoteMoveResponse$
2097
- ];
2098
- var StartServer$ = [9, n0, _SS,
2099
- 0, () => StartServerRequest$, () => __Unit
2100
- ];
2101
- var StopServer$ = [9, n0, _SSt,
2102
- 0, () => StopServerRequest$, () => __Unit
2103
- ];
2104
- var TagResource$ = [9, n0, _TR,
2105
- 0, () => TagResourceRequest$, () => __Unit
2106
- ];
2107
- var TestConnection$ = [9, n0, _TCe,
2108
- 0, () => TestConnectionRequest$, () => TestConnectionResponse$
2109
- ];
2110
- var TestIdentityProvider$ = [9, n0, _TIP,
2111
- 0, () => TestIdentityProviderRequest$, () => TestIdentityProviderResponse$
2112
- ];
2113
- var UntagResource$ = [9, n0, _UR,
2114
- 0, () => UntagResourceRequest$, () => __Unit
2115
- ];
2116
- var UpdateAccess$ = [9, n0, _UA,
2117
- 0, () => UpdateAccessRequest$, () => UpdateAccessResponse$
2118
- ];
2119
- var UpdateAgreement$ = [9, n0, _UAp,
2120
- 0, () => UpdateAgreementRequest$, () => UpdateAgreementResponse$
2121
- ];
2122
- var UpdateCertificate$ = [9, n0, _UCp,
2123
- 0, () => UpdateCertificateRequest$, () => UpdateCertificateResponse$
2124
- ];
2125
- var UpdateConnector$ = [9, n0, _UCpd,
2126
- 0, () => UpdateConnectorRequest$, () => UpdateConnectorResponse$
2127
- ];
2128
- var UpdateHostKey$ = [9, n0, _UHK,
2129
- 0, () => UpdateHostKeyRequest$, () => UpdateHostKeyResponse$
2130
- ];
2131
- var UpdateProfile$ = [9, n0, _UPp,
2132
- 0, () => UpdateProfileRequest$, () => UpdateProfileResponse$
2133
- ];
2134
- var UpdateServer$ = [9, n0, _US,
2135
- 0, () => UpdateServerRequest$, () => UpdateServerResponse$
2136
- ];
2137
- var UpdateUser$ = [9, n0, _UU,
2138
- 0, () => UpdateUserRequest$, () => UpdateUserResponse$
2139
- ];
2140
- var UpdateWebApp$ = [9, n0, _UWA,
2141
- { [_h]: ["POST", "/updateWebApp", 200] }, () => UpdateWebAppRequest$, () => UpdateWebAppResponse$
2142
- ];
2143
- var UpdateWebAppCustomization$ = [9, n0, _UWAC,
2144
- { [_h]: ["POST", "/updateWebAppCustomization", 200] }, () => UpdateWebAppCustomizationRequest$, () => UpdateWebAppCustomizationResponse$
2145
- ];
2146
-
2147
117
  class CreateAccessCommand extends smithyClient.Command
2148
118
  .classBuilder()
2149
119
  .ep(commonParams)
@@ -2152,7 +122,7 @@ class CreateAccessCommand extends smithyClient.Command
2152
122
  })
2153
123
  .s("TransferService", "CreateAccess", {})
2154
124
  .n("TransferClient", "CreateAccessCommand")
2155
- .sc(CreateAccess$)
125
+ .sc(schemas_0.CreateAccess$)
2156
126
  .build() {
2157
127
  }
2158
128
 
@@ -2164,7 +134,7 @@ class CreateAgreementCommand extends smithyClient.Command
2164
134
  })
2165
135
  .s("TransferService", "CreateAgreement", {})
2166
136
  .n("TransferClient", "CreateAgreementCommand")
2167
- .sc(CreateAgreement$)
137
+ .sc(schemas_0.CreateAgreement$)
2168
138
  .build() {
2169
139
  }
2170
140
 
@@ -2176,7 +146,7 @@ class CreateConnectorCommand extends smithyClient.Command
2176
146
  })
2177
147
  .s("TransferService", "CreateConnector", {})
2178
148
  .n("TransferClient", "CreateConnectorCommand")
2179
- .sc(CreateConnector$)
149
+ .sc(schemas_0.CreateConnector$)
2180
150
  .build() {
2181
151
  }
2182
152
 
@@ -2188,7 +158,7 @@ class CreateProfileCommand extends smithyClient.Command
2188
158
  })
2189
159
  .s("TransferService", "CreateProfile", {})
2190
160
  .n("TransferClient", "CreateProfileCommand")
2191
- .sc(CreateProfile$)
161
+ .sc(schemas_0.CreateProfile$)
2192
162
  .build() {
2193
163
  }
2194
164
 
@@ -2200,7 +170,7 @@ class CreateServerCommand extends smithyClient.Command
2200
170
  })
2201
171
  .s("TransferService", "CreateServer", {})
2202
172
  .n("TransferClient", "CreateServerCommand")
2203
- .sc(CreateServer$)
173
+ .sc(schemas_0.CreateServer$)
2204
174
  .build() {
2205
175
  }
2206
176
 
@@ -2212,7 +182,7 @@ class CreateUserCommand extends smithyClient.Command
2212
182
  })
2213
183
  .s("TransferService", "CreateUser", {})
2214
184
  .n("TransferClient", "CreateUserCommand")
2215
- .sc(CreateUser$)
185
+ .sc(schemas_0.CreateUser$)
2216
186
  .build() {
2217
187
  }
2218
188
 
@@ -2224,7 +194,7 @@ class CreateWebAppCommand extends smithyClient.Command
2224
194
  })
2225
195
  .s("TransferService", "CreateWebApp", {})
2226
196
  .n("TransferClient", "CreateWebAppCommand")
2227
- .sc(CreateWebApp$)
197
+ .sc(schemas_0.CreateWebApp$)
2228
198
  .build() {
2229
199
  }
2230
200
 
@@ -2236,7 +206,7 @@ class CreateWorkflowCommand extends smithyClient.Command
2236
206
  })
2237
207
  .s("TransferService", "CreateWorkflow", {})
2238
208
  .n("TransferClient", "CreateWorkflowCommand")
2239
- .sc(CreateWorkflow$)
209
+ .sc(schemas_0.CreateWorkflow$)
2240
210
  .build() {
2241
211
  }
2242
212
 
@@ -2248,7 +218,7 @@ class DeleteAccessCommand extends smithyClient.Command
2248
218
  })
2249
219
  .s("TransferService", "DeleteAccess", {})
2250
220
  .n("TransferClient", "DeleteAccessCommand")
2251
- .sc(DeleteAccess$)
221
+ .sc(schemas_0.DeleteAccess$)
2252
222
  .build() {
2253
223
  }
2254
224
 
@@ -2260,7 +230,7 @@ class DeleteAgreementCommand extends smithyClient.Command
2260
230
  })
2261
231
  .s("TransferService", "DeleteAgreement", {})
2262
232
  .n("TransferClient", "DeleteAgreementCommand")
2263
- .sc(DeleteAgreement$)
233
+ .sc(schemas_0.DeleteAgreement$)
2264
234
  .build() {
2265
235
  }
2266
236
 
@@ -2272,7 +242,7 @@ class DeleteCertificateCommand extends smithyClient.Command
2272
242
  })
2273
243
  .s("TransferService", "DeleteCertificate", {})
2274
244
  .n("TransferClient", "DeleteCertificateCommand")
2275
- .sc(DeleteCertificate$)
245
+ .sc(schemas_0.DeleteCertificate$)
2276
246
  .build() {
2277
247
  }
2278
248
 
@@ -2284,7 +254,7 @@ class DeleteConnectorCommand extends smithyClient.Command
2284
254
  })
2285
255
  .s("TransferService", "DeleteConnector", {})
2286
256
  .n("TransferClient", "DeleteConnectorCommand")
2287
- .sc(DeleteConnector$)
257
+ .sc(schemas_0.DeleteConnector$)
2288
258
  .build() {
2289
259
  }
2290
260
 
@@ -2296,7 +266,7 @@ class DeleteHostKeyCommand extends smithyClient.Command
2296
266
  })
2297
267
  .s("TransferService", "DeleteHostKey", {})
2298
268
  .n("TransferClient", "DeleteHostKeyCommand")
2299
- .sc(DeleteHostKey$)
269
+ .sc(schemas_0.DeleteHostKey$)
2300
270
  .build() {
2301
271
  }
2302
272
 
@@ -2308,7 +278,7 @@ class DeleteProfileCommand extends smithyClient.Command
2308
278
  })
2309
279
  .s("TransferService", "DeleteProfile", {})
2310
280
  .n("TransferClient", "DeleteProfileCommand")
2311
- .sc(DeleteProfile$)
281
+ .sc(schemas_0.DeleteProfile$)
2312
282
  .build() {
2313
283
  }
2314
284
 
@@ -2320,7 +290,7 @@ class DeleteServerCommand extends smithyClient.Command
2320
290
  })
2321
291
  .s("TransferService", "DeleteServer", {})
2322
292
  .n("TransferClient", "DeleteServerCommand")
2323
- .sc(DeleteServer$)
293
+ .sc(schemas_0.DeleteServer$)
2324
294
  .build() {
2325
295
  }
2326
296
 
@@ -2332,7 +302,7 @@ class DeleteSshPublicKeyCommand extends smithyClient.Command
2332
302
  })
2333
303
  .s("TransferService", "DeleteSshPublicKey", {})
2334
304
  .n("TransferClient", "DeleteSshPublicKeyCommand")
2335
- .sc(DeleteSshPublicKey$)
305
+ .sc(schemas_0.DeleteSshPublicKey$)
2336
306
  .build() {
2337
307
  }
2338
308
 
@@ -2344,7 +314,7 @@ class DeleteUserCommand extends smithyClient.Command
2344
314
  })
2345
315
  .s("TransferService", "DeleteUser", {})
2346
316
  .n("TransferClient", "DeleteUserCommand")
2347
- .sc(DeleteUser$)
317
+ .sc(schemas_0.DeleteUser$)
2348
318
  .build() {
2349
319
  }
2350
320
 
@@ -2356,7 +326,7 @@ class DeleteWebAppCommand extends smithyClient.Command
2356
326
  })
2357
327
  .s("TransferService", "DeleteWebApp", {})
2358
328
  .n("TransferClient", "DeleteWebAppCommand")
2359
- .sc(DeleteWebApp$)
329
+ .sc(schemas_0.DeleteWebApp$)
2360
330
  .build() {
2361
331
  }
2362
332
 
@@ -2368,7 +338,7 @@ class DeleteWebAppCustomizationCommand extends smithyClient.Command
2368
338
  })
2369
339
  .s("TransferService", "DeleteWebAppCustomization", {})
2370
340
  .n("TransferClient", "DeleteWebAppCustomizationCommand")
2371
- .sc(DeleteWebAppCustomization$)
341
+ .sc(schemas_0.DeleteWebAppCustomization$)
2372
342
  .build() {
2373
343
  }
2374
344
 
@@ -2380,7 +350,7 @@ class DeleteWorkflowCommand extends smithyClient.Command
2380
350
  })
2381
351
  .s("TransferService", "DeleteWorkflow", {})
2382
352
  .n("TransferClient", "DeleteWorkflowCommand")
2383
- .sc(DeleteWorkflow$)
353
+ .sc(schemas_0.DeleteWorkflow$)
2384
354
  .build() {
2385
355
  }
2386
356
 
@@ -2392,7 +362,7 @@ class DescribeAccessCommand extends smithyClient.Command
2392
362
  })
2393
363
  .s("TransferService", "DescribeAccess", {})
2394
364
  .n("TransferClient", "DescribeAccessCommand")
2395
- .sc(DescribeAccess$)
365
+ .sc(schemas_0.DescribeAccess$)
2396
366
  .build() {
2397
367
  }
2398
368
 
@@ -2404,7 +374,7 @@ class DescribeAgreementCommand extends smithyClient.Command
2404
374
  })
2405
375
  .s("TransferService", "DescribeAgreement", {})
2406
376
  .n("TransferClient", "DescribeAgreementCommand")
2407
- .sc(DescribeAgreement$)
377
+ .sc(schemas_0.DescribeAgreement$)
2408
378
  .build() {
2409
379
  }
2410
380
 
@@ -2416,7 +386,7 @@ class DescribeCertificateCommand extends smithyClient.Command
2416
386
  })
2417
387
  .s("TransferService", "DescribeCertificate", {})
2418
388
  .n("TransferClient", "DescribeCertificateCommand")
2419
- .sc(DescribeCertificate$)
389
+ .sc(schemas_0.DescribeCertificate$)
2420
390
  .build() {
2421
391
  }
2422
392
 
@@ -2428,7 +398,7 @@ class DescribeConnectorCommand extends smithyClient.Command
2428
398
  })
2429
399
  .s("TransferService", "DescribeConnector", {})
2430
400
  .n("TransferClient", "DescribeConnectorCommand")
2431
- .sc(DescribeConnector$)
401
+ .sc(schemas_0.DescribeConnector$)
2432
402
  .build() {
2433
403
  }
2434
404
 
@@ -2440,7 +410,7 @@ class DescribeExecutionCommand extends smithyClient.Command
2440
410
  })
2441
411
  .s("TransferService", "DescribeExecution", {})
2442
412
  .n("TransferClient", "DescribeExecutionCommand")
2443
- .sc(DescribeExecution$)
413
+ .sc(schemas_0.DescribeExecution$)
2444
414
  .build() {
2445
415
  }
2446
416
 
@@ -2452,7 +422,7 @@ class DescribeHostKeyCommand extends smithyClient.Command
2452
422
  })
2453
423
  .s("TransferService", "DescribeHostKey", {})
2454
424
  .n("TransferClient", "DescribeHostKeyCommand")
2455
- .sc(DescribeHostKey$)
425
+ .sc(schemas_0.DescribeHostKey$)
2456
426
  .build() {
2457
427
  }
2458
428
 
@@ -2464,7 +434,7 @@ class DescribeProfileCommand extends smithyClient.Command
2464
434
  })
2465
435
  .s("TransferService", "DescribeProfile", {})
2466
436
  .n("TransferClient", "DescribeProfileCommand")
2467
- .sc(DescribeProfile$)
437
+ .sc(schemas_0.DescribeProfile$)
2468
438
  .build() {
2469
439
  }
2470
440
 
@@ -2476,7 +446,7 @@ class DescribeSecurityPolicyCommand extends smithyClient.Command
2476
446
  })
2477
447
  .s("TransferService", "DescribeSecurityPolicy", {})
2478
448
  .n("TransferClient", "DescribeSecurityPolicyCommand")
2479
- .sc(DescribeSecurityPolicy$)
449
+ .sc(schemas_0.DescribeSecurityPolicy$)
2480
450
  .build() {
2481
451
  }
2482
452
 
@@ -2488,7 +458,7 @@ class DescribeServerCommand extends smithyClient.Command
2488
458
  })
2489
459
  .s("TransferService", "DescribeServer", {})
2490
460
  .n("TransferClient", "DescribeServerCommand")
2491
- .sc(DescribeServer$)
461
+ .sc(schemas_0.DescribeServer$)
2492
462
  .build() {
2493
463
  }
2494
464
 
@@ -2500,7 +470,7 @@ class DescribeUserCommand extends smithyClient.Command
2500
470
  })
2501
471
  .s("TransferService", "DescribeUser", {})
2502
472
  .n("TransferClient", "DescribeUserCommand")
2503
- .sc(DescribeUser$)
473
+ .sc(schemas_0.DescribeUser$)
2504
474
  .build() {
2505
475
  }
2506
476
 
@@ -2512,7 +482,7 @@ class DescribeWebAppCommand extends smithyClient.Command
2512
482
  })
2513
483
  .s("TransferService", "DescribeWebApp", {})
2514
484
  .n("TransferClient", "DescribeWebAppCommand")
2515
- .sc(DescribeWebApp$)
485
+ .sc(schemas_0.DescribeWebApp$)
2516
486
  .build() {
2517
487
  }
2518
488
 
@@ -2524,7 +494,7 @@ class DescribeWebAppCustomizationCommand extends smithyClient.Command
2524
494
  })
2525
495
  .s("TransferService", "DescribeWebAppCustomization", {})
2526
496
  .n("TransferClient", "DescribeWebAppCustomizationCommand")
2527
- .sc(DescribeWebAppCustomization$)
497
+ .sc(schemas_0.DescribeWebAppCustomization$)
2528
498
  .build() {
2529
499
  }
2530
500
 
@@ -2536,7 +506,7 @@ class DescribeWorkflowCommand extends smithyClient.Command
2536
506
  })
2537
507
  .s("TransferService", "DescribeWorkflow", {})
2538
508
  .n("TransferClient", "DescribeWorkflowCommand")
2539
- .sc(DescribeWorkflow$)
509
+ .sc(schemas_0.DescribeWorkflow$)
2540
510
  .build() {
2541
511
  }
2542
512
 
@@ -2548,7 +518,7 @@ class ImportCertificateCommand extends smithyClient.Command
2548
518
  })
2549
519
  .s("TransferService", "ImportCertificate", {})
2550
520
  .n("TransferClient", "ImportCertificateCommand")
2551
- .sc(ImportCertificate$)
521
+ .sc(schemas_0.ImportCertificate$)
2552
522
  .build() {
2553
523
  }
2554
524
 
@@ -2560,7 +530,7 @@ class ImportHostKeyCommand extends smithyClient.Command
2560
530
  })
2561
531
  .s("TransferService", "ImportHostKey", {})
2562
532
  .n("TransferClient", "ImportHostKeyCommand")
2563
- .sc(ImportHostKey$)
533
+ .sc(schemas_0.ImportHostKey$)
2564
534
  .build() {
2565
535
  }
2566
536
 
@@ -2572,7 +542,7 @@ class ImportSshPublicKeyCommand extends smithyClient.Command
2572
542
  })
2573
543
  .s("TransferService", "ImportSshPublicKey", {})
2574
544
  .n("TransferClient", "ImportSshPublicKeyCommand")
2575
- .sc(ImportSshPublicKey$)
545
+ .sc(schemas_0.ImportSshPublicKey$)
2576
546
  .build() {
2577
547
  }
2578
548
 
@@ -2584,7 +554,7 @@ class ListAccessesCommand extends smithyClient.Command
2584
554
  })
2585
555
  .s("TransferService", "ListAccesses", {})
2586
556
  .n("TransferClient", "ListAccessesCommand")
2587
- .sc(ListAccesses$)
557
+ .sc(schemas_0.ListAccesses$)
2588
558
  .build() {
2589
559
  }
2590
560
 
@@ -2596,7 +566,7 @@ class ListAgreementsCommand extends smithyClient.Command
2596
566
  })
2597
567
  .s("TransferService", "ListAgreements", {})
2598
568
  .n("TransferClient", "ListAgreementsCommand")
2599
- .sc(ListAgreements$)
569
+ .sc(schemas_0.ListAgreements$)
2600
570
  .build() {
2601
571
  }
2602
572
 
@@ -2608,7 +578,7 @@ class ListCertificatesCommand extends smithyClient.Command
2608
578
  })
2609
579
  .s("TransferService", "ListCertificates", {})
2610
580
  .n("TransferClient", "ListCertificatesCommand")
2611
- .sc(ListCertificates$)
581
+ .sc(schemas_0.ListCertificates$)
2612
582
  .build() {
2613
583
  }
2614
584
 
@@ -2620,7 +590,7 @@ class ListConnectorsCommand extends smithyClient.Command
2620
590
  })
2621
591
  .s("TransferService", "ListConnectors", {})
2622
592
  .n("TransferClient", "ListConnectorsCommand")
2623
- .sc(ListConnectors$)
593
+ .sc(schemas_0.ListConnectors$)
2624
594
  .build() {
2625
595
  }
2626
596
 
@@ -2632,7 +602,7 @@ class ListExecutionsCommand extends smithyClient.Command
2632
602
  })
2633
603
  .s("TransferService", "ListExecutions", {})
2634
604
  .n("TransferClient", "ListExecutionsCommand")
2635
- .sc(ListExecutions$)
605
+ .sc(schemas_0.ListExecutions$)
2636
606
  .build() {
2637
607
  }
2638
608
 
@@ -2644,7 +614,7 @@ class ListFileTransferResultsCommand extends smithyClient.Command
2644
614
  })
2645
615
  .s("TransferService", "ListFileTransferResults", {})
2646
616
  .n("TransferClient", "ListFileTransferResultsCommand")
2647
- .sc(ListFileTransferResults$)
617
+ .sc(schemas_0.ListFileTransferResults$)
2648
618
  .build() {
2649
619
  }
2650
620
 
@@ -2656,7 +626,7 @@ class ListHostKeysCommand extends smithyClient.Command
2656
626
  })
2657
627
  .s("TransferService", "ListHostKeys", {})
2658
628
  .n("TransferClient", "ListHostKeysCommand")
2659
- .sc(ListHostKeys$)
629
+ .sc(schemas_0.ListHostKeys$)
2660
630
  .build() {
2661
631
  }
2662
632
 
@@ -2668,7 +638,7 @@ class ListProfilesCommand extends smithyClient.Command
2668
638
  })
2669
639
  .s("TransferService", "ListProfiles", {})
2670
640
  .n("TransferClient", "ListProfilesCommand")
2671
- .sc(ListProfiles$)
641
+ .sc(schemas_0.ListProfiles$)
2672
642
  .build() {
2673
643
  }
2674
644
 
@@ -2680,7 +650,7 @@ class ListSecurityPoliciesCommand extends smithyClient.Command
2680
650
  })
2681
651
  .s("TransferService", "ListSecurityPolicies", {})
2682
652
  .n("TransferClient", "ListSecurityPoliciesCommand")
2683
- .sc(ListSecurityPolicies$)
653
+ .sc(schemas_0.ListSecurityPolicies$)
2684
654
  .build() {
2685
655
  }
2686
656
 
@@ -2692,7 +662,7 @@ class ListServersCommand extends smithyClient.Command
2692
662
  })
2693
663
  .s("TransferService", "ListServers", {})
2694
664
  .n("TransferClient", "ListServersCommand")
2695
- .sc(ListServers$)
665
+ .sc(schemas_0.ListServers$)
2696
666
  .build() {
2697
667
  }
2698
668
 
@@ -2704,7 +674,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
2704
674
  })
2705
675
  .s("TransferService", "ListTagsForResource", {})
2706
676
  .n("TransferClient", "ListTagsForResourceCommand")
2707
- .sc(ListTagsForResource$)
677
+ .sc(schemas_0.ListTagsForResource$)
2708
678
  .build() {
2709
679
  }
2710
680
 
@@ -2716,7 +686,7 @@ class ListUsersCommand extends smithyClient.Command
2716
686
  })
2717
687
  .s("TransferService", "ListUsers", {})
2718
688
  .n("TransferClient", "ListUsersCommand")
2719
- .sc(ListUsers$)
689
+ .sc(schemas_0.ListUsers$)
2720
690
  .build() {
2721
691
  }
2722
692
 
@@ -2728,7 +698,7 @@ class ListWebAppsCommand extends smithyClient.Command
2728
698
  })
2729
699
  .s("TransferService", "ListWebApps", {})
2730
700
  .n("TransferClient", "ListWebAppsCommand")
2731
- .sc(ListWebApps$)
701
+ .sc(schemas_0.ListWebApps$)
2732
702
  .build() {
2733
703
  }
2734
704
 
@@ -2740,7 +710,7 @@ class ListWorkflowsCommand extends smithyClient.Command
2740
710
  })
2741
711
  .s("TransferService", "ListWorkflows", {})
2742
712
  .n("TransferClient", "ListWorkflowsCommand")
2743
- .sc(ListWorkflows$)
713
+ .sc(schemas_0.ListWorkflows$)
2744
714
  .build() {
2745
715
  }
2746
716
 
@@ -2752,7 +722,7 @@ class SendWorkflowStepStateCommand extends smithyClient.Command
2752
722
  })
2753
723
  .s("TransferService", "SendWorkflowStepState", {})
2754
724
  .n("TransferClient", "SendWorkflowStepStateCommand")
2755
- .sc(SendWorkflowStepState$)
725
+ .sc(schemas_0.SendWorkflowStepState$)
2756
726
  .build() {
2757
727
  }
2758
728
 
@@ -2764,7 +734,7 @@ class StartDirectoryListingCommand extends smithyClient.Command
2764
734
  })
2765
735
  .s("TransferService", "StartDirectoryListing", {})
2766
736
  .n("TransferClient", "StartDirectoryListingCommand")
2767
- .sc(StartDirectoryListing$)
737
+ .sc(schemas_0.StartDirectoryListing$)
2768
738
  .build() {
2769
739
  }
2770
740
 
@@ -2776,7 +746,7 @@ class StartFileTransferCommand extends smithyClient.Command
2776
746
  })
2777
747
  .s("TransferService", "StartFileTransfer", {})
2778
748
  .n("TransferClient", "StartFileTransferCommand")
2779
- .sc(StartFileTransfer$)
749
+ .sc(schemas_0.StartFileTransfer$)
2780
750
  .build() {
2781
751
  }
2782
752
 
@@ -2788,7 +758,7 @@ class StartRemoteDeleteCommand extends smithyClient.Command
2788
758
  })
2789
759
  .s("TransferService", "StartRemoteDelete", {})
2790
760
  .n("TransferClient", "StartRemoteDeleteCommand")
2791
- .sc(StartRemoteDelete$)
761
+ .sc(schemas_0.StartRemoteDelete$)
2792
762
  .build() {
2793
763
  }
2794
764
 
@@ -2800,7 +770,7 @@ class StartRemoteMoveCommand extends smithyClient.Command
2800
770
  })
2801
771
  .s("TransferService", "StartRemoteMove", {})
2802
772
  .n("TransferClient", "StartRemoteMoveCommand")
2803
- .sc(StartRemoteMove$)
773
+ .sc(schemas_0.StartRemoteMove$)
2804
774
  .build() {
2805
775
  }
2806
776
 
@@ -2812,7 +782,7 @@ class StartServerCommand extends smithyClient.Command
2812
782
  })
2813
783
  .s("TransferService", "StartServer", {})
2814
784
  .n("TransferClient", "StartServerCommand")
2815
- .sc(StartServer$)
785
+ .sc(schemas_0.StartServer$)
2816
786
  .build() {
2817
787
  }
2818
788
 
@@ -2824,7 +794,7 @@ class StopServerCommand extends smithyClient.Command
2824
794
  })
2825
795
  .s("TransferService", "StopServer", {})
2826
796
  .n("TransferClient", "StopServerCommand")
2827
- .sc(StopServer$)
797
+ .sc(schemas_0.StopServer$)
2828
798
  .build() {
2829
799
  }
2830
800
 
@@ -2836,7 +806,7 @@ class TagResourceCommand extends smithyClient.Command
2836
806
  })
2837
807
  .s("TransferService", "TagResource", {})
2838
808
  .n("TransferClient", "TagResourceCommand")
2839
- .sc(TagResource$)
809
+ .sc(schemas_0.TagResource$)
2840
810
  .build() {
2841
811
  }
2842
812
 
@@ -2848,7 +818,7 @@ class TestConnectionCommand extends smithyClient.Command
2848
818
  })
2849
819
  .s("TransferService", "TestConnection", {})
2850
820
  .n("TransferClient", "TestConnectionCommand")
2851
- .sc(TestConnection$)
821
+ .sc(schemas_0.TestConnection$)
2852
822
  .build() {
2853
823
  }
2854
824
 
@@ -2860,7 +830,7 @@ class TestIdentityProviderCommand extends smithyClient.Command
2860
830
  })
2861
831
  .s("TransferService", "TestIdentityProvider", {})
2862
832
  .n("TransferClient", "TestIdentityProviderCommand")
2863
- .sc(TestIdentityProvider$)
833
+ .sc(schemas_0.TestIdentityProvider$)
2864
834
  .build() {
2865
835
  }
2866
836
 
@@ -2872,7 +842,7 @@ class UntagResourceCommand extends smithyClient.Command
2872
842
  })
2873
843
  .s("TransferService", "UntagResource", {})
2874
844
  .n("TransferClient", "UntagResourceCommand")
2875
- .sc(UntagResource$)
845
+ .sc(schemas_0.UntagResource$)
2876
846
  .build() {
2877
847
  }
2878
848
 
@@ -2884,7 +854,7 @@ class UpdateAccessCommand extends smithyClient.Command
2884
854
  })
2885
855
  .s("TransferService", "UpdateAccess", {})
2886
856
  .n("TransferClient", "UpdateAccessCommand")
2887
- .sc(UpdateAccess$)
857
+ .sc(schemas_0.UpdateAccess$)
2888
858
  .build() {
2889
859
  }
2890
860
 
@@ -2896,7 +866,7 @@ class UpdateAgreementCommand extends smithyClient.Command
2896
866
  })
2897
867
  .s("TransferService", "UpdateAgreement", {})
2898
868
  .n("TransferClient", "UpdateAgreementCommand")
2899
- .sc(UpdateAgreement$)
869
+ .sc(schemas_0.UpdateAgreement$)
2900
870
  .build() {
2901
871
  }
2902
872
 
@@ -2908,7 +878,7 @@ class UpdateCertificateCommand extends smithyClient.Command
2908
878
  })
2909
879
  .s("TransferService", "UpdateCertificate", {})
2910
880
  .n("TransferClient", "UpdateCertificateCommand")
2911
- .sc(UpdateCertificate$)
881
+ .sc(schemas_0.UpdateCertificate$)
2912
882
  .build() {
2913
883
  }
2914
884
 
@@ -2920,7 +890,7 @@ class UpdateConnectorCommand extends smithyClient.Command
2920
890
  })
2921
891
  .s("TransferService", "UpdateConnector", {})
2922
892
  .n("TransferClient", "UpdateConnectorCommand")
2923
- .sc(UpdateConnector$)
893
+ .sc(schemas_0.UpdateConnector$)
2924
894
  .build() {
2925
895
  }
2926
896
 
@@ -2932,7 +902,7 @@ class UpdateHostKeyCommand extends smithyClient.Command
2932
902
  })
2933
903
  .s("TransferService", "UpdateHostKey", {})
2934
904
  .n("TransferClient", "UpdateHostKeyCommand")
2935
- .sc(UpdateHostKey$)
905
+ .sc(schemas_0.UpdateHostKey$)
2936
906
  .build() {
2937
907
  }
2938
908
 
@@ -2944,7 +914,7 @@ class UpdateProfileCommand extends smithyClient.Command
2944
914
  })
2945
915
  .s("TransferService", "UpdateProfile", {})
2946
916
  .n("TransferClient", "UpdateProfileCommand")
2947
- .sc(UpdateProfile$)
917
+ .sc(schemas_0.UpdateProfile$)
2948
918
  .build() {
2949
919
  }
2950
920
 
@@ -2956,7 +926,7 @@ class UpdateServerCommand extends smithyClient.Command
2956
926
  })
2957
927
  .s("TransferService", "UpdateServer", {})
2958
928
  .n("TransferClient", "UpdateServerCommand")
2959
- .sc(UpdateServer$)
929
+ .sc(schemas_0.UpdateServer$)
2960
930
  .build() {
2961
931
  }
2962
932
 
@@ -2968,7 +938,7 @@ class UpdateUserCommand extends smithyClient.Command
2968
938
  })
2969
939
  .s("TransferService", "UpdateUser", {})
2970
940
  .n("TransferClient", "UpdateUserCommand")
2971
- .sc(UpdateUser$)
941
+ .sc(schemas_0.UpdateUser$)
2972
942
  .build() {
2973
943
  }
2974
944
 
@@ -2980,7 +950,7 @@ class UpdateWebAppCommand extends smithyClient.Command
2980
950
  })
2981
951
  .s("TransferService", "UpdateWebApp", {})
2982
952
  .n("TransferClient", "UpdateWebAppCommand")
2983
- .sc(UpdateWebApp$)
953
+ .sc(schemas_0.UpdateWebApp$)
2984
954
  .build() {
2985
955
  }
2986
956
 
@@ -2992,7 +962,7 @@ class UpdateWebAppCustomizationCommand extends smithyClient.Command
2992
962
  })
2993
963
  .s("TransferService", "UpdateWebAppCustomization", {})
2994
964
  .n("TransferClient", "UpdateWebAppCustomizationCommand")
2995
- .sc(UpdateWebAppCustomization$)
965
+ .sc(schemas_0.UpdateWebAppCustomization$)
2996
966
  .build() {
2997
967
  }
2998
968
 
@@ -3398,412 +1368,121 @@ Object.defineProperty(exports, "__Client", {
3398
1368
  enumerable: true,
3399
1369
  get: function () { return smithyClient.Client; }
3400
1370
  });
3401
- exports.AccessDeniedException = AccessDeniedException;
3402
- exports.AccessDeniedException$ = AccessDeniedException$;
1371
+ Object.defineProperty(exports, "TransferServiceException", {
1372
+ enumerable: true,
1373
+ get: function () { return TransferServiceException.TransferServiceException; }
1374
+ });
3403
1375
  exports.AgreementStatusType = AgreementStatusType;
3404
- exports.As2AsyncMdnConnectorConfig$ = As2AsyncMdnConnectorConfig$;
3405
- exports.As2ConnectorConfig$ = As2ConnectorConfig$;
3406
1376
  exports.As2Transport = As2Transport;
3407
1377
  exports.CertificateStatusType = CertificateStatusType;
3408
1378
  exports.CertificateType = CertificateType;
3409
1379
  exports.CertificateUsageType = CertificateUsageType;
3410
1380
  exports.CompressionEnum = CompressionEnum;
3411
- exports.ConflictException = ConflictException;
3412
- exports.ConflictException$ = ConflictException$;
3413
- exports.ConnectorEgressConfig$ = ConnectorEgressConfig$;
3414
1381
  exports.ConnectorEgressType = ConnectorEgressType;
3415
- exports.ConnectorFileTransferResult$ = ConnectorFileTransferResult$;
3416
1382
  exports.ConnectorStatus = ConnectorStatus;
3417
- exports.ConnectorVpcLatticeEgressConfig$ = ConnectorVpcLatticeEgressConfig$;
3418
- exports.CopyStepDetails$ = CopyStepDetails$;
3419
- exports.CreateAccess$ = CreateAccess$;
3420
1383
  exports.CreateAccessCommand = CreateAccessCommand;
3421
- exports.CreateAccessRequest$ = CreateAccessRequest$;
3422
- exports.CreateAccessResponse$ = CreateAccessResponse$;
3423
- exports.CreateAgreement$ = CreateAgreement$;
3424
1384
  exports.CreateAgreementCommand = CreateAgreementCommand;
3425
- exports.CreateAgreementRequest$ = CreateAgreementRequest$;
3426
- exports.CreateAgreementResponse$ = CreateAgreementResponse$;
3427
- exports.CreateConnector$ = CreateConnector$;
3428
1385
  exports.CreateConnectorCommand = CreateConnectorCommand;
3429
- exports.CreateConnectorRequest$ = CreateConnectorRequest$;
3430
- exports.CreateConnectorResponse$ = CreateConnectorResponse$;
3431
- exports.CreateProfile$ = CreateProfile$;
3432
1386
  exports.CreateProfileCommand = CreateProfileCommand;
3433
- exports.CreateProfileRequest$ = CreateProfileRequest$;
3434
- exports.CreateProfileResponse$ = CreateProfileResponse$;
3435
- exports.CreateServer$ = CreateServer$;
3436
1387
  exports.CreateServerCommand = CreateServerCommand;
3437
- exports.CreateServerRequest$ = CreateServerRequest$;
3438
- exports.CreateServerResponse$ = CreateServerResponse$;
3439
- exports.CreateUser$ = CreateUser$;
3440
1388
  exports.CreateUserCommand = CreateUserCommand;
3441
- exports.CreateUserRequest$ = CreateUserRequest$;
3442
- exports.CreateUserResponse$ = CreateUserResponse$;
3443
- exports.CreateWebApp$ = CreateWebApp$;
3444
1389
  exports.CreateWebAppCommand = CreateWebAppCommand;
3445
- exports.CreateWebAppRequest$ = CreateWebAppRequest$;
3446
- exports.CreateWebAppResponse$ = CreateWebAppResponse$;
3447
- exports.CreateWorkflow$ = CreateWorkflow$;
3448
1390
  exports.CreateWorkflowCommand = CreateWorkflowCommand;
3449
- exports.CreateWorkflowRequest$ = CreateWorkflowRequest$;
3450
- exports.CreateWorkflowResponse$ = CreateWorkflowResponse$;
3451
- exports.CustomDirectoriesType$ = CustomDirectoriesType$;
3452
- exports.CustomHttpHeader$ = CustomHttpHeader$;
3453
- exports.CustomStepDetails$ = CustomStepDetails$;
3454
1391
  exports.CustomStepStatus = CustomStepStatus;
3455
- exports.DecryptStepDetails$ = DecryptStepDetails$;
3456
- exports.DeleteAccess$ = DeleteAccess$;
3457
1392
  exports.DeleteAccessCommand = DeleteAccessCommand;
3458
- exports.DeleteAccessRequest$ = DeleteAccessRequest$;
3459
- exports.DeleteAgreement$ = DeleteAgreement$;
3460
1393
  exports.DeleteAgreementCommand = DeleteAgreementCommand;
3461
- exports.DeleteAgreementRequest$ = DeleteAgreementRequest$;
3462
- exports.DeleteCertificate$ = DeleteCertificate$;
3463
1394
  exports.DeleteCertificateCommand = DeleteCertificateCommand;
3464
- exports.DeleteCertificateRequest$ = DeleteCertificateRequest$;
3465
- exports.DeleteConnector$ = DeleteConnector$;
3466
1395
  exports.DeleteConnectorCommand = DeleteConnectorCommand;
3467
- exports.DeleteConnectorRequest$ = DeleteConnectorRequest$;
3468
- exports.DeleteHostKey$ = DeleteHostKey$;
3469
1396
  exports.DeleteHostKeyCommand = DeleteHostKeyCommand;
3470
- exports.DeleteHostKeyRequest$ = DeleteHostKeyRequest$;
3471
- exports.DeleteProfile$ = DeleteProfile$;
3472
1397
  exports.DeleteProfileCommand = DeleteProfileCommand;
3473
- exports.DeleteProfileRequest$ = DeleteProfileRequest$;
3474
- exports.DeleteServer$ = DeleteServer$;
3475
1398
  exports.DeleteServerCommand = DeleteServerCommand;
3476
- exports.DeleteServerRequest$ = DeleteServerRequest$;
3477
- exports.DeleteSshPublicKey$ = DeleteSshPublicKey$;
3478
1399
  exports.DeleteSshPublicKeyCommand = DeleteSshPublicKeyCommand;
3479
- exports.DeleteSshPublicKeyRequest$ = DeleteSshPublicKeyRequest$;
3480
- exports.DeleteStepDetails$ = DeleteStepDetails$;
3481
- exports.DeleteUser$ = DeleteUser$;
3482
1400
  exports.DeleteUserCommand = DeleteUserCommand;
3483
- exports.DeleteUserRequest$ = DeleteUserRequest$;
3484
- exports.DeleteWebApp$ = DeleteWebApp$;
3485
1401
  exports.DeleteWebAppCommand = DeleteWebAppCommand;
3486
- exports.DeleteWebAppCustomization$ = DeleteWebAppCustomization$;
3487
1402
  exports.DeleteWebAppCustomizationCommand = DeleteWebAppCustomizationCommand;
3488
- exports.DeleteWebAppCustomizationRequest$ = DeleteWebAppCustomizationRequest$;
3489
- exports.DeleteWebAppRequest$ = DeleteWebAppRequest$;
3490
- exports.DeleteWorkflow$ = DeleteWorkflow$;
3491
1403
  exports.DeleteWorkflowCommand = DeleteWorkflowCommand;
3492
- exports.DeleteWorkflowRequest$ = DeleteWorkflowRequest$;
3493
- exports.DescribeAccess$ = DescribeAccess$;
3494
1404
  exports.DescribeAccessCommand = DescribeAccessCommand;
3495
- exports.DescribeAccessRequest$ = DescribeAccessRequest$;
3496
- exports.DescribeAccessResponse$ = DescribeAccessResponse$;
3497
- exports.DescribeAgreement$ = DescribeAgreement$;
3498
1405
  exports.DescribeAgreementCommand = DescribeAgreementCommand;
3499
- exports.DescribeAgreementRequest$ = DescribeAgreementRequest$;
3500
- exports.DescribeAgreementResponse$ = DescribeAgreementResponse$;
3501
- exports.DescribeCertificate$ = DescribeCertificate$;
3502
1406
  exports.DescribeCertificateCommand = DescribeCertificateCommand;
3503
- exports.DescribeCertificateRequest$ = DescribeCertificateRequest$;
3504
- exports.DescribeCertificateResponse$ = DescribeCertificateResponse$;
3505
- exports.DescribeConnector$ = DescribeConnector$;
3506
1407
  exports.DescribeConnectorCommand = DescribeConnectorCommand;
3507
- exports.DescribeConnectorRequest$ = DescribeConnectorRequest$;
3508
- exports.DescribeConnectorResponse$ = DescribeConnectorResponse$;
3509
- exports.DescribeExecution$ = DescribeExecution$;
3510
1408
  exports.DescribeExecutionCommand = DescribeExecutionCommand;
3511
- exports.DescribeExecutionRequest$ = DescribeExecutionRequest$;
3512
- exports.DescribeExecutionResponse$ = DescribeExecutionResponse$;
3513
- exports.DescribeHostKey$ = DescribeHostKey$;
3514
1409
  exports.DescribeHostKeyCommand = DescribeHostKeyCommand;
3515
- exports.DescribeHostKeyRequest$ = DescribeHostKeyRequest$;
3516
- exports.DescribeHostKeyResponse$ = DescribeHostKeyResponse$;
3517
- exports.DescribeProfile$ = DescribeProfile$;
3518
1410
  exports.DescribeProfileCommand = DescribeProfileCommand;
3519
- exports.DescribeProfileRequest$ = DescribeProfileRequest$;
3520
- exports.DescribeProfileResponse$ = DescribeProfileResponse$;
3521
- exports.DescribeSecurityPolicy$ = DescribeSecurityPolicy$;
3522
1411
  exports.DescribeSecurityPolicyCommand = DescribeSecurityPolicyCommand;
3523
- exports.DescribeSecurityPolicyRequest$ = DescribeSecurityPolicyRequest$;
3524
- exports.DescribeSecurityPolicyResponse$ = DescribeSecurityPolicyResponse$;
3525
- exports.DescribeServer$ = DescribeServer$;
3526
1412
  exports.DescribeServerCommand = DescribeServerCommand;
3527
- exports.DescribeServerRequest$ = DescribeServerRequest$;
3528
- exports.DescribeServerResponse$ = DescribeServerResponse$;
3529
- exports.DescribeUser$ = DescribeUser$;
3530
1413
  exports.DescribeUserCommand = DescribeUserCommand;
3531
- exports.DescribeUserRequest$ = DescribeUserRequest$;
3532
- exports.DescribeUserResponse$ = DescribeUserResponse$;
3533
- exports.DescribeWebApp$ = DescribeWebApp$;
3534
1414
  exports.DescribeWebAppCommand = DescribeWebAppCommand;
3535
- exports.DescribeWebAppCustomization$ = DescribeWebAppCustomization$;
3536
1415
  exports.DescribeWebAppCustomizationCommand = DescribeWebAppCustomizationCommand;
3537
- exports.DescribeWebAppCustomizationRequest$ = DescribeWebAppCustomizationRequest$;
3538
- exports.DescribeWebAppCustomizationResponse$ = DescribeWebAppCustomizationResponse$;
3539
- exports.DescribeWebAppRequest$ = DescribeWebAppRequest$;
3540
- exports.DescribeWebAppResponse$ = DescribeWebAppResponse$;
3541
- exports.DescribeWorkflow$ = DescribeWorkflow$;
3542
1416
  exports.DescribeWorkflowCommand = DescribeWorkflowCommand;
3543
- exports.DescribeWorkflowRequest$ = DescribeWorkflowRequest$;
3544
- exports.DescribeWorkflowResponse$ = DescribeWorkflowResponse$;
3545
- exports.DescribedAccess$ = DescribedAccess$;
3546
- exports.DescribedAgreement$ = DescribedAgreement$;
3547
- exports.DescribedCertificate$ = DescribedCertificate$;
3548
- exports.DescribedConnector$ = DescribedConnector$;
3549
- exports.DescribedConnectorEgressConfig$ = DescribedConnectorEgressConfig$;
3550
- exports.DescribedConnectorVpcLatticeEgressConfig$ = DescribedConnectorVpcLatticeEgressConfig$;
3551
- exports.DescribedExecution$ = DescribedExecution$;
3552
- exports.DescribedHostKey$ = DescribedHostKey$;
3553
- exports.DescribedIdentityCenterConfig$ = DescribedIdentityCenterConfig$;
3554
- exports.DescribedProfile$ = DescribedProfile$;
3555
- exports.DescribedSecurityPolicy$ = DescribedSecurityPolicy$;
3556
- exports.DescribedServer$ = DescribedServer$;
3557
- exports.DescribedUser$ = DescribedUser$;
3558
- exports.DescribedWebApp$ = DescribedWebApp$;
3559
- exports.DescribedWebAppCustomization$ = DescribedWebAppCustomization$;
3560
- exports.DescribedWebAppEndpointDetails$ = DescribedWebAppEndpointDetails$;
3561
- exports.DescribedWebAppIdentityProviderDetails$ = DescribedWebAppIdentityProviderDetails$;
3562
- exports.DescribedWebAppVpcConfig$ = DescribedWebAppVpcConfig$;
3563
- exports.DescribedWorkflow$ = DescribedWorkflow$;
3564
1417
  exports.DirectoryListingOptimization = DirectoryListingOptimization;
3565
1418
  exports.Domain = Domain;
3566
- exports.EfsFileLocation$ = EfsFileLocation$;
3567
1419
  exports.EncryptionAlg = EncryptionAlg;
3568
1420
  exports.EncryptionType = EncryptionType;
3569
- exports.EndpointDetails$ = EndpointDetails$;
3570
1421
  exports.EndpointType = EndpointType;
3571
1422
  exports.EnforceMessageSigningType = EnforceMessageSigningType;
3572
- exports.ExecutionError$ = ExecutionError$;
3573
1423
  exports.ExecutionErrorType = ExecutionErrorType;
3574
- exports.ExecutionResults$ = ExecutionResults$;
3575
1424
  exports.ExecutionStatus = ExecutionStatus;
3576
- exports.ExecutionStepResult$ = ExecutionStepResult$;
3577
- exports.FileLocation$ = FileLocation$;
3578
- exports.HomeDirectoryMapEntry$ = HomeDirectoryMapEntry$;
3579
1425
  exports.HomeDirectoryType = HomeDirectoryType;
3580
- exports.IdentityCenterConfig$ = IdentityCenterConfig$;
3581
- exports.IdentityProviderDetails$ = IdentityProviderDetails$;
3582
1426
  exports.IdentityProviderType = IdentityProviderType;
3583
- exports.ImportCertificate$ = ImportCertificate$;
3584
1427
  exports.ImportCertificateCommand = ImportCertificateCommand;
3585
- exports.ImportCertificateRequest$ = ImportCertificateRequest$;
3586
- exports.ImportCertificateResponse$ = ImportCertificateResponse$;
3587
- exports.ImportHostKey$ = ImportHostKey$;
3588
1428
  exports.ImportHostKeyCommand = ImportHostKeyCommand;
3589
- exports.ImportHostKeyRequest$ = ImportHostKeyRequest$;
3590
- exports.ImportHostKeyResponse$ = ImportHostKeyResponse$;
3591
- exports.ImportSshPublicKey$ = ImportSshPublicKey$;
3592
1429
  exports.ImportSshPublicKeyCommand = ImportSshPublicKeyCommand;
3593
- exports.ImportSshPublicKeyRequest$ = ImportSshPublicKeyRequest$;
3594
- exports.ImportSshPublicKeyResponse$ = ImportSshPublicKeyResponse$;
3595
- exports.InputFileLocation$ = InputFileLocation$;
3596
- exports.InternalServiceError = InternalServiceError;
3597
- exports.InternalServiceError$ = InternalServiceError$;
3598
- exports.InvalidNextTokenException = InvalidNextTokenException;
3599
- exports.InvalidNextTokenException$ = InvalidNextTokenException$;
3600
- exports.InvalidRequestException = InvalidRequestException;
3601
- exports.InvalidRequestException$ = InvalidRequestException$;
3602
1430
  exports.IpAddressType = IpAddressType;
3603
- exports.ListAccesses$ = ListAccesses$;
3604
1431
  exports.ListAccessesCommand = ListAccessesCommand;
3605
- exports.ListAccessesRequest$ = ListAccessesRequest$;
3606
- exports.ListAccessesResponse$ = ListAccessesResponse$;
3607
- exports.ListAgreements$ = ListAgreements$;
3608
1432
  exports.ListAgreementsCommand = ListAgreementsCommand;
3609
- exports.ListAgreementsRequest$ = ListAgreementsRequest$;
3610
- exports.ListAgreementsResponse$ = ListAgreementsResponse$;
3611
- exports.ListCertificates$ = ListCertificates$;
3612
1433
  exports.ListCertificatesCommand = ListCertificatesCommand;
3613
- exports.ListCertificatesRequest$ = ListCertificatesRequest$;
3614
- exports.ListCertificatesResponse$ = ListCertificatesResponse$;
3615
- exports.ListConnectors$ = ListConnectors$;
3616
1434
  exports.ListConnectorsCommand = ListConnectorsCommand;
3617
- exports.ListConnectorsRequest$ = ListConnectorsRequest$;
3618
- exports.ListConnectorsResponse$ = ListConnectorsResponse$;
3619
- exports.ListExecutions$ = ListExecutions$;
3620
1435
  exports.ListExecutionsCommand = ListExecutionsCommand;
3621
- exports.ListExecutionsRequest$ = ListExecutionsRequest$;
3622
- exports.ListExecutionsResponse$ = ListExecutionsResponse$;
3623
- exports.ListFileTransferResults$ = ListFileTransferResults$;
3624
1436
  exports.ListFileTransferResultsCommand = ListFileTransferResultsCommand;
3625
- exports.ListFileTransferResultsRequest$ = ListFileTransferResultsRequest$;
3626
- exports.ListFileTransferResultsResponse$ = ListFileTransferResultsResponse$;
3627
- exports.ListHostKeys$ = ListHostKeys$;
3628
1437
  exports.ListHostKeysCommand = ListHostKeysCommand;
3629
- exports.ListHostKeysRequest$ = ListHostKeysRequest$;
3630
- exports.ListHostKeysResponse$ = ListHostKeysResponse$;
3631
- exports.ListProfiles$ = ListProfiles$;
3632
1438
  exports.ListProfilesCommand = ListProfilesCommand;
3633
- exports.ListProfilesRequest$ = ListProfilesRequest$;
3634
- exports.ListProfilesResponse$ = ListProfilesResponse$;
3635
- exports.ListSecurityPolicies$ = ListSecurityPolicies$;
3636
1439
  exports.ListSecurityPoliciesCommand = ListSecurityPoliciesCommand;
3637
- exports.ListSecurityPoliciesRequest$ = ListSecurityPoliciesRequest$;
3638
- exports.ListSecurityPoliciesResponse$ = ListSecurityPoliciesResponse$;
3639
- exports.ListServers$ = ListServers$;
3640
1440
  exports.ListServersCommand = ListServersCommand;
3641
- exports.ListServersRequest$ = ListServersRequest$;
3642
- exports.ListServersResponse$ = ListServersResponse$;
3643
- exports.ListTagsForResource$ = ListTagsForResource$;
3644
1441
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3645
- exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
3646
- exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
3647
- exports.ListUsers$ = ListUsers$;
3648
1442
  exports.ListUsersCommand = ListUsersCommand;
3649
- exports.ListUsersRequest$ = ListUsersRequest$;
3650
- exports.ListUsersResponse$ = ListUsersResponse$;
3651
- exports.ListWebApps$ = ListWebApps$;
3652
1443
  exports.ListWebAppsCommand = ListWebAppsCommand;
3653
- exports.ListWebAppsRequest$ = ListWebAppsRequest$;
3654
- exports.ListWebAppsResponse$ = ListWebAppsResponse$;
3655
- exports.ListWorkflows$ = ListWorkflows$;
3656
1444
  exports.ListWorkflowsCommand = ListWorkflowsCommand;
3657
- exports.ListWorkflowsRequest$ = ListWorkflowsRequest$;
3658
- exports.ListWorkflowsResponse$ = ListWorkflowsResponse$;
3659
- exports.ListedAccess$ = ListedAccess$;
3660
- exports.ListedAgreement$ = ListedAgreement$;
3661
- exports.ListedCertificate$ = ListedCertificate$;
3662
- exports.ListedConnector$ = ListedConnector$;
3663
- exports.ListedExecution$ = ListedExecution$;
3664
- exports.ListedHostKey$ = ListedHostKey$;
3665
- exports.ListedProfile$ = ListedProfile$;
3666
- exports.ListedServer$ = ListedServer$;
3667
- exports.ListedUser$ = ListedUser$;
3668
- exports.ListedWebApp$ = ListedWebApp$;
3669
- exports.ListedWorkflow$ = ListedWorkflow$;
3670
- exports.LoggingConfiguration$ = LoggingConfiguration$;
3671
1445
  exports.MapType = MapType;
3672
1446
  exports.MdnResponse = MdnResponse;
3673
1447
  exports.MdnSigningAlg = MdnSigningAlg;
3674
1448
  exports.OverwriteExisting = OverwriteExisting;
3675
- exports.PosixProfile$ = PosixProfile$;
3676
1449
  exports.PreserveContentType = PreserveContentType;
3677
1450
  exports.PreserveFilenameType = PreserveFilenameType;
3678
1451
  exports.ProfileType = ProfileType;
3679
1452
  exports.Protocol = Protocol;
3680
- exports.ProtocolDetails$ = ProtocolDetails$;
3681
- exports.ResourceExistsException = ResourceExistsException;
3682
- exports.ResourceExistsException$ = ResourceExistsException$;
3683
- exports.ResourceNotFoundException = ResourceNotFoundException;
3684
- exports.ResourceNotFoundException$ = ResourceNotFoundException$;
3685
- exports.S3FileLocation$ = S3FileLocation$;
3686
- exports.S3InputFileLocation$ = S3InputFileLocation$;
3687
- exports.S3StorageOptions$ = S3StorageOptions$;
3688
- exports.S3Tag$ = S3Tag$;
3689
1453
  exports.SecurityPolicyProtocol = SecurityPolicyProtocol;
3690
1454
  exports.SecurityPolicyResourceType = SecurityPolicyResourceType;
3691
- exports.SendWorkflowStepState$ = SendWorkflowStepState$;
3692
1455
  exports.SendWorkflowStepStateCommand = SendWorkflowStepStateCommand;
3693
- exports.SendWorkflowStepStateRequest$ = SendWorkflowStepStateRequest$;
3694
- exports.SendWorkflowStepStateResponse$ = SendWorkflowStepStateResponse$;
3695
- exports.ServiceMetadata$ = ServiceMetadata$;
3696
- exports.ServiceUnavailableException = ServiceUnavailableException;
3697
- exports.ServiceUnavailableException$ = ServiceUnavailableException$;
3698
1456
  exports.SetStatOption = SetStatOption;
3699
1457
  exports.SftpAuthenticationMethods = SftpAuthenticationMethods;
3700
- exports.SftpConnectorConfig$ = SftpConnectorConfig$;
3701
- exports.SftpConnectorConnectionDetails$ = SftpConnectorConnectionDetails$;
3702
1458
  exports.SigningAlg = SigningAlg;
3703
- exports.SshPublicKey$ = SshPublicKey$;
3704
- exports.StartDirectoryListing$ = StartDirectoryListing$;
3705
1459
  exports.StartDirectoryListingCommand = StartDirectoryListingCommand;
3706
- exports.StartDirectoryListingRequest$ = StartDirectoryListingRequest$;
3707
- exports.StartDirectoryListingResponse$ = StartDirectoryListingResponse$;
3708
- exports.StartFileTransfer$ = StartFileTransfer$;
3709
1460
  exports.StartFileTransferCommand = StartFileTransferCommand;
3710
- exports.StartFileTransferRequest$ = StartFileTransferRequest$;
3711
- exports.StartFileTransferResponse$ = StartFileTransferResponse$;
3712
- exports.StartRemoteDelete$ = StartRemoteDelete$;
3713
1461
  exports.StartRemoteDeleteCommand = StartRemoteDeleteCommand;
3714
- exports.StartRemoteDeleteRequest$ = StartRemoteDeleteRequest$;
3715
- exports.StartRemoteDeleteResponse$ = StartRemoteDeleteResponse$;
3716
- exports.StartRemoteMove$ = StartRemoteMove$;
3717
1462
  exports.StartRemoteMoveCommand = StartRemoteMoveCommand;
3718
- exports.StartRemoteMoveRequest$ = StartRemoteMoveRequest$;
3719
- exports.StartRemoteMoveResponse$ = StartRemoteMoveResponse$;
3720
- exports.StartServer$ = StartServer$;
3721
1463
  exports.StartServerCommand = StartServerCommand;
3722
- exports.StartServerRequest$ = StartServerRequest$;
3723
1464
  exports.State = State;
3724
- exports.StopServer$ = StopServer$;
3725
1465
  exports.StopServerCommand = StopServerCommand;
3726
- exports.StopServerRequest$ = StopServerRequest$;
3727
- exports.Tag$ = Tag$;
3728
- exports.TagResource$ = TagResource$;
3729
1466
  exports.TagResourceCommand = TagResourceCommand;
3730
- exports.TagResourceRequest$ = TagResourceRequest$;
3731
- exports.TagStepDetails$ = TagStepDetails$;
3732
- exports.TestConnection$ = TestConnection$;
3733
1467
  exports.TestConnectionCommand = TestConnectionCommand;
3734
- exports.TestConnectionRequest$ = TestConnectionRequest$;
3735
- exports.TestConnectionResponse$ = TestConnectionResponse$;
3736
- exports.TestIdentityProvider$ = TestIdentityProvider$;
3737
1468
  exports.TestIdentityProviderCommand = TestIdentityProviderCommand;
3738
- exports.TestIdentityProviderRequest$ = TestIdentityProviderRequest$;
3739
- exports.TestIdentityProviderResponse$ = TestIdentityProviderResponse$;
3740
- exports.ThrottlingException = ThrottlingException;
3741
- exports.ThrottlingException$ = ThrottlingException$;
3742
1469
  exports.TlsSessionResumptionMode = TlsSessionResumptionMode;
3743
1470
  exports.Transfer = Transfer;
3744
1471
  exports.TransferClient = TransferClient;
3745
- exports.TransferServiceException = TransferServiceException;
3746
- exports.TransferServiceException$ = TransferServiceException$;
3747
1472
  exports.TransferTableStatus = TransferTableStatus;
3748
- exports.UntagResource$ = UntagResource$;
3749
1473
  exports.UntagResourceCommand = UntagResourceCommand;
3750
- exports.UntagResourceRequest$ = UntagResourceRequest$;
3751
- exports.UpdateAccess$ = UpdateAccess$;
3752
1474
  exports.UpdateAccessCommand = UpdateAccessCommand;
3753
- exports.UpdateAccessRequest$ = UpdateAccessRequest$;
3754
- exports.UpdateAccessResponse$ = UpdateAccessResponse$;
3755
- exports.UpdateAgreement$ = UpdateAgreement$;
3756
1475
  exports.UpdateAgreementCommand = UpdateAgreementCommand;
3757
- exports.UpdateAgreementRequest$ = UpdateAgreementRequest$;
3758
- exports.UpdateAgreementResponse$ = UpdateAgreementResponse$;
3759
- exports.UpdateCertificate$ = UpdateCertificate$;
3760
1476
  exports.UpdateCertificateCommand = UpdateCertificateCommand;
3761
- exports.UpdateCertificateRequest$ = UpdateCertificateRequest$;
3762
- exports.UpdateCertificateResponse$ = UpdateCertificateResponse$;
3763
- exports.UpdateConnector$ = UpdateConnector$;
3764
1477
  exports.UpdateConnectorCommand = UpdateConnectorCommand;
3765
- exports.UpdateConnectorEgressConfig$ = UpdateConnectorEgressConfig$;
3766
- exports.UpdateConnectorRequest$ = UpdateConnectorRequest$;
3767
- exports.UpdateConnectorResponse$ = UpdateConnectorResponse$;
3768
- exports.UpdateConnectorVpcLatticeEgressConfig$ = UpdateConnectorVpcLatticeEgressConfig$;
3769
- exports.UpdateHostKey$ = UpdateHostKey$;
3770
1478
  exports.UpdateHostKeyCommand = UpdateHostKeyCommand;
3771
- exports.UpdateHostKeyRequest$ = UpdateHostKeyRequest$;
3772
- exports.UpdateHostKeyResponse$ = UpdateHostKeyResponse$;
3773
- exports.UpdateProfile$ = UpdateProfile$;
3774
1479
  exports.UpdateProfileCommand = UpdateProfileCommand;
3775
- exports.UpdateProfileRequest$ = UpdateProfileRequest$;
3776
- exports.UpdateProfileResponse$ = UpdateProfileResponse$;
3777
- exports.UpdateServer$ = UpdateServer$;
3778
1480
  exports.UpdateServerCommand = UpdateServerCommand;
3779
- exports.UpdateServerRequest$ = UpdateServerRequest$;
3780
- exports.UpdateServerResponse$ = UpdateServerResponse$;
3781
- exports.UpdateUser$ = UpdateUser$;
3782
1481
  exports.UpdateUserCommand = UpdateUserCommand;
3783
- exports.UpdateUserRequest$ = UpdateUserRequest$;
3784
- exports.UpdateUserResponse$ = UpdateUserResponse$;
3785
- exports.UpdateWebApp$ = UpdateWebApp$;
3786
1482
  exports.UpdateWebAppCommand = UpdateWebAppCommand;
3787
- exports.UpdateWebAppCustomization$ = UpdateWebAppCustomization$;
3788
1483
  exports.UpdateWebAppCustomizationCommand = UpdateWebAppCustomizationCommand;
3789
- exports.UpdateWebAppCustomizationRequest$ = UpdateWebAppCustomizationRequest$;
3790
- exports.UpdateWebAppCustomizationResponse$ = UpdateWebAppCustomizationResponse$;
3791
- exports.UpdateWebAppEndpointDetails$ = UpdateWebAppEndpointDetails$;
3792
- exports.UpdateWebAppIdentityCenterConfig$ = UpdateWebAppIdentityCenterConfig$;
3793
- exports.UpdateWebAppIdentityProviderDetails$ = UpdateWebAppIdentityProviderDetails$;
3794
- exports.UpdateWebAppRequest$ = UpdateWebAppRequest$;
3795
- exports.UpdateWebAppResponse$ = UpdateWebAppResponse$;
3796
- exports.UpdateWebAppVpcConfig$ = UpdateWebAppVpcConfig$;
3797
- exports.UserDetails$ = UserDetails$;
3798
- exports.WebAppEndpointDetails$ = WebAppEndpointDetails$;
3799
1484
  exports.WebAppEndpointPolicy = WebAppEndpointPolicy;
3800
1485
  exports.WebAppEndpointType = WebAppEndpointType;
3801
- exports.WebAppIdentityProviderDetails$ = WebAppIdentityProviderDetails$;
3802
- exports.WebAppUnits$ = WebAppUnits$;
3803
- exports.WebAppVpcConfig$ = WebAppVpcConfig$;
3804
- exports.WorkflowDetail$ = WorkflowDetail$;
3805
- exports.WorkflowDetails$ = WorkflowDetails$;
3806
- exports.WorkflowStep$ = WorkflowStep$;
3807
1486
  exports.WorkflowStepType = WorkflowStepType;
3808
1487
  exports.paginateListAccesses = paginateListAccesses;
3809
1488
  exports.paginateListAgreements = paginateListAgreements;
@@ -3822,3 +1501,15 @@ exports.waitForServerOffline = waitForServerOffline;
3822
1501
  exports.waitForServerOnline = waitForServerOnline;
3823
1502
  exports.waitUntilServerOffline = waitUntilServerOffline;
3824
1503
  exports.waitUntilServerOnline = waitUntilServerOnline;
1504
+ Object.keys(schemas_0).forEach(function (k) {
1505
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1506
+ enumerable: true,
1507
+ get: function () { return schemas_0[k]; }
1508
+ });
1509
+ });
1510
+ Object.keys(errors).forEach(function (k) {
1511
+ if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
1512
+ enumerable: true,
1513
+ get: function () { return errors[k]; }
1514
+ });
1515
+ });