aws-sdk-transfer 1.62.0 → 1.63.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 857ed78b6dafe702313bda0273329c2f0ee7626c545d0f80604fa956813f35fa
4
- data.tar.gz: 22b746147bad0214fd012238471f4fa5ebb57dfe5a95b205bfccf3e8b3ea736a
3
+ metadata.gz: 6a679ffd4167edbc3aef5d1431c5d6a6be8e2e7cc7fb42d1857eaa7e3d19dcce
4
+ data.tar.gz: 5c0c1713d6fa1c0200ca48eda490ee8aed6fecc9eec5712c691806581a26d4de
5
5
  SHA512:
6
- metadata.gz: 8079548fe63dc708e3799acdb378d45e924aa6b1b9412f325bae9ee6522861cfbaaa0b7a626730229af113712ed49b0fde5458d0ad35daa1b002f969c6138c49
7
- data.tar.gz: 0de6e30cb7c9cd64b0a170656809614985e841b943c10999a71dd19d671e72094a1762522edec0882fcf529c207d1f80ac2d669efaedae9b6a550a347806acb4
6
+ metadata.gz: e29bea5ad3e035475d0c6a4642e7a9506eca4f3ef2ccd46b89381fe422ed71df89c1249a1549097580262247bb6368d5fb4cc950b61b9546c6995a89a4689ea3
7
+ data.tar.gz: f9fcc8e1fec7ff49806225dcb2bc34e88e3a8d2616845fcf0c3d76c3faf7e5bfea62b542ee9454d2e3df37330d58fa6d579e3735b864168ed9000d7d772bf0c4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.63.0 (2022-11-18)
5
+ ------------------
6
+
7
+ * Feature - Adds a NONE encryption algorithm type to AS2 connectors, providing support for skipping encryption of the AS2 message body when a HTTPS URL is also specified.
8
+
4
9
  1.62.0 (2022-11-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.62.0
1
+ 1.63.0
@@ -672,7 +672,7 @@ module Aws::Transfer
672
672
  # partner_profile_id: "ProfileId",
673
673
  # message_subject: "MessageSubject",
674
674
  # compression: "ZLIB", # accepts ZLIB, DISABLED
675
- # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC
675
+ # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, NONE
676
676
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
677
677
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
678
678
  # mdn_response: "SYNC", # accepts SYNC, NONE
@@ -1014,8 +1014,8 @@ module Aws::Transfer
1014
1014
  # Specifies the workflow ID for the workflow to assign and the execution
1015
1015
  # role that's used for executing the workflow.
1016
1016
  #
1017
- # In additon to a workflow to execute when a file is uploaded
1018
- # completely, `WorkflowDeatails` can also contain a workflow ID (and
1017
+ # In addition to a workflow to execute when a file is uploaded
1018
+ # completely, `WorkflowDetails` can also contain a workflow ID (and
1019
1019
  # execution role) for a workflow to execute on partial upload. A partial
1020
1020
  # upload occurs when a file is open when the session disconnects.
1021
1021
  #
@@ -1191,8 +1191,20 @@ module Aws::Transfer
1191
1191
  # The public portion of the Secure Shell (SSH) key used to authenticate
1192
1192
  # the user to the server.
1193
1193
  #
1194
+ # The three standard SSH public key format elements are `<key type>`,
1195
+ # `<body base64>`, and an optional `<comment>`, with spaces between each
1196
+ # element.
1197
+ #
1194
1198
  # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
1195
1199
  #
1200
+ # * For RSA keys, the key type is `ssh-rsa`.
1201
+ #
1202
+ # * For ED25519 keys, the key type is `ssh-ed25519`.
1203
+ #
1204
+ # * For ECDSA keys, the key type is either `ecdsa-sha2-nistp256`,
1205
+ # `ecdsa-sha2-nistp384`, or `ecdsa-sha2-nistp521`, depending on the
1206
+ # size of the key you generated.
1207
+ #
1196
1208
  # @option params [Array<Types::Tag>] :tags
1197
1209
  # Key-value pairs that can be used to group and search for users. Tags
1198
1210
  # are metadata attached to users for any purpose.
@@ -1865,7 +1877,7 @@ module Aws::Transfer
1865
1877
  # resp.connector.as_2_config.partner_profile_id #=> String
1866
1878
  # resp.connector.as_2_config.message_subject #=> String
1867
1879
  # resp.connector.as_2_config.compression #=> String, one of "ZLIB", "DISABLED"
1868
- # resp.connector.as_2_config.encryption_algorithm #=> String, one of "AES128_CBC", "AES192_CBC", "AES256_CBC"
1880
+ # resp.connector.as_2_config.encryption_algorithm #=> String, one of "AES128_CBC", "AES192_CBC", "AES256_CBC", "NONE"
1869
1881
  # resp.connector.as_2_config.signing_algorithm #=> String, one of "SHA256", "SHA384", "SHA512", "SHA1", "NONE"
1870
1882
  # resp.connector.as_2_config.mdn_signing_algorithm #=> String, one of "SHA256", "SHA384", "SHA512", "SHA1", "NONE", "DEFAULT"
1871
1883
  # resp.connector.as_2_config.mdn_response #=> String, one of "SYNC", "NONE"
@@ -3674,7 +3686,7 @@ module Aws::Transfer
3674
3686
  # partner_profile_id: "ProfileId",
3675
3687
  # message_subject: "MessageSubject",
3676
3688
  # compression: "ZLIB", # accepts ZLIB, DISABLED
3677
- # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC
3689
+ # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, NONE
3678
3690
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
3679
3691
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
3680
3692
  # mdn_response: "SYNC", # accepts SYNC, NONE
@@ -3992,8 +4004,8 @@ module Aws::Transfer
3992
4004
  # Specifies the workflow ID for the workflow to assign and the execution
3993
4005
  # role that's used for executing the workflow.
3994
4006
  #
3995
- # In additon to a workflow to execute when a file is uploaded
3996
- # completely, `WorkflowDeatails` can also contain a workflow ID (and
4007
+ # In addition to a workflow to execute when a file is uploaded
4008
+ # completely, `WorkflowDetails` can also contain a workflow ID (and
3997
4009
  # execution role) for a workflow to execute on partial upload. A partial
3998
4010
  # upload occurs when a file is open when the session disconnects.
3999
4011
  #
@@ -4225,7 +4237,7 @@ module Aws::Transfer
4225
4237
  params: params,
4226
4238
  config: config)
