aws-sdk-transfer 1.119.0 → 1.120.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: 3638942aab6df0c3981789d879778420e700f59748867424b35078bfa42d37b6
4
- data.tar.gz: a11c7e1a6795d68190665aae13986593d1fbaaaa11787f24c2724e0980571f5b
3
+ metadata.gz: a0c53478ba9079edfa394d9456f54948745dd8fd090037715f408a2b76cacdbf
4
+ data.tar.gz: 469b0bd3322b84e6f0b100d54fe2ba0436e32fe4ddeb09cd18f37a50597c3d99
5
5
  SHA512:
6
- metadata.gz: 518129de73bdf592ff5b3d93f27f95e6a8cb203ff63197202cce7f2920e66b634c0bdef625886fbd52f4c0e8bbf0f55b453a64d5efbbc6360aac406b491f13a3
7
- data.tar.gz: e03677b0738242f73ab24ce63897ef97a9369f10a18d7fcc05f26e06af9ad248ea7ee48b9365ba90d676c1824e7cbed16b3aed1b65dfba4a1babd3c46dde00d2
6
+ metadata.gz: 5fe7766f92391ac07dbb60b98758ecad62ee3371b3a02cf23482fa4c0cec4d73d63b87f65bd722fd3045cfd2b31964b98a7f2a777b99157ca196bf5bddc22ceb
7
+ data.tar.gz: 672fd25fe042c72b0e189d1ebe96d40e90b7282795b9bed60cdd432bc93a1ca140f8883b2d4f1e9eac96d75a5a848324170ca9f009431d18a9ad4381470bd4b1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.120.0 (2025-06-30)
5
+ ------------------
6
+
7
+ * Feature - Added support for dual-stack (IPv4 and IPv6) endpoints for SFTP public endpoints and VPC-internal endpoints (SFTP, FTPS, FTP, and AS2), enabling customers to configure new servers with IPv4 or dual-stack mode, convert existing servers to dual-stack, and use IPv6 with service APIs.
8
+
4
9
  1.119.0 (2025-06-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.119.0
1
+ 1.120.0
@@ -490,8 +490,8 @@ module Aws::Transfer
490
490
  #
491
491
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
492
492
  #
493
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
494
- # set to `PATH`.
493
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
494
+ # it is set to either `PATH` or `LOGICAL`.
495
495
  #
496
496
  # </note>
497
497
  #
@@ -1278,6 +1278,28 @@ module Aws::Transfer
1278
1278
  # `HomeDirectoryMapEntry` `Type` to `FILE` if you want a mapping to have
1279
1279
  # a file target.
1280
1280
  #
1281
+ # @option params [String] :ip_address_type
1282
+ # Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
1283
+ # IPv6) for your Transfer Family endpoint. The default value is `IPV4`.
1284
+ #
1285
+ # The `IpAddressType` parameter has the following limitations:
1286
+ #
1287
+ # * It cannot be changed while the server is online. You must stop the
1288
+ # server before modifying this parameter.
1289
+ #
1290
+ # * It cannot be updated to `DUALSTACK` if the server has
1291
+ # `AddressAllocationIds` specified.
1292
+ #
1293
+ # <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
1294
+ # `AddressAllocationIds` parameter for the [EndpointDetails][1] for the
1295
+ # server.
1296
+ #
1297
+ # </note>
1298
+ #
1299
+ #
1300
+ #
1301
+ # [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
1302
+ #
1281
1303
  # @return [Types::CreateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1282
1304
  #
1283
1305
  # * {Types::CreateServerResponse#server_id #server_id} => String
@@ -1339,6 +1361,7 @@ module Aws::Transfer
1339
1361
  # s3_storage_options: {
1340
1362
  # directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
1341
1363
  # },
1364
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
1342
1365
  # })
1343
1366
  #
1344
1367
  # @example Response structure
@@ -1369,8 +1392,8 @@ module Aws::Transfer
1369
1392
  #
1370
1393
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
1371
1394
  #
1372
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
1373
- # set to `PATH`.
1395
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
1396
+ # it is set to either `PATH` or `LOGICAL`.
1374
1397
  #
1375
1398
  # </note>
1376
1399
  #
@@ -2622,6 +2645,7 @@ module Aws::Transfer
2622
2645
  # resp.server.s3_storage_options.directory_listing_optimization #=> String, one of "ENABLED", "DISABLED"
2623
2646
  # resp.server.as_2_service_managed_egress_ip_addresses #=> Array
2624
2647
  # resp.server.as_2_service_managed_egress_ip_addresses[0] #=> String
2648
+ # resp.server.ip_address_type #=> String, one of "IPV4", "DUALSTACK"
2625
2649
  #
2626
2650
  #
2627
2651
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4347,8 +4371,8 @@ module Aws::Transfer
4347
4371
  #
4348
4372
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
4349
4373
  #
4350
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
4351
- # set to `PATH`.
4374
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
4375
+ # it is set to either `PATH` or `LOGICAL`.
4352
4376
  #
4353
4377
  # </note>
4354
4378
  #
@@ -5143,6 +5167,28 @@ module Aws::Transfer
5143
5167
  # `HomeDirectoryMapEntry` `Type` to `FILE` if you want a mapping to have
5144
5168
  # a file target.
5145
5169
  #
5170
+ # @option params [String] :ip_address_type
5171
+ # Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
5172
+ # IPv6) for your Transfer Family endpoint. The default value is `IPV4`.
5173
+ #
5174
+ # The `IpAddressType` parameter has the following limitations:
5175
+ #
5176
+ # * It cannot be changed while the server is online. You must stop the
5177
+ # server before modifying this parameter.
5178
+ #
5179
+ # * It cannot be updated to `DUALSTACK` if the server has
5180
+ # `AddressAllocationIds` specified.
5181
+ #
5182
+ # <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
5183
+ # `AddressAllocationIds` parameter for the [EndpointDetails][1] for the
5184
+ # server.
5185
+ #
5186
+ # </note>
5187
+ #
5188
+ #
5189
+ #
5190
+ # [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
5191
+ #
5146
5192
  # @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5147
5193
  #
5148
5194
  # * {Types::UpdateServerResponse#server_id #server_id} => String
@@ -5197,6 +5243,7 @@ module Aws::Transfer
5197
5243
  # s3_storage_options: {
5198
5244
  # directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
5199
5245
  # },
5246
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
5200
5247
  # })
5201
5248
  #
5202
5249
  # @example Response structure
@@ -5240,8 +5287,8 @@ module Aws::Transfer
5240
5287
  #
5241
5288
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
5242
5289
  #
5243
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
5244
- # set to `PATH`.
5290
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
5291
+ # it is set to either `PATH` or `LOGICAL`.
5245
5292
  #
5246
5293
  # </note>
5247
5294
  #
@@ -5496,7 +5543,7 @@ module Aws::Transfer
5496
5543
  tracer: tracer
5497
5544
  )
