aws-sdk-transfer 1.119.0 → 1.121.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-transfer/client.rb +74 -17
- data/lib/aws-sdk-transfer/client_api.rb +4 -0
- data/lib/aws-sdk-transfer/types.rb +101 -19
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +3 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8322fe4885dacd3d30d7b8605d73a3c168080dc72ae4965cf3cb841845f0ff41
|
4
|
+
data.tar.gz: 1c0020beeb105207f8edb68d0f1963b5fce164eadc3ba02e13e0000535caea9f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2886d5888a8156096649f6569ecf7cd1f88f1a700a89cface0e60b13f1186100da51215cc4822d88cb0da88034dfd22e1bc02a510ed700849c34bff9bcddd3e
|
7
|
+
data.tar.gz: 46abbdc2fdf28453c1dd7bf562737ed5e29185f26af67542f270d309d06902a5e4c230ffffeec20ab78aa6c2105076996d664088f2119aa6a9a38562755b62d8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.121.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.120.0 (2025-06-30)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* 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.
|
13
|
+
|
4
14
|
1.119.0 (2025-06-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.121.0
|
@@ -95,7 +95,7 @@ module Aws::Transfer
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::Transfer
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::Transfer
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::Transfer
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::Transfer
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -490,8 +500,8 @@ module Aws::Transfer
|
|
490
500
|
#
|
491
501
|
# A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
|
492
502
|
#
|
493
|
-
# <note markdown="1">
|
494
|
-
# set to `PATH`.
|
503
|
+
# <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
|
504
|
+
# it is set to either `PATH` or `LOGICAL`.
|
495
505
|
#
|
496
506
|
# </note>
|
497
507
|
#
|
@@ -1278,6 +1288,28 @@ module Aws::Transfer
|
|
1278
1288
|
# `HomeDirectoryMapEntry` `Type` to `FILE` if you want a mapping to have
|
1279
1289
|
# a file target.
|
1280
1290
|
#
|
1291
|
+
# @option params [String] :ip_address_type
|
1292
|
+
# Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
|
1293
|
+
# IPv6) for your Transfer Family endpoint. The default value is `IPV4`.
|
1294
|
+
#
|
1295
|
+
# The `IpAddressType` parameter has the following limitations:
|
1296
|
+
#
|
1297
|
+
# * It cannot be changed while the server is online. You must stop the
|
1298
|
+
# server before modifying this parameter.
|
1299
|
+
#
|
1300
|
+
# * It cannot be updated to `DUALSTACK` if the server has
|
1301
|
+
# `AddressAllocationIds` specified.
|
1302
|
+
#
|
1303
|
+
# <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
|
1304
|
+
# `AddressAllocationIds` parameter for the [EndpointDetails][1] for the
|
1305
|
+
# server.
|
1306
|
+
#
|
1307
|
+
# </note>
|
1308
|
+
#
|
1309
|
+
#
|
1310
|
+
#
|
1311
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
|
1312
|
+
#
|
1281
1313
|
# @return [Types::CreateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1282
1314
|
#
|
1283
1315
|
# * {Types::CreateServerResponse#server_id #server_id} => String
|
@@ -1339,6 +1371,7 @@ module Aws::Transfer
|
|
1339
1371
|
# s3_storage_options: {
|
1340
1372
|
# directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
|
1341
1373
|
# },
|
1374
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
|
1342
1375
|
# })
|
1343
1376
|
#
|
1344
1377
|
# @example Response structure
|
@@ -1369,8 +1402,8 @@ module Aws::Transfer
|
|
1369
1402
|
#
|
1370
1403
|
# A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
|
1371
1404
|
#
|
1372
|
-
# <note markdown="1">
|
1373
|
-
# set to `PATH`.
|
1405
|
+
# <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
|
1406
|
+
# it is set to either `PATH` or `LOGICAL`.
|
1374
1407
|
#
|
1375
1408
|
# </note>
|
1376
1409
|
#
|
@@ -2622,6 +2655,7 @@ module Aws::Transfer
|
|
2622
2655
|
# resp.server.s3_storage_options.directory_listing_optimization #=> String, one of "ENABLED", "DISABLED"
|
2623
2656
|
# resp.server.as_2_service_managed_egress_ip_addresses #=> Array
|
2624
2657
|
# resp.server.as_2_service_managed_egress_ip_addresses[0] #=> String
|
2658
|
+
# resp.server.ip_address_type #=> String, one of "IPV4", "DUALSTACK"
|
2625
2659
|
#
|
2626
2660
|
#
|
2627
2661
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -4347,8 +4381,8 @@ module Aws::Transfer
|
|
4347
4381
|
#
|
4348
4382
|
# A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
|
4349
4383
|
#
|
4350
|
-
# <note markdown="1">
|
4351
|
-
# set to `PATH`.
|
4384
|
+
# <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
|
4385
|
+
# it is set to either `PATH` or `LOGICAL`.
|
4352
4386
|
#
|
4353
4387
|
# </note>
|
4354
4388
|
#
|
@@ -5143,6 +5177,28 @@ module Aws::Transfer
|
|
5143
5177
|
# `HomeDirectoryMapEntry` `Type` to `FILE` if you want a mapping to have
|
5144
5178
|
# a file target.
|
5145
5179
|
#
|
5180
|
+
# @option params [String] :ip_address_type
|
5181
|
+
# Specifies whether to use IPv4 only, or to use dual-stack (IPv4 and
|
5182
|
+
# IPv6) for your Transfer Family endpoint. The default value is `IPV4`.
|
5183
|
+
#
|
5184
|
+
# The `IpAddressType` parameter has the following limitations:
|
5185
|
+
#
|
5186
|
+
# * It cannot be changed while the server is online. You must stop the
|
5187
|
+
# server before modifying this parameter.
|
5188
|
+
#
|
5189
|
+
# * It cannot be updated to `DUALSTACK` if the server has
|
5190
|
+
# `AddressAllocationIds` specified.
|
5191
|
+
#
|
5192
|
+
# <note markdown="1"> When using `DUALSTACK` as the `IpAddressType`, you cannot set the
|
5193
|
+
# `AddressAllocationIds` parameter for the [EndpointDetails][1] for the
|
5194
|
+
# server.
|
5195
|
+
#
|
5196
|
+
# </note>
|
5197
|
+
#
|
5198
|
+
#
|
5199
|
+
#
|
5200
|
+
# [1]: https://docs.aws.amazon.com/transfer/latest/APIReference/API_EndpointDetails.html
|
5201
|
+
#
|
5146
5202
|
# @return [Types::UpdateServerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5147
5203
|
#
|
5148
5204
|
# * {Types::UpdateServerResponse#server_id #server_id} => String
|
@@ -5197,6 +5253,7 @@ module Aws::Transfer
|
|
5197
5253
|
# s3_storage_options: {
|
5198
5254
|
# directory_listing_optimization: "ENABLED", # accepts ENABLED, DISABLED
|
5199
5255
|
# },
|
5256
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
|
5200
5257
|
# })
|
5201
5258
|
#
|
5202
5259
|
# @example Response structure
|
@@ -5240,8 +5297,8 @@ module Aws::Transfer
|
|
5240
5297
|
#
|
5241
5298
|
# A `HomeDirectory` example is `/bucket_name/home/mydirectory`.
|
5242
5299
|
#
|
5243
|
-
# <note markdown="1">
|
5244
|
-
# set to `PATH`.
|
5300
|
+
# <note markdown="1"> You can use the `HomeDirectory` parameter for `HomeDirectoryType` when
|
5301
|
+
# it is set to either `PATH` or `LOGICAL`.
|
5245
5302
|
#
|
5246
5303
|
# </note>
|
5247
5304
|
#
|
@@ -5496,7 +5553,7 @@ module Aws::Transfer
|
|
5496
5553
|
tracer: tracer
|
5497
5554
|
)
|
5498
5555
|
context[:gem_name] = 'aws-sdk-transfer'
|
5499
|
-
context[:gem_version] = '1.
|
5556
|
+
context[:gem_version] = '1.121.0'
|
5500
5557
|
Seahorse::Client::Request.new(handlers, context)
|
5501
5558
|
end
|
5502
5559
|
|
@@ -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">
|
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">
|
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">
|
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">
|
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">
|
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">
|
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">
|
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">
|
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]
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -250,7 +251,8 @@ module Aws
|
|
250
251
|
?structured_log_destinations: Array[::String],
|
251
252
|
?s3_storage_options: {
|
252
253
|
directory_listing_optimization: ("ENABLED" | "DISABLED")?
|
253
|
-
}
|
254
|
+
},
|
255
|
+
?ip_address_type: ("IPV4" | "DUALSTACK")
|
254
256
|
) -> _CreateServerResponseSuccess
|
255
257
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateServerResponseSuccess
|
256
258
|
|
@@ -1194,7 +1196,8 @@ module Aws
|
|
1194
1196
|
?structured_log_destinations: Array[::String],
|
1195
1197
|
?s3_storage_options: {
|
1196
1198
|
directory_listing_optimization: ("ENABLED" | "DISABLED")?
|
1197
|
-
}
|
1199
|
+
},
|
1200
|
+
?ip_address_type: ("IPV4" | "DUALSTACK")
|
1198
1201
|
) -> _UpdateServerResponseSuccess
|
1199
1202
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateServerResponseSuccess
|
1200
1203
|
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
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.
|
4
|
+
version: 1.121.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|