4227
4239
  context[:gem_name] = 'aws-sdk-transfer'
4228
- context[:gem_version] = '1.62.0'
4240
+ context[:gem_version] = '1.63.0'
4229
4241
  Seahorse::Client::Request.new(handlers, context)
4230
4242
  end
4231
4243
 
@@ -35,7 +35,7 @@ module Aws::Transfer
35
35
  # partner_profile_id: "ProfileId",
36
36
  # message_subject: "MessageSubject",
37
37
  # compression: "ZLIB", # accepts ZLIB, DISABLED
38
- # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC
38
+ # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, NONE
39
39
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
40
40
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
41
41
  # mdn_response: "SYNC", # accepts SYNC, NONE
@@ -60,6 +60,11 @@ module Aws::Transfer
60
60
  #
61
61
  # @!attribute [rw] encryption_algorithm
62
62
  # The algorithm that is used to encrypt the file.
63
+ #
64
+ # <note markdown="1"> You can only specify `NONE` if the URL for your connector uses
65
+ # HTTPS. This ensures that no traffic is sent in clear text.
66
+ #
67
+ # </note>
63
68
  # @return [String]
64
69
  #
65
70
  # @!attribute [rw] signing_algorithm
@@ -71,7 +76,7 @@ module Aws::Transfer
71
76
  # The signing algorithm for the MDN response.
72
77
  #
73
78
  # <note markdown="1"> If set to DEFAULT (or not set at all), the value for
74
- # `SigningAlogorithm` is used.
79
+ # `SigningAlgorithm` is used.
75
80
  #
76
81
  # </note>
77
82
  # @return [String]
@@ -458,7 +463,7 @@ module Aws::Transfer
458
463
  # partner_profile_id: "ProfileId",
459
464
  # message_subject: "MessageSubject",
460
465
  # compression: "ZLIB", # accepts ZLIB, DISABLED
461
- # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC
466
+ # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, NONE
462
467
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
463
468
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
464
469
  # mdn_response: "SYNC", # accepts SYNC, NONE
@@ -923,8 +928,8 @@ module Aws::Transfer
923
928
  # Specifies the workflow ID for the workflow to assign and the
924
929
  # execution role that's used for executing the workflow.
925
930
  #
