aws-sdk-transfer 1.142.0 → 1.143.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +5 -1
- data/lib/aws-sdk-transfer/client_api.rb +5 -0
- data/lib/aws-sdk-transfer/types.rb +12 -1
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c41d52e9387b105357432b22b9bf4557d18125607125941fd7a866f4165e30d7
|
|
4
|
+
data.tar.gz: b143dd79314c635113c6a8bc68de11c65e3123932686b38914b2e88742eadba0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dfa0aec8ea0d3e1e1b6a1cc4a837e8ce6e5cda1426d503a92da83a00419442ad0e0b3fbb529a2c8912d33e7a71e55b773119c8b45aad4bb614f7434098c355bc
|
|
7
|
+
data.tar.gz: be261ad8a8ba383862f8e8c7ed7486f5366558e0355ef62925f4a379517e4b19ac0cb910442ee9bbe4d06d1c1d6100ca05d78e0ea07e23e49aafb08aab5742b9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.143.0 (2026-09-03)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Transfer Family SFTP Connectors now support specifying an ordered list of AWS Secrets Manager version stages for secret retrieval. This enables seamless credential rotation workflows where external partners may take time to update their systems with new credentials.
|
|
8
|
+
|
|
4
9
|
1.142.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.143.0
|
|
@@ -937,6 +937,7 @@ module Aws::Transfer
|
|
|
937
937
|
# user_secret_id: "SecretId",
|
|
938
938
|
# trusted_host_keys: ["SftpConnectorTrustedHostKey"],
|
|
939
939
|
# max_concurrent_connections: 1,
|
|
940
|
+
# ordered_user_secret_version_stages: ["SecretVersionStage"],
|
|
940
941
|
# },
|
|
941
942
|
# security_policy_name: "ConnectorSecurityPolicyName",
|
|
942
943
|
# egress_config: {
|
|
@@ -2442,6 +2443,8 @@ module Aws::Transfer
|
|
|
2442
2443
|
# resp.connector.sftp_config.trusted_host_keys #=> Array
|
|
2443
2444
|
# resp.connector.sftp_config.trusted_host_keys[0] #=> String
|
|
2444
2445
|
# resp.connector.sftp_config.max_concurrent_connections #=> Integer
|
|
2446
|
+
# resp.connector.sftp_config.ordered_user_secret_version_stages #=> Array
|
|
2447
|
+
# resp.connector.sftp_config.ordered_user_secret_version_stages[0] #=> String
|
|
2445
2448
|
# resp.connector.service_managed_egress_ip_addresses #=> Array
|
|
2446
2449
|
# resp.connector.service_managed_egress_ip_addresses[0] #=> String
|
|
2447
2450
|
# resp.connector.security_policy_name #=> String
|
|
@@ -4976,6 +4979,7 @@ module Aws::Transfer
|
|
|
4976
4979
|
# user_secret_id: "SecretId",
|
|
4977
4980
|
# trusted_host_keys: ["SftpConnectorTrustedHostKey"],
|
|
4978
4981
|
# max_concurrent_connections: 1,
|
|
4982
|
+
# ordered_user_secret_version_stages: ["SecretVersionStage"],
|
|
4979
4983
|
# },
|
|
4980
4984
|
# security_policy_name: "ConnectorSecurityPolicyName",
|
|
4981
4985
|
# egress_config: {
|
|
@@ -5769,7 +5773,7 @@ module Aws::Transfer
|
|
|
5769
5773
|
tracer: tracer
|
|
5770
5774
|
)
|
|
5771
5775
|
context[:gem_name] = 'aws-sdk-transfer'
|
|
5772
|
-
context[:gem_version] = '1.
|
|
5776
|
+
context[:gem_version] = '1.143.0'
|
|
5773
5777
|
Seahorse::Client::Request.new(handlers, context)
|
|
5774
5778
|
end
|
|
5775
5779
|
|
|
@@ -293,6 +293,8 @@ module Aws::Transfer
|
|
|
293
293
|
S3VersionId = Shapes::StringShape.new(name: 'S3VersionId')
|
|
294
294
|
SecondaryGids = Shapes::ListShape.new(name: 'SecondaryGids')
|
|
295
295
|
SecretId = Shapes::StringShape.new(name: 'SecretId')
|
|
296
|
+
SecretVersionStage = Shapes::StringShape.new(name: 'SecretVersionStage')
|
|
297
|
+
SecretVersionStageList = Shapes::ListShape.new(name: 'SecretVersionStageList')
|
|
296
298
|
SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
|
|
297
299
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
|
298
300
|
SecurityPolicyName = Shapes::StringShape.new(name: 'SecurityPolicyName')
|
|
@@ -1309,6 +1311,8 @@ module Aws::Transfer
|
|
|
1309
1311
|
|
|
1310
1312
|
SecondaryGids.member = Shapes::ShapeRef.new(shape: PosixId)
|
|
1311
1313
|
|
|
1314
|
+
SecretVersionStageList.member = Shapes::ShapeRef.new(shape: SecretVersionStage)
|
|
1315
|
+
|
|
1312
1316
|
SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
|
|
1313
1317
|
|
|
1314
1318
|
SecurityPolicyNames.member = Shapes::ShapeRef.new(shape: SecurityPolicyName)
|
|
@@ -1336,6 +1340,7 @@ module Aws::Transfer
|
|
|
1336
1340
|
SftpConnectorConfig.add_member(:user_secret_id, Shapes::ShapeRef.new(shape: SecretId, location_name: "UserSecretId"))
|
|
1337
1341
|
SftpConnectorConfig.add_member(:trusted_host_keys, Shapes::ShapeRef.new(shape: SftpConnectorTrustedHostKeyList, location_name: "TrustedHostKeys"))
|
|
1338
1342
|
SftpConnectorConfig.add_member(:max_concurrent_connections, Shapes::ShapeRef.new(shape: MaxConcurrentConnections, location_name: "MaxConcurrentConnections"))
|
|
1343
|
+
SftpConnectorConfig.add_member(:ordered_user_secret_version_stages, Shapes::ShapeRef.new(shape: SecretVersionStageList, location_name: "OrderedUserSecretVersionStages"))
|
|
1339
1344
|
SftpConnectorConfig.struct_class = Types::SftpConnectorConfig
|
|
1340
1345
|
|
|
1341
1346
|
SftpConnectorConnectionDetails.add_member(:host_key, Shapes::ShapeRef.new(shape: SftpConnectorHostKey, location_name: "HostKey"))
|
|
@@ -6188,12 +6188,23 @@ module Aws::Transfer
|
|
|
6188
6188
|
# transferring large file batches by enabling parallel operations.
|
|
6189
6189
|
# @return [Integer]
|
|
6190
6190
|
#
|
|
6191
|
+
# @!attribute [rw] ordered_user_secret_version_stages
|
|
6192
|
+
# An ordered list of Amazon Web Services Secrets Manager version
|
|
6193
|
+
# stages (staging labels, such as `AWSCURRENT` and `AWSPREVIOUS`) for
|
|
6194
|
+
# the secret identified by `UserSecretId`. When establishing a
|
|
6195
|
+
# connection, the connector attempts to retrieve the SFTP user's
|
|
6196
|
+
# credentials from each version stage in the order listed, and uses
|
|
6197
|
+
# the first version it can successfully retrieve. This lets you rotate
|
|
6198
|
+
# the user secret without interrupting connector operations.
|
|
6199
|
+
# @return [Array<String>]
|
|
6200
|
+
#
|
|
6191
6201
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/SftpConnectorConfig AWS API Documentation
|
|
6192
6202
|
#
|
|
6193
6203
|
class SftpConnectorConfig < Struct.new(
|
|
6194
6204
|
:user_secret_id,
|
|
6195
6205
|
:trusted_host_keys,
|
|
6196
|
-
:max_concurrent_connections
|
|
6206
|
+
:max_concurrent_connections,
|
|
6207
|
+
:ordered_user_secret_version_stages)
|
|
6197
6208
|
SENSITIVE = []
|
|
6198
6209
|
include Aws::Structure
|
|
6199
6210
|
end
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -157,7 +157,8 @@ module Aws
|
|
|
157
157
|
?sftp_config: {
|
|
158
158
|
user_secret_id: ::String?,
|
|
159
159
|
trusted_host_keys: Array[::String]?,
|
|
160
|
-
max_concurrent_connections: ::Integer
|
|
160
|
+
max_concurrent_connections: ::Integer?,
|
|
161
|
+
ordered_user_secret_version_stages: Array[::String]?
|
|
161
162
|
},
|
|
162
163
|
?security_policy_name: ::String,
|
|
163
164
|
?egress_config: {
|
|
@@ -994,7 +995,8 @@ module Aws
|
|
|
994
995
|
?sftp_config: {
|
|
995
996
|
user_secret_id: ::String?,
|
|
996
997
|
trusted_host_keys: Array[::String]?,
|
|
997
|
-
max_concurrent_connections: ::Integer
|
|
998
|
+
max_concurrent_connections: ::Integer?,
|
|
999
|
+
ordered_user_secret_version_stages: Array[::String]?
|
|
998
1000
|
},
|
|
999
1001
|
?security_policy_name: ::String,
|
|
1000
1002
|
?egress_config: {
|
data/sig/types.rbs
CHANGED
|
@@ -1193,6 +1193,7 @@ module Aws::Transfer
|
|
|
1193
1193
|
attr_accessor user_secret_id: ::String
|
|
1194
1194
|
attr_accessor trusted_host_keys: ::Array[::String]
|
|
1195
1195
|
attr_accessor max_concurrent_connections: ::Integer
|
|
1196
|
+
attr_accessor ordered_user_secret_version_stages: ::Array[::String]
|
|
1196
1197
|
SENSITIVE: []
|
|
1197
1198
|
end
|
|
1198
1199
|
|