@aws-sdk/client-transfer 3.181.0 → 3.183.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/CHANGELOG.md +8 -0
- package/dist-es/Transfer.js +234 -241
- package/dist-es/TransferClient.js +22 -28
- package/dist-es/commands/CreateAccessCommand.js +21 -28
- package/dist-es/commands/CreateAgreementCommand.js +21 -28
- package/dist-es/commands/CreateConnectorCommand.js +21 -28
- package/dist-es/commands/CreateProfileCommand.js +21 -28
- package/dist-es/commands/CreateServerCommand.js +21 -28
- package/dist-es/commands/CreateUserCommand.js +21 -28
- package/dist-es/commands/CreateWorkflowCommand.js +21 -28
- package/dist-es/commands/DeleteAccessCommand.js +22 -29
- package/dist-es/commands/DeleteAgreementCommand.js +22 -29
- package/dist-es/commands/DeleteCertificateCommand.js +22 -29
- package/dist-es/commands/DeleteConnectorCommand.js +22 -29
- package/dist-es/commands/DeleteHostKeyCommand.js +22 -29
- package/dist-es/commands/DeleteProfileCommand.js +22 -29
- package/dist-es/commands/DeleteServerCommand.js +22 -29
- package/dist-es/commands/DeleteSshPublicKeyCommand.js +22 -29
- package/dist-es/commands/DeleteUserCommand.js +22 -29
- package/dist-es/commands/DeleteWorkflowCommand.js +22 -29
- package/dist-es/commands/DescribeAccessCommand.js +21 -28
- package/dist-es/commands/DescribeAgreementCommand.js +21 -28
- package/dist-es/commands/DescribeCertificateCommand.js +21 -28
- package/dist-es/commands/DescribeConnectorCommand.js +21 -28
- package/dist-es/commands/DescribeExecutionCommand.js +21 -28
- package/dist-es/commands/DescribeHostKeyCommand.js +21 -28
- package/dist-es/commands/DescribeProfileCommand.js +21 -28
- package/dist-es/commands/DescribeSecurityPolicyCommand.js +21 -28
- package/dist-es/commands/DescribeServerCommand.js +21 -28
- package/dist-es/commands/DescribeUserCommand.js +21 -28
- package/dist-es/commands/DescribeWorkflowCommand.js +21 -28
- package/dist-es/commands/ImportCertificateCommand.js +21 -28
- package/dist-es/commands/ImportHostKeyCommand.js +21 -28
- package/dist-es/commands/ImportSshPublicKeyCommand.js +21 -28
- package/dist-es/commands/ListAccessesCommand.js +21 -28
- package/dist-es/commands/ListAgreementsCommand.js +21 -28
- package/dist-es/commands/ListCertificatesCommand.js +21 -28
- package/dist-es/commands/ListConnectorsCommand.js +21 -28
- package/dist-es/commands/ListExecutionsCommand.js +21 -28
- package/dist-es/commands/ListHostKeysCommand.js +21 -28
- package/dist-es/commands/ListProfilesCommand.js +21 -28
- package/dist-es/commands/ListSecurityPoliciesCommand.js +21 -28
- package/dist-es/commands/ListServersCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/ListUsersCommand.js +21 -28
- package/dist-es/commands/ListWorkflowsCommand.js +21 -28
- package/dist-es/commands/SendWorkflowStepStateCommand.js +21 -28
- package/dist-es/commands/StartFileTransferCommand.js +21 -28
- package/dist-es/commands/StartServerCommand.js +22 -29
- package/dist-es/commands/StopServerCommand.js +22 -29
- package/dist-es/commands/TagResourceCommand.js +22 -29
- package/dist-es/commands/TestIdentityProviderCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +22 -29
- package/dist-es/commands/UpdateAccessCommand.js +21 -28
- package/dist-es/commands/UpdateAgreementCommand.js +21 -28
- package/dist-es/commands/UpdateCertificateCommand.js +21 -28
- package/dist-es/commands/UpdateConnectorCommand.js +21 -28
- package/dist-es/commands/UpdateHostKeyCommand.js +21 -28
- package/dist-es/commands/UpdateProfileCommand.js +21 -28
- package/dist-es/commands/UpdateServerCommand.js +21 -28
- package/dist-es/commands/UpdateUserCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/TransferServiceException.js +5 -10
- package/dist-es/models/models_0.js +572 -263
- package/dist-es/pagination/ListAccessesPaginator.js +25 -68
- package/dist-es/pagination/ListAgreementsPaginator.js +25 -68
- package/dist-es/pagination/ListCertificatesPaginator.js +25 -68
- package/dist-es/pagination/ListConnectorsPaginator.js +25 -68
- package/dist-es/pagination/ListExecutionsPaginator.js +25 -68
- package/dist-es/pagination/ListProfilesPaginator.js +25 -68
- package/dist-es/pagination/ListSecurityPoliciesPaginator.js +25 -68
- package/dist-es/pagination/ListServersPaginator.js +25 -68
- package/dist-es/pagination/ListTagsForResourcePaginator.js +25 -68
- package/dist-es/pagination/ListUsersPaginator.js +25 -68
- package/dist-es/pagination/ListWorkflowsPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +3961 -5067
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForServerOffline.js +36 -56
- package/dist-es/waiters/waitForServerOnline.js +36 -56
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-transfer
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
|
|
7
15
|
|
|
8
16
|
|