aws-sdk-transfer 1.108.0 → 1.109.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 +60 -1
- data/lib/aws-sdk-transfer/client_api.rb +10 -0
- data/lib/aws-sdk-transfer/types.rb +105 -7
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +10 -4
- data/sig/types.rbs +7 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba44624d87f5ff63ccf597bc03442db29712bfd3a6ca4368a8d1f38563e74d42
|
4
|
+
data.tar.gz: 746ab633d1e7f69528ff33cc7a3944f21958a585bec03a2322a10d891c006165
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24d2196b7c333903f9f0d9166ceb5ea8e739ba3e05ac98f8461f2211139d1d5ba973b29e8a837f7225186bd09b4525c567ed4a9496943266016add68fb65929e
|
7
|
+
data.tar.gz: 6656808f9fb52e53798a49bb6e4b44e74ed4e0de420826a7c1c485f504856d850859710e02ce7021d7dc5db4edf8453ac5a3b092417c71ec9a20981491f965d1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.109.0 (2024-12-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added AS2 agreement configurations to control filename preservation and message signing enforcement. Added AS2 connector configuration to preserve content type from S3 objects.
|
8
|
+
|
4
9
|
1.108.0 (2024-12-02)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.109.0
|
@@ -694,6 +694,31 @@ module Aws::Transfer
|
|
694
694
|
# @option params [Array<Types::Tag>] :tags
|
695
695
|
# Key-value pairs that can be used to group and search for agreements.
|
696
696
|
#
|
697
|
+
# @option params [String] :preserve_filename
|
698
|
+
# Determines whether or not Transfer Family appends a unique string of
|
699
|
+
# characters to the end of the AS2 message payload filename when saving
|
700
|
+
# it.
|
701
|
+
#
|
702
|
+
# * `ENABLED`: the filename provided by your trading parter is preserved
|
703
|
+
# when the file is saved.
|
704
|
+
#
|
705
|
+
# * `DISABLED` (default value): when Transfer Family saves the file, the
|
706
|
+
# filename is adjusted, as described in [File names and locations][1].
|
707
|
+
#
|
708
|
+
#
|
709
|
+
#
|
710
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
711
|
+
#
|
712
|
+
# @option params [String] :enforce_message_signing
|
713
|
+
# Determines whether or not unsigned messages from your trading partners
|
714
|
+
# will be accepted.
|
715
|
+
#
|
716
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
717
|
+
# trading partner.
|
718
|
+
#
|
719
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
720
|
+
# messages from your trading partner.
|
721
|
+
#
|
697
722
|
# @return [Types::CreateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
698
723
|
#
|
699
724
|
# * {Types::CreateAgreementResponse#agreement_id #agreement_id} => String
|
@@ -714,6 +739,8 @@ module Aws::Transfer
|
|
714
739
|
# value: "TagValue", # required
|
715
740
|
# },
|
716
741
|
# ],
|
742
|
+
# preserve_filename: "ENABLED", # accepts ENABLED, DISABLED
|
743
|
+
# enforce_message_signing: "ENABLED", # accepts ENABLED, DISABLED
|
717
744
|
# })
|
718
745
|
#
|
719
746
|
# @example Response structure
|
@@ -821,6 +848,7 @@ module Aws::Transfer
|
|
821
848
|
# mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
|
822
849
|
# mdn_response: "SYNC", # accepts SYNC, NONE
|
823
850
|
# basic_auth_secret_id: "As2ConnectorSecretId",
|
851
|
+
# preserve_content_type: "ENABLED", # accepts ENABLED, DISABLED
|
824
852
|
# },
|
825
853
|
# access_role: "Role", # required
|
826
854
|
# logging_role: "Role",
|
@@ -2139,6 +2167,8 @@ module Aws::Transfer
|
|
2139
2167
|
# resp.agreement.tags #=> Array
|
2140
2168
|
# resp.agreement.tags[0].key #=> String
|
2141
2169
|
# resp.agreement.tags[0].value #=> String
|
2170
|
+
# resp.agreement.preserve_filename #=> String, one of "ENABLED", "DISABLED"
|
2171
|
+
# resp.agreement.enforce_message_signing #=> String, one of "ENABLED", "DISABLED"
|
2142
2172
|
#
|
2143
2173
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeAgreement AWS API Documentation
|
2144
2174
|
#
|
@@ -2222,6 +2252,7 @@ module Aws::Transfer
|
|
2222
2252
|
# resp.connector.as_2_config.mdn_signing_algorithm #=> String, one of "SHA256", "SHA384", "SHA512", "SHA1", "NONE", "DEFAULT"
|
2223
2253
|
# resp.connector.as_2_config.mdn_response #=> String, one of "SYNC", "NONE"
|
2224
2254
|
# resp.connector.as_2_config.basic_auth_secret_id #=> String
|
2255
|
+
# resp.connector.as_2_config.preserve_content_type #=> String, one of "ENABLED", "DISABLED"
|
2225
2256
|
# resp.connector.access_role #=> String
|
2226
2257
|
# resp.connector.logging_role #=> String
|
2227
2258
|
# resp.connector.tags #=> Array
|
@@ -4369,6 +4400,31 @@ module Aws::Transfer
|
|
4369
4400
|
# provides `secretsmanager:GetSecretValue` permission to Secrets
|
4370
4401
|
# Manager.
|
4371
4402
|
#
|
4403
|
+
# @option params [String] :preserve_filename
|
4404
|
+
# Determines whether or not Transfer Family appends a unique string of
|
4405
|
+
# characters to the end of the AS2 message payload filename when saving
|
4406
|
+
# it.
|
4407
|
+
#
|
4408
|
+
# * `ENABLED`: the filename provided by your trading parter is preserved
|
4409
|
+
# when the file is saved.
|
4410
|
+
#
|
4411
|
+
# * `DISABLED` (default value): when Transfer Family saves the file, the
|
4412
|
+
# filename is adjusted, as described in [File names and locations][1].
|
4413
|
+
#
|
4414
|
+
#
|
4415
|
+
#
|
4416
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
4417
|
+
#
|
4418
|
+
# @option params [String] :enforce_message_signing
|
4419
|
+
# Determines whether or not unsigned messages from your trading partners
|
4420
|
+
# will be accepted.
|
4421
|
+
#
|
4422
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
4423
|
+
# trading partner.
|
4424
|
+
#
|
4425
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
4426
|
+
# messages from your trading partner.
|
4427
|
+
#
|
4372
4428
|
# @return [Types::UpdateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4373
4429
|
#
|
4374
4430
|
# * {Types::UpdateAgreementResponse#agreement_id #agreement_id} => String
|
@@ -4384,6 +4440,8 @@ module Aws::Transfer
|
|
4384
4440
|
# partner_profile_id: "ProfileId",
|
4385
4441
|
# base_directory: "HomeDirectory",
|
4386
4442
|
# access_role: "Role",
|
4443
|
+
# preserve_filename: "ENABLED", # accepts ENABLED, DISABLED
|
4444
|
+
# enforce_message_signing: "ENABLED", # accepts ENABLED, DISABLED
|
4387
4445
|
# })
|
4388
4446
|
#
|
4389
4447
|
# @example Response structure
|
@@ -4517,6 +4575,7 @@ module Aws::Transfer
|
|
4517
4575
|
# mdn_signing_algorithm: "SHA256", # accepts SHA256, SHA384, SHA512, SHA1, NONE, DEFAULT
|
4518
4576
|
# mdn_response: "SYNC", # accepts SYNC, NONE
|
4519
4577
|
# basic_auth_secret_id: "As2ConnectorSecretId",
|
4578
|
+
# preserve_content_type: "ENABLED", # accepts ENABLED, DISABLED
|
4520
4579
|
# },
|
4521
4580
|
# access_role: "Role",
|
4522
4581
|
# logging_role: "Role",
|
@@ -5229,7 +5288,7 @@ module Aws::Transfer
|
|
5229
5288
|
tracer: tracer
|
5230
5289
|
)
|
5231
5290
|
context[:gem_name] = 'aws-sdk-transfer'
|
5232
|
-
context[:gem_version] = '1.
|
5291
|
+
context[:gem_version] = '1.109.0'
|
5233
5292
|
Seahorse::Client::Request.new(handlers, context)
|
5234
5293
|
end
|
5235
5294
|
|
@@ -130,6 +130,7 @@ module Aws::Transfer
|
|
130
130
|
EncryptionType = Shapes::StringShape.new(name: 'EncryptionType')
|
131
131
|
EndpointDetails = Shapes::StructureShape.new(name: 'EndpointDetails')
|
132
132
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
133
|
+
EnforceMessageSigningType = Shapes::StringShape.new(name: 'EnforceMessageSigningType')
|
133
134
|
ExecutionError = Shapes::StructureShape.new(name: 'ExecutionError')
|
134
135
|
ExecutionErrorMessage = Shapes::StringShape.new(name: 'ExecutionErrorMessage')
|
135
136
|
ExecutionErrorType = Shapes::StringShape.new(name: 'ExecutionErrorType')
|
@@ -243,6 +244,8 @@ module Aws::Transfer
|
|
243
244
|
PosixProfile = Shapes::StructureShape.new(name: 'PosixProfile')
|
244
245
|
PostAuthenticationLoginBanner = Shapes::StringShape.new(name: 'PostAuthenticationLoginBanner')
|
245
246
|
PreAuthenticationLoginBanner = Shapes::StringShape.new(name: 'PreAuthenticationLoginBanner')
|
247
|
+
PreserveContentType = Shapes::StringShape.new(name: 'PreserveContentType')
|
248
|
+
PreserveFilenameType = Shapes::StringShape.new(name: 'PreserveFilenameType')
|
246
249
|
PrivateKeyType = Shapes::StringShape.new(name: 'PrivateKeyType')
|
247
250
|
ProfileId = Shapes::StringShape.new(name: 'ProfileId')
|
248
251
|
ProfileType = Shapes::StringShape.new(name: 'ProfileType')
|
@@ -390,6 +393,7 @@ module Aws::Transfer
|
|
390
393
|
As2ConnectorConfig.add_member(:mdn_signing_algorithm, Shapes::ShapeRef.new(shape: MdnSigningAlg, location_name: "MdnSigningAlgorithm"))
|
391
394
|
As2ConnectorConfig.add_member(:mdn_response, Shapes::ShapeRef.new(shape: MdnResponse, location_name: "MdnResponse"))
|
392
395
|
As2ConnectorConfig.add_member(:basic_auth_secret_id, Shapes::ShapeRef.new(shape: As2ConnectorSecretId, location_name: "BasicAuthSecretId"))
|
396
|
+
As2ConnectorConfig.add_member(:preserve_content_type, Shapes::ShapeRef.new(shape: PreserveContentType, location_name: "PreserveContentType"))
|
393
397
|
As2ConnectorConfig.struct_class = Types::As2ConnectorConfig
|
394
398
|
|
395
399
|
As2Transports.member = Shapes::ShapeRef.new(shape: As2Transport)
|
@@ -435,6 +439,8 @@ module Aws::Transfer
|
|
435
439
|
CreateAgreementRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "AccessRole"))
|
436
440
|
CreateAgreementRequest.add_member(:status, Shapes::ShapeRef.new(shape: AgreementStatusType, location_name: "Status"))
|
437
441
|
CreateAgreementRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
442
|
+
CreateAgreementRequest.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
443
|
+
CreateAgreementRequest.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
438
444
|
CreateAgreementRequest.struct_class = Types::CreateAgreementRequest
|
439
445
|
|
440
446
|
CreateAgreementResponse.add_member(:agreement_id, Shapes::ShapeRef.new(shape: AgreementId, required: true, location_name: "AgreementId"))
|
@@ -681,6 +687,8 @@ module Aws::Transfer
|
|
681
687
|
DescribedAgreement.add_member(:base_directory, Shapes::ShapeRef.new(shape: HomeDirectory, location_name: "BaseDirectory"))
|
682
688
|
DescribedAgreement.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, location_name: "AccessRole"))
|
683
689
|
DescribedAgreement.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
690
|
+
DescribedAgreement.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
691
|
+
DescribedAgreement.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
684
692
|
DescribedAgreement.struct_class = Types::DescribedAgreement
|
685
693
|
|
686
694
|
DescribedCertificate.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
@@ -1329,6 +1337,8 @@ module Aws::Transfer
|
|
1329
1337
|
UpdateAgreementRequest.add_member(:partner_profile_id, Shapes::ShapeRef.new(shape: ProfileId, location_name: "PartnerProfileId"))
|
1330
1338
|
UpdateAgreementRequest.add_member(:base_directory, Shapes::ShapeRef.new(shape: HomeDirectory, location_name: "BaseDirectory"))
|
1331
1339
|
UpdateAgreementRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, location_name: "AccessRole"))
|
1340
|
+
UpdateAgreementRequest.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
1341
|
+
UpdateAgreementRequest.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
1332
1342
|
UpdateAgreementRequest.struct_class = Types::UpdateAgreementRequest
|
1333
1343
|
|
1334
1344
|
UpdateAgreementResponse.add_member(:agreement_id, Shapes::ShapeRef.new(shape: AgreementId, required: true, location_name: "AgreementId"))
|
@@ -119,6 +119,14 @@ module Aws::Transfer
|
|
119
119
|
# 'BasicAuthSecretId=""'`
|
120
120
|
# @return [String]
|
121
121
|
#
|
122
|
+
# @!attribute [rw] preserve_content_type
|
123
|
+
# Allows you to use the Amazon S3 `Content-Type` that is associated
|
124
|
+
# with objects in S3 instead of having the content type mapped based
|
125
|
+
# on the file extension. This parameter is enabled by default when you
|
126
|
+
# create an AS2 connector from the console, but disabled by default
|
127
|
+
# when you create an AS2 connector by calling the API directly.
|
128
|
+
# @return [String]
|
129
|
+
#
|
122
130
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/As2ConnectorConfig AWS API Documentation
|
123
131
|
#
|
124
132
|
class As2ConnectorConfig < Struct.new(
|
@@ -130,7 +138,8 @@ module Aws::Transfer
|
|
130
138
|
:signing_algorithm,
|
131
139
|
:mdn_signing_algorithm,
|
132
140
|
:mdn_response,
|
133
|
-
:basic_auth_secret_id
|
141
|
+
:basic_auth_secret_id,
|
142
|
+
:preserve_content_type)
|
134
143
|
SENSITIVE = []
|
135
144
|
include Aws::Structure
|
136
145
|
end
|
@@ -480,6 +489,34 @@ module Aws::Transfer
|
|
480
489
|
# Key-value pairs that can be used to group and search for agreements.
|
481
490
|
# @return [Array<Types::Tag>]
|
482
491
|
#
|
492
|
+
# @!attribute [rw] preserve_filename
|
493
|
+
# Determines whether or not Transfer Family appends a unique string of
|
494
|
+
# characters to the end of the AS2 message payload filename when
|
495
|
+
# saving it.
|
496
|
+
#
|
497
|
+
# * `ENABLED`: the filename provided by your trading parter is
|
498
|
+
# preserved when the file is saved.
|
499
|
+
#
|
500
|
+
# * `DISABLED` (default value): when Transfer Family saves the file,
|
501
|
+
# the filename is adjusted, as described in [File names and
|
502
|
+
# locations][1].
|
503
|
+
#
|
504
|
+
#
|
505
|
+
#
|
506
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
507
|
+
# @return [String]
|
508
|
+
#
|
509
|
+
# @!attribute [rw] enforce_message_signing
|
510
|
+
# Determines whether or not unsigned messages from your trading
|
511
|
+
# partners will be accepted.
|
512
|
+
#
|
513
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
514
|
+
# trading partner.
|
515
|
+
#
|
516
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
517
|
+
# messages from your trading partner.
|
518
|
+
# @return [String]
|
519
|
+
#
|
483
520
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateAgreementRequest AWS API Documentation
|
484
521
|
#
|
485
522
|
class CreateAgreementRequest < Struct.new(
|
@@ -490,7 +527,9 @@ module Aws::Transfer
|
|
490
527
|
:base_directory,
|
491
528
|
:access_role,
|
492
529
|
:status,
|
493
|
-
:tags
|
530
|
+
:tags,
|
531
|
+
:preserve_filename,
|
532
|
+
:enforce_message_signing)
|
494
533
|
SENSITIVE = []
|
495
534
|
include Aws::Structure
|
496
535
|
end
|
@@ -2193,6 +2232,34 @@ module Aws::Transfer
|
|
2193
2232
|
# Key-value pairs that can be used to group and search for agreements.
|
2194
2233
|
# @return [Array<Types::Tag>]
|
2195
2234
|
#
|
2235
|
+
# @!attribute [rw] preserve_filename
|
2236
|
+
# Determines whether or not Transfer Family appends a unique string of
|
2237
|
+
# characters to the end of the AS2 message payload filename when
|
2238
|
+
# saving it.
|
2239
|
+
#
|
2240
|
+
# * `ENABLED`: the filename provided by your trading parter is
|
2241
|
+
# preserved when the file is saved.
|
2242
|
+
#
|
2243
|
+
# * `DISABLED` (default value): when Transfer Family saves the file,
|
2244
|
+
# the filename is adjusted, as described in [File names and
|
2245
|
+
# locations][1].
|
2246
|
+
#
|
2247
|
+
#
|
2248
|
+
#
|
2249
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
2250
|
+
# @return [String]
|
2251
|
+
#
|
2252
|
+
# @!attribute [rw] enforce_message_signing
|
2253
|
+
# Determines whether or not unsigned messages from your trading
|
2254
|
+
# partners will be accepted.
|
2255
|
+
#
|
2256
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
2257
|
+
# trading partner.
|
2258
|
+
#
|
2259
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
2260
|
+
# messages from your trading partner.
|
2261
|
+
# @return [String]
|
2262
|
+
#
|
2196
2263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedAgreement AWS API Documentation
|
2197
2264
|
#
|
2198
2265
|
class DescribedAgreement < Struct.new(
|
@@ -2205,7 +2272,9 @@ module Aws::Transfer
|
|
2205
2272
|
:partner_profile_id,
|
2206
2273
|
:base_directory,
|
2207
2274
|
:access_role,
|
2208
|
-
:tags
|
2275
|
+
:tags,
|
2276
|
+
:preserve_filename,
|
2277
|
+
:enforce_message_signing)
|
2209
2278
|
SENSITIVE = []
|
2210
2279
|
include Aws::Structure
|
2211
2280
|
end
|
@@ -2233,9 +2302,8 @@ module Aws::Transfer
|
|
2233
2302
|
# @return [String]
|
2234
2303
|
#
|
2235
2304
|
# @!attribute [rw] status
|
2236
|
-
#
|
2237
|
-
#
|
2238
|
-
# replace the current certificate when it expires.
|
2305
|
+
# Currently, the only available status is `ACTIVE`: all other values
|
2306
|
+
# are reserved for future use.
|
2239
2307
|
# @return [String]
|
2240
2308
|
#
|
2241
2309
|
# @!attribute [rw] certificate
|
@@ -6187,6 +6255,34 @@ module Aws::Transfer
|
|
6187
6255
|
# Manager.
|
6188
6256
|
# @return [String]
|
6189
6257
|
#
|
6258
|
+
# @!attribute [rw] preserve_filename
|
6259
|
+
# Determines whether or not Transfer Family appends a unique string of
|
6260
|
+
# characters to the end of the AS2 message payload filename when
|
6261
|
+
# saving it.
|
6262
|
+
#
|
6263
|
+
# * `ENABLED`: the filename provided by your trading parter is
|
6264
|
+
# preserved when the file is saved.
|
6265
|
+
#
|
6266
|
+
# * `DISABLED` (default value): when Transfer Family saves the file,
|
6267
|
+
# the filename is adjusted, as described in [File names and
|
6268
|
+
# locations][1].
|
6269
|
+
#
|
6270
|
+
#
|
6271
|
+
#
|
6272
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/userguide/send-as2-messages.html#file-names-as2
|
6273
|
+
# @return [String]
|
6274
|
+
#
|
6275
|
+
# @!attribute [rw] enforce_message_signing
|
6276
|
+
# Determines whether or not unsigned messages from your trading
|
6277
|
+
# partners will be accepted.
|
6278
|
+
#
|
6279
|
+
# * `ENABLED`: Transfer Family rejects unsigned messages from your
|
6280
|
+
# trading partner.
|
6281
|
+
#
|
6282
|
+
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
6283
|
+
# messages from your trading partner.
|
6284
|
+
# @return [String]
|
6285
|
+
#
|
6190
6286
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateAgreementRequest AWS API Documentation
|
6191
6287
|
#
|
6192
6288
|
class UpdateAgreementRequest < Struct.new(
|
@@ -6197,7 +6293,9 @@ module Aws::Transfer
|
|
6197
6293
|
:local_profile_id,
|
6198
6294
|
:partner_profile_id,
|
6199
6295
|
:base_directory,
|
6200
|
-
:access_role
|
6296
|
+
:access_role,
|
6297
|
+
:preserve_filename,
|
6298
|
+
:enforce_message_signing)
|
6201
6299
|
SENSITIVE = []
|
6202
6300
|
include Aws::Structure
|
6203
6301
|
end
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -122,7 +122,9 @@ module Aws
|
|
122
122
|
key: ::String,
|
123
123
|
value: ::String
|
124
124
|
},
|
125
|
-
]
|
125
|
+
],
|
126
|
+
?preserve_filename: ("ENABLED" | "DISABLED"),
|
127
|
+
?enforce_message_signing: ("ENABLED" | "DISABLED")
|
126
128
|
) -> _CreateAgreementResponseSuccess
|
127
129
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgreementResponseSuccess
|
128
130
|
|
@@ -142,7 +144,8 @@ module Aws
|
|
142
144
|
signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE")?,
|
143
145
|
mdn_signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE" | "DEFAULT")?,
|
144
146
|
mdn_response: ("SYNC" | "NONE")?,
|
145
|
-
basic_auth_secret_id: ::String
|
147
|
+
basic_auth_secret_id: ::String?,
|
148
|
+
preserve_content_type: ("ENABLED" | "DISABLED")?
|
146
149
|
},
|
147
150
|
access_role: ::String,
|
148
151
|
?logging_role: ::String,
|
@@ -1023,7 +1026,9 @@ module Aws
|
|
1023
1026
|
?local_profile_id: ::String,
|
1024
1027
|
?partner_profile_id: ::String,
|
1025
1028
|
?base_directory: ::String,
|
1026
|
-
?access_role: ::String
|
1029
|
+
?access_role: ::String,
|
1030
|
+
?preserve_filename: ("ENABLED" | "DISABLED"),
|
1031
|
+
?enforce_message_signing: ("ENABLED" | "DISABLED")
|
1027
1032
|
) -> _UpdateAgreementResponseSuccess
|
1028
1033
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgreementResponseSuccess
|
1029
1034
|
|
@@ -1057,7 +1062,8 @@ module Aws
|
|
1057
1062
|
signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE")?,
|
1058
1063
|
mdn_signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE" | "DEFAULT")?,
|
1059
1064
|
mdn_response: ("SYNC" | "NONE")?,
|
1060
|
-
basic_auth_secret_id: ::String
|
1065
|
+
basic_auth_secret_id: ::String?,
|
1066
|
+
preserve_content_type: ("ENABLED" | "DISABLED")?
|
1061
1067
|
},
|
1062
1068
|
?access_role: ::String,
|
1063
1069
|
?logging_role: ::String,
|
data/sig/types.rbs
CHANGED
@@ -23,6 +23,7 @@ module Aws::Transfer
|
|
23
23
|
attr_accessor mdn_signing_algorithm: ("SHA256" | "SHA384" | "SHA512" | "SHA1" | "NONE" | "DEFAULT")
|
24
24
|
attr_accessor mdn_response: ("SYNC" | "NONE")
|
25
25
|
attr_accessor basic_auth_secret_id: ::String
|
26
|
+
attr_accessor preserve_content_type: ("ENABLED" | "DISABLED")
|
26
27
|
SENSITIVE: []
|
27
28
|
end
|
28
29
|
|
@@ -74,6 +75,8 @@ module Aws::Transfer
|
|
74
75
|
attr_accessor access_role: ::String
|
75
76
|
attr_accessor status: ("ACTIVE" | "INACTIVE")
|
76
77
|
attr_accessor tags: ::Array[Types::Tag]
|
78
|
+
attr_accessor preserve_filename: ("ENABLED" | "DISABLED")
|
79
|
+
attr_accessor enforce_message_signing: ("ENABLED" | "DISABLED")
|
77
80
|
SENSITIVE: []
|
78
81
|
end
|
79
82
|
|
@@ -432,6 +435,8 @@ module Aws::Transfer
|
|
432
435
|
attr_accessor base_directory: ::String
|
433
436
|
attr_accessor access_role: ::String
|
434
437
|
attr_accessor tags: ::Array[Types::Tag]
|
438
|
+
attr_accessor preserve_filename: ("ENABLED" | "DISABLED")
|
439
|
+
attr_accessor enforce_message_signing: ("ENABLED" | "DISABLED")
|
435
440
|
SENSITIVE: []
|
436
441
|
end
|
437
442
|
|
@@ -1230,6 +1235,8 @@ module Aws::Transfer
|
|
1230
1235
|
attr_accessor partner_profile_id: ::String
|
1231
1236
|
attr_accessor base_directory: ::String
|
1232
1237
|
attr_accessor access_role: ::String
|
1238
|
+
attr_accessor preserve_filename: ("ENABLED" | "DISABLED")
|
1239
|
+
attr_accessor enforce_message_signing: ("ENABLED" | "DISABLED")
|
1233
1240
|
SENSITIVE: []
|
1234
1241
|
end
|
1235
1242
|
|
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.
|
4
|
+
version: 1.109.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: 2024-12-
|
11
|
+
date: 2024-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|