926
- # In additon to a workflow to execute when a file is uploaded
927
- # completely, `WorkflowDeatails` can also contain a workflow ID (and
931
+ # In addition to a workflow to execute when a file is uploaded
932
+ # completely, `WorkflowDetails` can also contain a workflow ID (and
928
933
  # execution role) for a workflow to execute on partial upload. A
929
934
  # partial upload occurs when a file is open when the session
930
935
  # disconnects.
@@ -1094,7 +1099,19 @@ module Aws::Transfer
1094
1099
  # The public portion of the Secure Shell (SSH) key used to
1095
1100
  # authenticate the user to the server.
1096
1101
  #
1102
+ # The three standard SSH public key format elements are `<key type>`,
1103
+ # `<body base64>`, and an optional `<comment>`, with spaces between
1104
+ # each element.
1105
+ #
1097
1106
  # Transfer Family accepts RSA, ECDSA, and ED25519 keys.
1107
+ #
1108
+ # * For RSA keys, the key type is `ssh-rsa`.
1109
+ #
1110
+ # * For ED25519 keys, the key type is `ssh-ed25519`.
1111
+ #
1112
+ # * For ECDSA keys, the key type is either `ecdsa-sha2-nistp256`,
1113
+ # `ecdsa-sha2-nistp384`, or `ecdsa-sha2-nistp521`, depending on the
1114
+ # size of the key you generated.
1098
1115
  # @return [String]
1099
1116
  #
1100
1117
  # @!attribute [rw] tags
@@ -2788,8 +2805,8 @@ module Aws::Transfer
2788
2805
  # Specifies the workflow ID for the workflow to assign and the
2789
2806
  # execution role that's used for executing the workflow.
2790
2807
  #
2791
- # In additon to a workflow to execute when a file is uploaded
2792
- # completely, `WorkflowDeatails` can also contain a workflow ID (and
2808
+ # In addition to a workflow to execute when a file is uploaded
2809
+ # completely, `WorkflowDetails` can also contain a workflow ID (and
2793
2810
  # execution role) for a workflow to execute on partial upload. A
2794
2811
  # partial upload occurs when a file is open when the session
2795
2812
  # disconnects.
@@ -5847,7 +5864,7 @@ module Aws::Transfer
5847
5864
  # partner_profile_id: "ProfileId",
5848
5865
  # message_subject: "MessageSubject",
5849
5866
  # compression: "ZLIB", # accepts ZLIB, DISABLED
5850
- # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC
5867
+ # encryption_algorithm: "AES128_CBC", # accepts AES128_CBC, AES192_CBC, AES256_CBC, NONE
5851
5868
  # signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE
5852
5869
  # mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
5853
5870
  # mdn_response: "SYNC", # accepts SYNC, NONE
@@ -6280,8 +6297,8 @@ module Aws::Transfer
6280
6297
  # Specifies the workflow ID for the workflow to assign and the
6281
6298
  # execution role that's used for executing the workflow.
6282
6299
  #
6283
- # In additon to a workflow to execute when a file is uploaded
6284
- # completely, `WorkflowDeatails` can also contain a workflow ID (and
6300
+ # In addition to a workflow to execute when a file is uploaded
6301
+ # completely, `WorkflowDetails` can also contain a workflow ID (and
6285
6302
  # execution role) for a workflow to execute on partial upload. A
6286
6303
  # partial upload occurs when a file is open when the session
6287
6304
  # disconnects.
@@ -6523,8 +6540,8 @@ module Aws::Transfer
6523
6540
  # Specifies the workflow ID for the workflow to assign and the execution
6524
6541
  # role that's used for executing the workflow.
6525
6542
  #
6526
- # In additon to a workflow to execute when a file is uploaded
6527
- # completely, `WorkflowDeatails` can also contain a workflow ID (and
6543
+ # In addition to a workflow to execute when a file is uploaded
6544
+ # completely, `WorkflowDetails` can also contain a workflow ID (and
6528
6545
  # execution role) for a workflow to execute on partial upload. A partial
6529
6546
  # upload occurs when a file is open when the session disconnects.
6530
6547
  #
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-transfer/customizations'
53
53
  # @!group service
54
54
  module Aws::Transfer
55
55
 
56
- GEM_VERSION = '1.62.0'
56
+ GEM_VERSION = '1.63.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.62.0
4
+ version: 1.63.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-16 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core