aws-sdk-transfer 1.110.0 → 1.111.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 +67 -3
- data/lib/aws-sdk-transfer/client_api.rb +12 -1
- data/lib/aws-sdk-transfer/types.rb +89 -3
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +17 -3
- data/sig/types.rbs +12 -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: d952c1ca40971b6165387bbb01f40600b4231f9cd79200325b1aeb8a641b573e
|
4
|
+
data.tar.gz: f247f8899f9141c09e73d62457c9c6b683fcf07138e46f781eef93594d9ef006
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52c9441e410e106168722907ca8e21aa62a829e7d1d767e59aee2b5bdb3ef80f5fea2e60fc9804554e9d28503d25a71df811ef84a74b6e579ee35d841266bc3d
|
7
|
+
data.tar.gz: 9752283e546ff6dde7025bc130ae28ef0c19bbce15f88567c9e36c17c121183261fc769ba3e6f3df2ab74384dac14783b7d824539e9eda9a7114fcc5519bd386
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.111.0 (2025-01-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added CustomDirectories as a new directory option for storing inbound AS2 messages, MDN files and Status files.
|
8
|
+
|
4
9
|
1.110.0 (2025-01-15)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.111.0
|
@@ -657,6 +657,11 @@ module Aws::Transfer
|
|
657
657
|
# The partner is identified with the `PartnerProfileId`, and the AS2
|
658
658
|
# process is identified with the `LocalProfileId`.
|
659
659
|
#
|
660
|
+
# <note markdown="1"> Specify *either* `BaseDirectory` or `CustomDirectories`, but not both.
|
661
|
+
# Specifying both causes the command to fail.
|
662
|
+
#
|
663
|
+
# </note>
|
664
|
+
#
|
660
665
|
# @option params [String] :description
|
661
666
|
# A name or short description to identify the agreement.
|
662
667
|
#
|
@@ -670,7 +675,7 @@ module Aws::Transfer
|
|
670
675
|
# @option params [required, String] :partner_profile_id
|
671
676
|
# A unique identifier for the partner profile used in the agreement.
|
672
677
|
#
|
673
|
-
# @option params [
|
678
|
+
# @option params [String] :base_directory
|
674
679
|
# The landing directory (folder) for files transferred by using the AS2
|
675
680
|
# protocol.
|
676
681
|
#
|
@@ -742,6 +747,21 @@ module Aws::Transfer
|
|
742
747
|
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
743
748
|
# messages from your trading partner.
|
744
749
|
#
|
750
|
+
# @option params [Types::CustomDirectoriesType] :custom_directories
|
751
|
+
# A `CustomDirectoriesType` structure. This structure specifies custom
|
752
|
+
# directories for storing various AS2 message files. You can specify
|
753
|
+
# directories for the following types of files.
|
754
|
+
#
|
755
|
+
# * Failed files
|
756
|
+
#
|
757
|
+
# * MDN files
|
758
|
+
#
|
759
|
+
# * Payload files
|
760
|
+
#
|
761
|
+
# * Status files
|
762
|
+
#
|
763
|
+
# * Temporary files
|
764
|
+
#
|
745
765
|
# @return [Types::CreateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
746
766
|
#
|
747
767
|
# * {Types::CreateAgreementResponse#agreement_id #agreement_id} => String
|
@@ -753,7 +773,7 @@ module Aws::Transfer
|
|
753
773
|
# server_id: "ServerId", # required
|
754
774
|
# local_profile_id: "ProfileId", # required
|
755
775
|
# partner_profile_id: "ProfileId", # required
|
756
|
-
# base_directory: "HomeDirectory",
|
776
|
+
# base_directory: "HomeDirectory",
|
757
777
|
# access_role: "Role", # required
|
758
778
|
# status: "ACTIVE", # accepts ACTIVE, INACTIVE
|
759
779
|
# tags: [
|
@@ -764,6 +784,13 @@ module Aws::Transfer
|
|
764
784
|
# ],
|
765
785
|
# preserve_filename: "ENABLED", # accepts ENABLED, DISABLED
|
766
786
|
# enforce_message_signing: "ENABLED", # accepts ENABLED, DISABLED
|
787
|
+
# custom_directories: {
|
788
|
+
# failed_files_directory: "HomeDirectory", # required
|
789
|
+
# mdn_files_directory: "HomeDirectory", # required
|
790
|
+
# payload_files_directory: "HomeDirectory", # required
|
791
|
+
# status_files_directory: "HomeDirectory", # required
|
792
|
+
# temporary_files_directory: "HomeDirectory", # required
|
793
|
+
# },
|
767
794
|
# })
|
768
795
|
#
|
769
796
|
# @example Response structure
|
@@ -2192,6 +2219,11 @@ module Aws::Transfer
|
|
2192
2219
|
# resp.agreement.tags[0].value #=> String
|
2193
2220
|
# resp.agreement.preserve_filename #=> String, one of "ENABLED", "DISABLED"
|
2194
2221
|
# resp.agreement.enforce_message_signing #=> String, one of "ENABLED", "DISABLED"
|
2222
|
+
# resp.agreement.custom_directories.failed_files_directory #=> String
|
2223
|
+
# resp.agreement.custom_directories.mdn_files_directory #=> String
|
2224
|
+
# resp.agreement.custom_directories.payload_files_directory #=> String
|
2225
|
+
# resp.agreement.custom_directories.status_files_directory #=> String
|
2226
|
+
# resp.agreement.custom_directories.temporary_files_directory #=> String
|
2195
2227
|
#
|
2196
2228
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeAgreement AWS API Documentation
|
2197
2229
|
#
|
@@ -4359,6 +4391,16 @@ module Aws::Transfer
|
|
4359
4391
|
# `AgreementId` and the `ServerId` for the agreement that you want to
|
4360
4392
|
# update, along with the new values for the parameters to update.
|
4361
4393
|
#
|
4394
|
+
# <note markdown="1"> Specify *either* `BaseDirectory` or `CustomDirectories`, but not both.
|
4395
|
+
# Specifying both causes the command to fail.
|
4396
|
+
#
|
4397
|
+
# If you update an agreement from using base directory to custom
|
4398
|
+
# directories, the base directory is no longer used. Similarly, if you
|
4399
|
+
# change from custom directories to a base directory, the custom
|
4400
|
+
# directories are no longer used.
|
4401
|
+
#
|
4402
|
+
# </note>
|
4403
|
+
#
|
4362
4404
|
# @option params [required, String] :agreement_id
|
4363
4405
|
# A unique identifier for the agreement. This identifier is returned
|
4364
4406
|
# when you create an agreement.
|
@@ -4448,6 +4490,21 @@ module Aws::Transfer
|
|
4448
4490
|
# * `DISABLED` (default value): Transfer Family accepts unsigned
|
4449
4491
|
# messages from your trading partner.
|
4450
4492
|
#
|
4493
|
+
# @option params [Types::CustomDirectoriesType] :custom_directories
|
4494
|
+
# A `CustomDirectoriesType` structure. This structure specifies custom
|
4495
|
+
# directories for storing various AS2 message files. You can specify
|
4496
|
+
# directories for the following types of files.
|
4497
|
+
#
|
4498
|
+
# * Failed files
|
4499
|
+
#
|
4500
|
+
# * MDN files
|
4501
|
+
#
|
4502
|
+
# * Payload files
|
4503
|
+
#
|
4504
|
+
# * Status files
|
4505
|
+
#
|
4506
|
+
# * Temporary files
|
4507
|
+
#
|
4451
4508
|
# @return [Types::UpdateAgreementResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4452
4509
|
#
|
4453
4510
|
# * {Types::UpdateAgreementResponse#agreement_id #agreement_id} => String
|
@@ -4465,6 +4522,13 @@ module Aws::Transfer
|
|
4465
4522
|
# access_role: "Role",
|
4466
4523
|
# preserve_filename: "ENABLED", # accepts ENABLED, DISABLED
|
4467
4524
|
# enforce_message_signing: "ENABLED", # accepts ENABLED, DISABLED
|
4525
|
+
# custom_directories: {
|
4526
|
+
# failed_files_directory: "HomeDirectory", # required
|
4527
|
+
# mdn_files_directory: "HomeDirectory", # required
|
4528
|
+
# payload_files_directory: "HomeDirectory", # required
|
4529
|
+
# status_files_directory: "HomeDirectory", # required
|
4530
|
+
# temporary_files_directory: "HomeDirectory", # required
|
4531
|
+
# },
|
4468
4532
|
# })
|
4469
4533
|
#
|
4470
4534
|
# @example Response structure
|
@@ -5311,7 +5375,7 @@ module Aws::Transfer
|
|
5311
5375
|
tracer: tracer
|
5312
5376
|
)
|
5313
5377
|
context[:gem_name] = 'aws-sdk-transfer'
|
5314
|
-
context[:gem_version] = '1.
|
5378
|
+
context[:gem_version] = '1.111.0'
|
5315
5379
|
Seahorse::Client::Request.new(handlers, context)
|
5316
5380
|
end
|
5317
5381
|
|
@@ -59,6 +59,7 @@ module Aws::Transfer
|
|
59
59
|
CreateWebAppResponse = Shapes::StructureShape.new(name: 'CreateWebAppResponse')
|
60
60
|
CreateWorkflowRequest = Shapes::StructureShape.new(name: 'CreateWorkflowRequest')
|
61
61
|
CreateWorkflowResponse = Shapes::StructureShape.new(name: 'CreateWorkflowResponse')
|
62
|
+
CustomDirectoriesType = Shapes::StructureShape.new(name: 'CustomDirectoriesType')
|
62
63
|
CustomStepDetails = Shapes::StructureShape.new(name: 'CustomStepDetails')
|
63
64
|
CustomStepStatus = Shapes::StringShape.new(name: 'CustomStepStatus')
|
64
65
|
CustomStepTarget = Shapes::StringShape.new(name: 'CustomStepTarget')
|
@@ -435,12 +436,13 @@ module Aws::Transfer
|
|
435
436
|
CreateAgreementRequest.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
|
436
437
|
CreateAgreementRequest.add_member(:local_profile_id, Shapes::ShapeRef.new(shape: ProfileId, required: true, location_name: "LocalProfileId"))
|
437
438
|
CreateAgreementRequest.add_member(:partner_profile_id, Shapes::ShapeRef.new(shape: ProfileId, required: true, location_name: "PartnerProfileId"))
|
438
|
-
CreateAgreementRequest.add_member(:base_directory, Shapes::ShapeRef.new(shape: HomeDirectory,
|
439
|
+
CreateAgreementRequest.add_member(:base_directory, Shapes::ShapeRef.new(shape: HomeDirectory, location_name: "BaseDirectory"))
|
439
440
|
CreateAgreementRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, required: true, location_name: "AccessRole"))
|
440
441
|
CreateAgreementRequest.add_member(:status, Shapes::ShapeRef.new(shape: AgreementStatusType, location_name: "Status"))
|
441
442
|
CreateAgreementRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
442
443
|
CreateAgreementRequest.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
443
444
|
CreateAgreementRequest.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
445
|
+
CreateAgreementRequest.add_member(:custom_directories, Shapes::ShapeRef.new(shape: CustomDirectoriesType, location_name: "CustomDirectories"))
|
444
446
|
CreateAgreementRequest.struct_class = Types::CreateAgreementRequest
|
445
447
|
|
446
448
|
CreateAgreementResponse.add_member(:agreement_id, Shapes::ShapeRef.new(shape: AgreementId, required: true, location_name: "AgreementId"))
|
@@ -523,6 +525,13 @@ module Aws::Transfer
|
|
523
525
|
CreateWorkflowResponse.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
|
524
526
|
CreateWorkflowResponse.struct_class = Types::CreateWorkflowResponse
|
525
527
|
|
528
|
+
CustomDirectoriesType.add_member(:failed_files_directory, Shapes::ShapeRef.new(shape: HomeDirectory, required: true, location_name: "FailedFilesDirectory"))
|
529
|
+
CustomDirectoriesType.add_member(:mdn_files_directory, Shapes::ShapeRef.new(shape: HomeDirectory, required: true, location_name: "MdnFilesDirectory"))
|
530
|
+
CustomDirectoriesType.add_member(:payload_files_directory, Shapes::ShapeRef.new(shape: HomeDirectory, required: true, location_name: "PayloadFilesDirectory"))
|
531
|
+
CustomDirectoriesType.add_member(:status_files_directory, Shapes::ShapeRef.new(shape: HomeDirectory, required: true, location_name: "StatusFilesDirectory"))
|
532
|
+
CustomDirectoriesType.add_member(:temporary_files_directory, Shapes::ShapeRef.new(shape: HomeDirectory, required: true, location_name: "TemporaryFilesDirectory"))
|
533
|
+
CustomDirectoriesType.struct_class = Types::CustomDirectoriesType
|
534
|
+
|
526
535
|
CustomStepDetails.add_member(:name, Shapes::ShapeRef.new(shape: WorkflowStepName, location_name: "Name"))
|
527
536
|
CustomStepDetails.add_member(:target, Shapes::ShapeRef.new(shape: CustomStepTarget, location_name: "Target"))
|
528
537
|
CustomStepDetails.add_member(:timeout_seconds, Shapes::ShapeRef.new(shape: CustomStepTimeoutSeconds, location_name: "TimeoutSeconds"))
|
@@ -689,6 +698,7 @@ module Aws::Transfer
|
|
689
698
|
DescribedAgreement.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "Tags"))
|
690
699
|
DescribedAgreement.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
691
700
|
DescribedAgreement.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
701
|
+
DescribedAgreement.add_member(:custom_directories, Shapes::ShapeRef.new(shape: CustomDirectoriesType, location_name: "CustomDirectories"))
|
692
702
|
DescribedAgreement.struct_class = Types::DescribedAgreement
|
693
703
|
|
694
704
|
DescribedCertificate.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
|
@@ -1339,6 +1349,7 @@ module Aws::Transfer
|
|
1339
1349
|
UpdateAgreementRequest.add_member(:access_role, Shapes::ShapeRef.new(shape: Role, location_name: "AccessRole"))
|
1340
1350
|
UpdateAgreementRequest.add_member(:preserve_filename, Shapes::ShapeRef.new(shape: PreserveFilenameType, location_name: "PreserveFilename"))
|
1341
1351
|
UpdateAgreementRequest.add_member(:enforce_message_signing, Shapes::ShapeRef.new(shape: EnforceMessageSigningType, location_name: "EnforceMessageSigning"))
|
1352
|
+
UpdateAgreementRequest.add_member(:custom_directories, Shapes::ShapeRef.new(shape: CustomDirectoriesType, location_name: "CustomDirectories"))
|
1342
1353
|
UpdateAgreementRequest.struct_class = Types::UpdateAgreementRequest
|
1343
1354
|
|
1344
1355
|
UpdateAgreementResponse.add_member(:agreement_id, Shapes::ShapeRef.new(shape: AgreementId, required: true, location_name: "AgreementId"))
|
@@ -517,6 +517,22 @@ module Aws::Transfer
|
|
517
517
|
# messages from your trading partner.
|
518
518
|
# @return [String]
|
519
519
|
#
|
520
|
+
# @!attribute [rw] custom_directories
|
521
|
+
# A `CustomDirectoriesType` structure. This structure specifies custom
|
522
|
+
# directories for storing various AS2 message files. You can specify
|
523
|
+
# directories for the following types of files.
|
524
|
+
#
|
525
|
+
# * Failed files
|
526
|
+
#
|
527
|
+
# * MDN files
|
528
|
+
#
|
529
|
+
# * Payload files
|
530
|
+
#
|
531
|
+
# * Status files
|
532
|
+
#
|
533
|
+
# * Temporary files
|
534
|
+
# @return [Types::CustomDirectoriesType]
|
535
|
+
#
|
520
536
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateAgreementRequest AWS API Documentation
|
521
537
|
#
|
522
538
|
class CreateAgreementRequest < Struct.new(
|
@@ -529,7 +545,8 @@ module Aws::Transfer
|
|
529
545
|
:status,
|
530
546
|
:tags,
|
531
547
|
:preserve_filename,
|
532
|
-
:enforce_message_signing
|
548
|
+
:enforce_message_signing,
|
549
|
+
:custom_directories)
|
533
550
|
SENSITIVE = []
|
534
551
|
include Aws::Structure
|
535
552
|
end
|
@@ -1325,6 +1342,41 @@ module Aws::Transfer
|
|
1325
1342
|
include Aws::Structure
|
1326
1343
|
end
|
1327
1344
|
|
1345
|
+
# Contains Amazon S3 locations for storing specific types of AS2 message
|
1346
|
+
# files.
|
1347
|
+
#
|
1348
|
+
# @!attribute [rw] failed_files_directory
|
1349
|
+
# Specifies a location to store failed AS2 message files.
|
1350
|
+
# @return [String]
|
1351
|
+
#
|
1352
|
+
# @!attribute [rw] mdn_files_directory
|
1353
|
+
# Specifies a location to store MDN files.
|
1354
|
+
# @return [String]
|
1355
|
+
#
|
1356
|
+
# @!attribute [rw] payload_files_directory
|
1357
|
+
# Specifies a location to store the payload for AS2 message files.
|
1358
|
+
# @return [String]
|
1359
|
+
#
|
1360
|
+
# @!attribute [rw] status_files_directory
|
1361
|
+
# Specifies a location to store AS2 status messages.
|
1362
|
+
# @return [String]
|
1363
|
+
#
|
1364
|
+
# @!attribute [rw] temporary_files_directory
|
1365
|
+
# Specifies a location to store temporary AS2 message files.
|
1366
|
+
# @return [String]
|
1367
|
+
#
|
1368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CustomDirectoriesType AWS API Documentation
|
1369
|
+
#
|
1370
|
+
class CustomDirectoriesType < Struct.new(
|
1371
|
+
:failed_files_directory,
|
1372
|
+
:mdn_files_directory,
|
1373
|
+
:payload_files_directory,
|
1374
|
+
:status_files_directory,
|
1375
|
+
:temporary_files_directory)
|
1376
|
+
SENSITIVE = []
|
1377
|
+
include Aws::Structure
|
1378
|
+
end
|
1379
|
+
|
1328
1380
|
# Each step type has its own `StepDetails` structure.
|
1329
1381
|
#
|
1330
1382
|
# @!attribute [rw] name
|
@@ -2260,6 +2312,22 @@ module Aws::Transfer
|
|
2260
2312
|
# messages from your trading partner.
|
2261
2313
|
# @return [String]
|
2262
2314
|
#
|
2315
|
+
# @!attribute [rw] custom_directories
|
2316
|
+
# A `CustomDirectoriesType` structure. This structure specifies custom
|
2317
|
+
# directories for storing various AS2 message files. You can specify
|
2318
|
+
# directories for the following types of files.
|
2319
|
+
#
|
2320
|
+
# * Failed files
|
2321
|
+
#
|
2322
|
+
# * MDN files
|
2323
|
+
#
|
2324
|
+
# * Payload files
|
2325
|
+
#
|
2326
|
+
# * Status files
|
2327
|
+
#
|
2328
|
+
# * Temporary files
|
2329
|
+
# @return [Types::CustomDirectoriesType]
|
2330
|
+
#
|
2263
2331
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedAgreement AWS API Documentation
|
2264
2332
|
#
|
2265
2333
|
class DescribedAgreement < Struct.new(
|
@@ -2274,7 +2342,8 @@ module Aws::Transfer
|
|
2274
2342
|
:access_role,
|
2275
2343
|
:tags,
|
2276
2344
|
:preserve_filename,
|
2277
|
-
:enforce_message_signing
|
2345
|
+
:enforce_message_signing,
|
2346
|
+
:custom_directories)
|
2278
2347
|
SENSITIVE = []
|
2279
2348
|
include Aws::Structure
|
2280
2349
|
end
|
@@ -6283,6 +6352,22 @@ module Aws::Transfer
|
|
6283
6352
|
# messages from your trading partner.
|
6284
6353
|
# @return [String]
|
6285
6354
|
#
|
6355
|
+
# @!attribute [rw] custom_directories
|
6356
|
+
# A `CustomDirectoriesType` structure. This structure specifies custom
|
6357
|
+
# directories for storing various AS2 message files. You can specify
|
6358
|
+
# directories for the following types of files.
|
6359
|
+
#
|
6360
|
+
# * Failed files
|
6361
|
+
#
|
6362
|
+
# * MDN files
|
6363
|
+
#
|
6364
|
+
# * Payload files
|
6365
|
+
#
|
6366
|
+
# * Status files
|
6367
|
+
#
|
6368
|
+
# * Temporary files
|
6369
|
+
# @return [Types::CustomDirectoriesType]
|
6370
|
+
#
|
6286
6371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateAgreementRequest AWS API Documentation
|
6287
6372
|
#
|
6288
6373
|
class UpdateAgreementRequest < Struct.new(
|
@@ -6295,7 +6380,8 @@ module Aws::Transfer
|
|
6295
6380
|
:base_directory,
|
6296
6381
|
:access_role,
|
6297
6382
|
:preserve_filename,
|
6298
|
-
:enforce_message_signing
|
6383
|
+
:enforce_message_signing,
|
6384
|
+
:custom_directories)
|
6299
6385
|
SENSITIVE = []
|
6300
6386
|
include Aws::Structure
|
6301
6387
|
end
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -116,7 +116,7 @@ module Aws
|
|
116
116
|
server_id: ::String,
|
117
117
|
local_profile_id: ::String,
|
118
118
|
partner_profile_id: ::String,
|
119
|
-
base_directory: ::String,
|
119
|
+
?base_directory: ::String,
|
120
120
|
access_role: ::String,
|
121
121
|
?status: ("ACTIVE" | "INACTIVE"),
|
122
122
|
?tags: Array[
|
@@ -126,7 +126,14 @@ module Aws
|
|
126
126
|
},
|
127
127
|
],
|
128
128
|
?preserve_filename: ("ENABLED" | "DISABLED"),
|
129
|
-
?enforce_message_signing: ("ENABLED" | "DISABLED")
|
129
|
+
?enforce_message_signing: ("ENABLED" | "DISABLED"),
|
130
|
+
?custom_directories: {
|
131
|
+
failed_files_directory: ::String,
|
132
|
+
mdn_files_directory: ::String,
|
133
|
+
payload_files_directory: ::String,
|
134
|
+
status_files_directory: ::String,
|
135
|
+
temporary_files_directory: ::String
|
136
|
+
}
|
130
137
|
) -> _CreateAgreementResponseSuccess
|
131
138
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgreementResponseSuccess
|
132
139
|
|
@@ -1030,7 +1037,14 @@ module Aws
|
|
1030
1037
|
?base_directory: ::String,
|
1031
1038
|
?access_role: ::String,
|
1032
1039
|
?preserve_filename: ("ENABLED" | "DISABLED"),
|
1033
|
-
?enforce_message_signing: ("ENABLED" | "DISABLED")
|
1040
|
+
?enforce_message_signing: ("ENABLED" | "DISABLED"),
|
1041
|
+
?custom_directories: {
|
1042
|
+
failed_files_directory: ::String,
|
1043
|
+
mdn_files_directory: ::String,
|
1044
|
+
payload_files_directory: ::String,
|
1045
|
+
status_files_directory: ::String,
|
1046
|
+
temporary_files_directory: ::String
|
1047
|
+
}
|
1034
1048
|
) -> _UpdateAgreementResponseSuccess
|
1035
1049
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAgreementResponseSuccess
|
1036
1050
|
|
data/sig/types.rbs
CHANGED
@@ -77,6 +77,7 @@ module Aws::Transfer
|
|
77
77
|
attr_accessor tags: ::Array[Types::Tag]
|
78
78
|
attr_accessor preserve_filename: ("ENABLED" | "DISABLED")
|
79
79
|
attr_accessor enforce_message_signing: ("ENABLED" | "DISABLED")
|
80
|
+
attr_accessor custom_directories: Types::CustomDirectoriesType
|
80
81
|
SENSITIVE: []
|
81
82
|
end
|
82
83
|
|
@@ -186,6 +187,15 @@ module Aws::Transfer
|
|
186
187
|
SENSITIVE: []
|
187
188
|
end
|
188
189
|
|
190
|
+
class CustomDirectoriesType
|
191
|
+
attr_accessor failed_files_directory: ::String
|
192
|
+
attr_accessor mdn_files_directory: ::String
|
193
|
+
attr_accessor payload_files_directory: ::String
|
194
|
+
attr_accessor status_files_directory: ::String
|
195
|
+
attr_accessor temporary_files_directory: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
189
199
|
class CustomStepDetails
|
190
200
|
attr_accessor name: ::String
|
191
201
|
attr_accessor target: ::String
|
@@ -437,6 +447,7 @@ module Aws::Transfer
|
|
437
447
|
attr_accessor tags: ::Array[Types::Tag]
|
438
448
|
attr_accessor preserve_filename: ("ENABLED" | "DISABLED")
|
439
449
|
attr_accessor enforce_message_signing: ("ENABLED" | "DISABLED")
|
450
|
+
attr_accessor custom_directories: Types::CustomDirectoriesType
|
440
451
|
SENSITIVE: []
|
441
452
|
end
|
442
453
|
|
@@ -1237,6 +1248,7 @@ module Aws::Transfer
|
|
1237
1248
|
attr_accessor access_role: ::String
|
1238
1249
|
attr_accessor preserve_filename: ("ENABLED" | "DISABLED")
|
1239
1250
|
attr_accessor enforce_message_signing: ("ENABLED" | "DISABLED")
|
1251
|
+
attr_accessor custom_directories: Types::CustomDirectoriesType
|
1240
1252
|
SENSITIVE: []
|
1241
1253
|
end
|
1242
1254
|
|
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.111.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: 2025-01-
|
11
|
+
date: 2025-01-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|