aws-sdk-transfer 1.82.0 → 1.84.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: ef72ceb64400579c00a02fd7fd927ba16d3463a63dafe76d954231c637b57b5d
4
- data.tar.gz: c0bb3bc0531894199998b6a380c1f1192578aefffcbd43b8e27d7b5989d6997f
3
+ metadata.gz: eaad993f5ebb6d19753c237db94a5f16686faa3c6421f6eee927c919a1e27534
4
+ data.tar.gz: 610ad2cb14bedd04c227161609813d000697758a4cd5c0f9e05133426fb8215a
5
5
  SHA512:
6
- metadata.gz: 4644883e0a72bf6249d6dc4f3bca9d539e2b3479aa29e41ee87f3a819d9c3f73edc1bc196262e08e9778f03551de9922658dbcade23d16b3915406a25ed48c0c
7
- data.tar.gz: fb964a28eacc50507c6c7cd0f1547fd1070d691740188e83df3dd36aee0edf5fb6daa738cf5fdd7fdf3b6b9b77c0e36922f8342bb490dace8389068854ea0173
6
+ metadata.gz: 24ce1f79924e3bf4bbf15abf3b8a0daff602d1d0d9fbf268db540eb188a2984052dd80699cbaa403e0cd484bc8ccde71ac306e0114c48df7c459bb3797bebfad
7
+ data.tar.gz: 606ab70216480b776531becec406d3b6b4f1187a71d2c73bb52a96eea2d1d638299ca5fcaeb98d7609cfa9b89f121c18e987d6c4f8c5986e60e521f5400405da
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.84.0 (2023-11-16)
5
+ ------------------
6
+
7
+ * Feature - Introduced S3StorageOptions for servers to enable directory listing optimizations and added Type fields to logical directory mappings.
8
+
9
+ 1.83.0 (2023-10-26)
10
+ ------------------
11
+
12
+ * Feature - No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.
13
+
4
14
  1.82.0 (2023-10-16)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.82.0
1
+ 1.84.0
@@ -540,6 +540,7 @@ module Aws::Transfer
540
540
  # {
541
541
  # entry: "MapEntry", # required
542
542
  # target: "MapTarget", # required
543
+ # type: "FILE", # accepts FILE, DIRECTORY
543
544
  # },
544
545
  # ],
545
546
  # policy: "Policy",
@@ -1130,6 +1131,15 @@ module Aws::Transfer
1130
1131
  # `update-server --server-id s-1234567890abcdef0
1131
1132
  # --structured-log-destinations`
1132
1133
  #
1134
+ # @option params [Types::S3StorageOptions] :s3_storage_options
1135
+ # Specifies whether or not performance for your Amazon S3 directories is
1136
+ # optimized. This is disabled by default.
1137
+ #
1138
+ # By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
1139
+ # you enable this option, you would then need to explicitly set the
1140
+ # `HomeDirectoryMapEntry` `Type` to `FILE` if you want a mapping to have
1141
+ # a file target.
1142
+ #
1133
1143
  # @return [Types::CreateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1134
1144
  #
1135
1145
  # * {Types::CreateServerResponse#server_id #server_id} => String
@@ -1156,7 +1166,7 @@ module Aws::Transfer
1156
1166
  # sftp_authentication_methods: "PASSWORD", # accepts PASSWORD, PUBLIC_KEY, PUBLIC_KEY_OR_PASSWORD, PUBLIC_KEY_AND_PASSWORD
1157
1167
  # },
1158
1168
  # identity_provider_type: "SERVICE_MANAGED", # accepts SERVICE_MANAGED, API_GATEWAY, AWS_DIRECTORY_SERVICE, AWS_LAMBDA
1159
- # logging_role: "Role",
1169
+ # logging_role: "NullableRole",
1160
1170
  # post_authentication_login_banner: "PostAuthenticationLoginBanner",
1161
1171
  # pre_authentication_login_banner: "PreAuthenticationLoginBanner",
1162
1172
  # protocols: ["SFTP"], # accepts SFTP, FTP, FTPS, AS2
@@ -1188,6 +1198,9 @@ module Aws::Transfer
1188
1198
  # ],
1189
1199
  # },
1190
1200
  # structured_log_destinations: ["Arn"],
1201
+ # s3_storage_options: {
1202
+ # directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
1203
+ # },
1191
1204
  # })
1192
1205
  #
1193
1206
  # @example Response structure