5498
5545
  context[:gem_name] = 'aws-sdk-transfer'
5499
- context[:gem_version] = '1.119.0'
5546
+ context[:gem_version] = '1.120.0'
5500
5547
  Seahorse::Client::Request.new(handlers, context)
5501
5548
  end
5502
5549
 
@@ -172,6 +172,7 @@ module Aws::Transfer
172
172
  InternalServiceError = Shapes::StructureShape.new(name: 'InternalServiceError')
173
173
  InvalidNextTokenException = Shapes::StructureShape.new(name: 'InvalidNextTokenException')
174
174
  InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
175
+ IpAddressType = Shapes::StringShape.new(name: 'IpAddressType')
175
176
  ListAccessesRequest = Shapes::StructureShape.new(name: 'ListAccessesRequest')
176
177
  ListAccessesResponse = Shapes::StructureShape.new(name: 'ListAccessesResponse')
177
178
  ListAgreementsRequest = Shapes::StructureShape.new(name: 'ListAgreementsRequest')
@@ -496,6 +497,7 @@ module Aws::Transfer
496
497
  CreateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
497
498
  CreateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
498
499
  CreateServerRequest.add_member(:s3_storage_options, Shapes::ShapeRef.new(shape: S3StorageOptions, location_name: "S3StorageOptions"))
500
+ CreateServerRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
499
501
  CreateServerRequest.struct_class = Types::CreateServerRequest