@@ -1356,6 +1369,7 @@ module Aws::Transfer
1356
1369
  # {
1357
1370
  # entry: "MapEntry", # required
1358
1371
  # target: "MapTarget", # required
1372
+ # type: "FILE", # accepts FILE, DIRECTORY
1359
1373
  # },
1360
1374
  # ],
1361
1375
  # policy: "Policy",
@@ -1909,6 +1923,7 @@ module Aws::Transfer
1909
1923
  # resp.access.home_directory_mappings #=> Array
1910
1924
  # resp.access.home_directory_mappings[0].entry #=> String
1911
1925
  # resp.access.home_directory_mappings[0].target #=> String
1926
+ # resp.access.home_directory_mappings[0].type #=> String, one of "FILE", "DIRECTORY"
1912
1927
  # resp.access.home_directory_type #=> String, one of "PATH", "LOGICAL"
1913
1928
  # resp.access.policy #=> String
1914
1929
  # resp.access.posix_profile.uid #=> Integer
@@ -2322,6 +2337,7 @@ module Aws::Transfer
2322
2337
  # resp.server.workflow_details.on_partial_upload[0].execution_role #=> String
2323
2338
  # resp.server.structured_log_destinations #=> Array
2324
2339
  # resp.server.structured_log_destinations[0] #=> String
2340
+ # resp.server.s3_storage_options.directory_listing_optimization #=> String, one of "ENABLED", "DISABLED"
2325
2341
  #
2326
2342
  #
2327
2343
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2373,6 +2389,7 @@ module Aws::Transfer
2373
2389
  # resp.user.home_directory_mappings #=> Array
2374
2390
  # resp.user.home_directory_mappings[0].entry #=> String
2375
2391
  # resp.user.home_directory_mappings[0].target #=> String
2392
+ # resp.user.home_directory_mappings[0].type #=> String, one of "FILE", "DIRECTORY"
2376
2393
  # resp.user.home_directory_type #=> String, one of "PATH", "LOGICAL"
2377
2394
  # resp.user.policy #=> String
2378
2395
  # resp.user.posix_profile.uid #=> Integer
@@ -3803,6 +3820,7 @@ module Aws::Transfer
3803
3820
  # {
3804
3821
  # entry: "MapEntry", # required
3805
3822
  # target: "MapTarget", # required
3823
+ # type: "FILE", # accepts FILE, DIRECTORY
3806
3824
  # },
3807
3825
  # ],
3808
3826
  # policy: "Policy",
@@ -4393,6 +4411,15 @@ module Aws::Transfer
4393
4411
  # `update-server --server-id s-1234567890abcdef0
4394
4412
  # --structured-log-destinations`
4395
4413
  #
4414
+ # @option params [Types::S3StorageOptions] :s3_storage_options
4415
+ # Specifies whether or not performance for your Amazon S3 directories is
4416
+ # optimized. This is disabled by default.
4417
+ #
4418
+ # By default, home directory mappings have a `TYPE` of `DIRECTORY`. If
4419
+ # you enable this option, you would then need to explicitly set the
4420
+ # `HomeDirectoryMapEntry` `Type` to `FILE` if you want a mapping to have
4421
+ # a file target.
4422
+ #
4396
4423
  # @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4397
4424
  #
4398
4425
  # * {Types::UpdateServerResponse#server_id #server_id} => String
@@ -4444,6 +4471,9 @@ module Aws::Transfer
4444
4471
  # ],
4445
4472
  # },
4446
4473
  # structured_log_destinations: ["Arn"],
4474
+ # s3_storage_options: {
4475
+ # directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
4476
+ # },
4447
4477
  # })
4448
4478
  #
4449
4479
  # @example Response structure
@@ -4590,6 +4620,7 @@ module Aws::Transfer
4590
4620
  # {
4591
4621
  # entry: "MapEntry", # required
4592
4622
  # target: "MapTarget", # required
4623
+ # type: "FILE", # accepts FILE, DIRECTORY
4593
4624
  # },
4594
4625
  # ],
4595
4626
  # policy: "Policy",
@@ -4630,7 +4661,7 @@ module Aws::Transfer
4630
4661
  params: params,
4631
4662
  config: config)
4632
4663
  context[:gem_name] = 'aws-sdk-transfer'
4633
- context[:gem_version] = '1.82.0'
4664
+ context[:gem_version] = '1.84.0'
4634
4665
  Seahorse::Client::Request.new(handlers, context)
4635
4666
  end
4636
4667