500
502
 
501
503
  CreateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
@@ -805,6 +807,7 @@ module Aws::Transfer
805
807
  DescribedServer.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
806
808
  DescribedServer.add_member(:s3_storage_options, Shapes::ShapeRef.new(shape: S3StorageOptions, location_name: "S3StorageOptions"))
807
809
  DescribedServer.add_member(:as_2_service_managed_egress_ip_addresses, Shapes::ShapeRef.new(shape: ServiceManagedEgressIpAddresses, location_name: "As2ServiceManagedEgressIpAddresses"))
810
+ DescribedServer.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
808
811
  DescribedServer.struct_class = Types::DescribedServer
809
812
 
810
813
  DescribedUser.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "Arn"))
@@ -1439,6 +1442,7 @@ module Aws::Transfer
1439
1442
  UpdateServerRequest.add_member(:workflow_details, Shapes::ShapeRef.new(shape: WorkflowDetails, location_name: "WorkflowDetails"))
1440
1443
  UpdateServerRequest.add_member(:structured_log_destinations, Shapes::ShapeRef.new(shape: StructuredLogDestinations, location_name: "StructuredLogDestinations"))
1441
1444
  UpdateServerRequest.add_member(:s3_storage_options, Shapes::ShapeRef.new(shape: S3StorageOptions, location_name: "S3StorageOptions"))
1445
+ UpdateServerRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: IpAddressType, location_name: "IpAddressType"))
1442
1446
  UpdateServerRequest.struct_class = Types::UpdateServerRequest
1443
1447
 
1444
1448
  UpdateServerResponse.add_member(:server_id, Shapes::ShapeRef.new(shape: ServerId, required: true, location_name: "ServerId"))
@@ -262,8 +262,8 @@ module Aws::Transfer
262
262
  #
263
263
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
264
264
  #
265
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
266
- # set to `PATH`.
265
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
266
+ # when it is set to either `PATH` or `LOGICAL`.
267
267
  #
268
268
  # </note>
269
269
  # @return [String]
@@ -1016,6 +1016,31 @@ module Aws::Transfer
1016
1016
  # have a file target.
1017
1017
  # @return [Types::S3StorageOptions]
1018
1018
  #
1019
+ # @!attribute [rw] ip_address_type
1020
+ # Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
1021
+ # IPv6) for your Transfer Family endpoint. The default value is
1022
+ # `IPV4`.
1023
+ #
1024
+ # The `IpAddressType` parameter has the following limitations:
1025
+ #
1026
+ # * It cannot be changed while the server is online. You must stop
1027
+ # the
1028
+ # server before modifying this parameter.
1029
+ #
1030
+ # * It cannot be updated to `DUALSTACK` if the server has
1031
+ # `AddressAllocationIds` specified.
1032
+ #
1033
+ # <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
1034
+ # `AddressAllocationIds` parameter for the [EndpointDetails][1] for
1035
+ # the server.
1036
+ #
1037
+ # </note>
1038
+ #
1039
+ #
1040
+ #
1041
+ # [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
1042
+ # @return [String]
1043
+ #
1019
1044
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateServerRequest AWS API Documentation
1020
1045
  #
1021
1046
  class CreateServerRequest < Struct.new(
@@ -1035,7 +1060,8 @@ module Aws::Transfer
1035
1060
  :tags,
1036
1061
  :workflow_details,
1037
1062
  :structured_log_destinations,
1038
- :s3_storage_options)
1063
+ :s3_storage_options,
1064
+ :ip_address_type)
1039
1065
  SENSITIVE = [:host_key]
1040
1066
  include Aws::Structure
1041
1067
  end
@@ -1058,8 +1084,8 @@ module Aws::Transfer
1058
1084
  #
1059
1085
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
1060
1086
  #
1061
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
1062
- # set to `PATH`.
1087
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
1088
+ # when it is set to either `PATH` or `LOGICAL`.
1063
1089
  #
1064
1090
  # </note>
1065
1091
  # @return [String]
@@ -2125,8 +2151,8 @@ module Aws::Transfer
2125
2151
  #
2126
2152
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
2127
2153
  #
2128
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
2129
- # set to `PATH`.
2154
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
2155
+ # when it is set to either `PATH` or `LOGICAL`.
2130
2156
  #
2131
2157
  # </note>
2132
2158
  # @return [String]
@@ -3095,6 +3121,31 @@ module Aws::Transfer
3095
3121
  # AS2 protocol, static IP addresses are assigned as well.
3096
3122
  # @return [Array<String>]
3097
3123
  #
3124
+ # @!attribute [rw] ip_address_type
3125
+ # Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
3126
+ # IPv6) for your Transfer Family endpoint. The default value is
3127
+ # `IPV4`.
3128
+ #
3129
+ # The `IpAddressType` parameter has the following limitations:
3130
+ #
3131
+ # * It cannot be changed while the server is online. You must stop
3132
+ # the
3133
+ # server before modifying this parameter.
3134
+ #
3135
+ # * It cannot be updated to `DUALSTACK` if the server has
3136
+ # `AddressAllocationIds` specified.
3137
+ #
3138
+ # <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
3139
+ # `AddressAllocationIds` parameter for the [EndpointDetails][1] for
3140
+ # the server.
3141
+ #
3142
+ # </note>
3143
+ #
3144
+ #
3145
+ #
3146
+ # [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
3147
+ # @return [String]
3148
+ #
3098
3149
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedServer AWS API Documentation
3099
3150
  #
3100
3151
  class DescribedServer < Struct.new(
@@ -3119,7 +3170,8 @@ module Aws::Transfer
3119
3170
  :workflow_details,
3120
3171
  :structured_log_destinations,
3121
3172
  :s3_storage_options,
3122
- :as_2_service_managed_egress_ip_addresses)
3173
+ :as_2_service_managed_egress_ip_addresses,
3174
+ :ip_address_type)
3123
3175
  SENSITIVE = []
3124
3176
  include Aws::Structure
3125
3177
  end
@@ -3137,8 +3189,8 @@ module Aws::Transfer
3137
3189
  #
3138
3190
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
3139
3191
  #
3140
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
3141
- # set to `PATH`.
3192
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
3193
+ # when it is set to either `PATH` or `LOGICAL`.
3142
3194
  #
3143
3195
  # </note>
3144
3196
  # @return [String]
@@ -3490,6 +3542,10 @@ module Aws::Transfer
3490
3542
  #
3491
3543
  # * Call the `UpdateServer` API to set or change this parameter.
3492
3544
  #
3545
+ # * You can't set address allocation IDs for servers that have an
3546
+ # `IpAddressType` set to `DUALSTACK` You can only set this property
3547
+ # if `IpAddressType` is set to `IPV4`.
3548
+ #
3493
3549
  # </note>
3494
3550
  #
3495
3551
  #
@@ -4741,8 +4797,8 @@ module Aws::Transfer
4741
4797
  #
4742
4798
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
4743
4799
  #
4744
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
4745
- # set to `PATH`.
4800
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
4801
+ # when it is set to either `PATH` or `LOGICAL`.
4746
4802
  #
4747
4803
  # </note>
4748
4804
  # @return [String]
@@ -5171,8 +5227,8 @@ module Aws::Transfer
5171
5227
  #
5172
5228
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
5173
5229
  #
5174
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
5175
- # set to `PATH`.
5230
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
5231
+ # when it is set to either `PATH` or `LOGICAL`.
5176
5232
  #
5177
5233
  # </note>
5178
5234
  # @return [String]
@@ -6263,8 +6319,8 @@ module Aws::Transfer
6263
6319
  #
6264
6320
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
6265
6321
  #
6266
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
6267
- # set to `PATH`.
6322
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
6323
+ # when it is set to either `PATH` or `LOGICAL`.
6268
6324
  #
6269
6325
  # </note>
6270
6326
  # @return [String]
@@ -7047,6 +7103,31 @@ module Aws::Transfer
7047
7103
  # have a file target.
7048
7104
  # @return [Types::S3StorageOptions]
7049
7105
  #
7106
+ # @!attribute [rw] ip_address_type
7107
+ # Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
7108
+ # IPv6) for your Transfer Family endpoint. The default value is
7109
+ # `IPV4`.
7110
+ #
7111
+ # The `IpAddressType` parameter has the following limitations:
7112
+ #
7113
+ # * It cannot be changed while the server is online. You must stop
7114
+ # the
7115
+ # server before modifying this parameter.
7116
+ #
7117
+ # * It cannot be updated to `DUALSTACK` if the server has
7118
+ # `AddressAllocationIds` specified.
7119
+ #
7120
+ # <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
7121
+ # `AddressAllocationIds` parameter for the [EndpointDetails][1] for
7122
+ # the server.
7123
+ #
7124
+ # </note>
7125
+ #
7126
+ #
7127
+ #
7128
+ # [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
7129
+ # @return [String]
7130
+ #
7050
7131
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateServerRequest AWS API Documentation
7051
7132
  #
7052
7133
  class UpdateServerRequest < Struct.new(
@@ -7064,7 +7145,8 @@ module Aws::Transfer
7064
7145
  :server_id,
7065
7146
  :workflow_details,
7066
7147
  :structured_log_destinations,
7067
- :s3_storage_options)
7148
+ :s3_storage_options,
7149
+ :ip_address_type)
7068
7150
  SENSITIVE = [:host_key]
7069
7151
  include Aws::Structure
7070
7152
  end
@@ -7088,8 +7170,8 @@ module Aws::Transfer
7088
7170
  #
7089
7171
  # A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
7090
7172
  #
7091
- # <note markdown="1"> The `HomeDirectory` parameter is only used if `HomeDirectoryType` is
7092
- # set to `PATH`.
7173
+ # <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType`
7174
+ # when it is set to either `PATH` or `LOGICAL`.
7093
7175
  #
7094
7176
  # </note>
7095
7177
  # @return [String]
@@ -55,7 +55,7 @@ module Aws::Transfer
55
55
  autoload :EndpointProvider, 'aws-sdk-transfer/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-transfer/endpoints'
57
57
 
58
- GEM_VERSION = '1.119.0'
58
+ GEM_VERSION = '1.120.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -250,7 +250,8 @@ module Aws
250
250
  ?structured_log_destinations: Array[::String],
251
251
  ?s3_storage_options: {
252
252
  directory_listing_optimization: ("ENABLED" | "DISABLED")?
253
- }
253
+ },
254
+ ?ip_address_type: ("IPV4" | "DUALSTACK")
254
255
  ) -> _CreateServerResponseSuccess
255
256
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServerResponseSuccess
256
257
 
@@ -1194,7 +1195,8 @@ module Aws
1194
1195
  ?structured_log_destinations: Array[::String],
1195
1196
  ?s3_storage_options: {
1196
1197
  directory_listing_optimization: ("ENABLED" | "DISABLED")?
1197
- }
1198
+ },
1199
+ ?ip_address_type: ("IPV4" | "DUALSTACK")
1198
1200
  ) -> _UpdateServerResponseSuccess
1199
1201
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServerResponseSuccess
1200
1202
 
data/sig/types.rbs CHANGED
@@ -133,6 +133,7 @@ module Aws::Transfer
133
133
  attr_accessor workflow_details: Types::WorkflowDetails
134
134
  attr_accessor structured_log_destinations: ::Array[::String]
135
135
  attr_accessor s3_storage_options: Types::S3StorageOptions
136
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
136
137
  SENSITIVE: [:host_key]
137
138
  end
138
139
 
@@ -560,6 +561,7 @@ module Aws::Transfer
560
561
  attr_accessor structured_log_destinations: ::Array[::String]
561
562
  attr_accessor s3_storage_options: Types::S3StorageOptions
562
563
  attr_accessor as_2_service_managed_egress_ip_addresses: ::Array[::String]
564
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
563
565
  SENSITIVE: []
564
566
  end
565
567
 
@@ -1358,6 +1360,7 @@ module Aws::Transfer
1358
1360
  attr_accessor workflow_details: Types::WorkflowDetails
1359
1361
  attr_accessor structured_log_destinations: ::Array[::String]
1360
1362
  attr_accessor s3_storage_options: Types::S3StorageOptions
1363
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
1361
1364
  SENSITIVE: [:host_key]
1362
1365
  end
1363
1366
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-transfer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.119.0
4
+ version: 1.120.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services