aws-sdk-transfer 1.134.0 → 1.135.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 +16 -1
- data/lib/aws-sdk-transfer/client_api.rb +4 -0
- data/lib/aws-sdk-transfer/types.rb +27 -3
- data/lib/aws-sdk-transfer.rb +1 -1
- data/sig/client.rbs +4 -2
- data/sig/types.rbs +3 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b84a276e92b929a04c4de66867533fafe2fdf93ce5ef043034e386b17efefa6d
|
|
4
|
+
data.tar.gz: 37a69295abf1ae1a12f38ac6c4aba076496428668bb937df3852de2b538405f8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2ceb5c19741754689d138651f129853c9dce1b427cd082990e9c8b62a5e2c80369c656755033604d5a62632e17c01305a159a2c942f33a1e1284aaaa87e5eb48
|
|
7
|
+
data.tar.gz: 348d8a1315fa532cb02dcd96257629cf8593e3018cb514d5746ebb3d807d771e2e742aba97bebfe89c9137fb2c27f7d5ad3701f2351a24bffcc5cd0f8ad2cf36
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.135.0 (2026-04-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - AWS Transfer Family Connectors now support IPv6 connectivity, enabling outbound connections to remote SFTP or AS2 servers using IPv4-only or dual-stack (IPv4 and IPv6) configurations based on network requirements.
|
|
8
|
+
|
|
4
9
|
1.134.0 (2026-03-18)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.135.0
|
|
@@ -897,6 +897,12 @@ module Aws::Transfer
|
|
|
897
897
|
# to VPC, enables routing through customer VPCs using VPC\_LATTICE for
|
|
898
898
|
# private connectivity.
|
|
899
899
|
#
|
|
900
|
+
# @option params [String] :ip_address_type
|
|
901
|
+
# Specifies the IP address type for the connector's network
|
|
902
|
+
# connections. When set to `IPV4`, the connector uses IPv4 addresses
|
|
903
|
+
# only. When set to `DUALSTACK`, the connector supports both IPv4 and
|
|
904
|
+
# IPv6 addresses, with IPv6 preferred when available.
|
|
905
|
+
#
|
|
900
906
|
# @return [Types::CreateConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
901
907
|
#
|
|
902
908
|
# * {Types::CreateConnectorResponse#connector_id #connector_id} => String
|
|
@@ -941,6 +947,7 @@ module Aws::Transfer
|
|
|
941
947
|
# port_number: 1,
|
|
942
948
|
# },
|
|
943
949
|
# },
|
|
950
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
|
|
944
951
|
# })
|
|
945
952
|
#
|
|
946
953
|
# @example Response structure
|
|
@@ -2444,6 +2451,7 @@ module Aws::Transfer
|
|
|
2444
2451
|
# resp.connector.egress_type #=> String, one of "SERVICE_MANAGED", "VPC_LATTICE"
|
|
2445
2452
|
# resp.connector.error_message #=> String
|
|
2446
2453
|
# resp.connector.status #=> String, one of "ACTIVE", "ERRORED", "PENDING"
|
|
2454
|
+
# resp.connector.ip_address_type #=> String, one of "IPV4", "DUALSTACK"
|
|
2447
2455
|
#
|
|
2448
2456
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeConnector AWS API Documentation
|
|
2449
2457
|
#
|
|
@@ -4932,6 +4940,12 @@ module Aws::Transfer
|
|
|
4932
4940
|
# modify how traffic is routed from the connector to the SFTP server.
|
|
4933
4941
|
# Changes to VPC configuration may require connector restart.
|
|
4934
4942
|
#
|
|
4943
|
+
# @option params [String] :ip_address_type
|
|
4944
|
+
# Specifies the IP address type for the connector's network
|
|
4945
|
+
# connections. When set to `IPV4`, the connector uses IPv4 addresses
|
|
4946
|
+
# only. When set to `DUALSTACK`, the connector supports both IPv4 and
|
|
4947
|
+
# IPv6 addresses, with IPv6 preferred when available.
|
|
4948
|
+
#
|
|
4935
4949
|
# @return [Types::UpdateConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
4936
4950
|
#
|
|
4937
4951
|
# * {Types::UpdateConnectorResponse#connector_id #connector_id} => String
|
|
@@ -4971,6 +4985,7 @@ module Aws::Transfer
|
|
|
4971
4985
|
# port_number: 1,
|
|
4972
4986
|
# },
|
|
4973
4987
|
# },
|
|
4988
|
+
# ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
|
|
4974
4989
|
# })
|
|
4975
4990
|
#
|
|
4976
4991
|
# @example Response structure
|
|
@@ -5754,7 +5769,7 @@ module Aws::Transfer
|
|
|
5754
5769
|
tracer: tracer
|
|
5755
5770
|
)
|
|
5756
5771
|
context[:gem_name] = 'aws-sdk-transfer'
|
|
5757
|
-
context[:gem_version] = '1.
|
|
5772
|
+
context[:gem_version] = '1.135.0'
|
|
5758
5773
|
Seahorse::Client::Request.new(handlers, context)
|
|
5759
5774
|
end
|
|
5760
5775
|
|
|
@@ -49,6 +49,7 @@ module Aws::Transfer
|
|
|
49
49
|
ConnectorSecurityPolicyName = Shapes::StringShape.new(name: 'ConnectorSecurityPolicyName')
|
|
50
50
|
ConnectorStatus = Shapes::StringShape.new(name: 'ConnectorStatus')
|
|
51
51
|
ConnectorVpcLatticeEgressConfig = Shapes::StructureShape.new(name: 'ConnectorVpcLatticeEgressConfig')
|
|
52
|
+
ConnectorsIpAddressType = Shapes::StringShape.new(name: 'ConnectorsIpAddressType')
|
|
52
53
|
CopyStepDetails = Shapes::StructureShape.new(name: 'CopyStepDetails')
|
|
53
54
|
CreateAccessRequest = Shapes::StructureShape.new(name: 'CreateAccessRequest')
|
|
54
55
|
CreateAccessResponse = Shapes::StructureShape.new(name: 'CreateAccessResponse')
|
|
@@ -508,6 +509,7 @@ module Aws::Transfer
|
|
|
508
509
|
CreateConnectorRequest.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
|
|
509
510
|
CreateConnectorRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
|
|
510
511
|
CreateConnectorRequest.add_member(:egress_config, Shapes::ShapeRef.new(shape: ConnectorEgressConfig, location_name: "EgressConfig"))
|
|
512
|
+
CreateConnectorRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ConnectorsIpAddressType, location_name: "IpAddressType"))
|
|
511
513
|
CreateConnectorRequest.struct_class = Types::CreateConnectorRequest
|
|
512
514
|
|
|
513
515
|
CreateConnectorResponse.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
|
|
@@ -793,6 +795,7 @@ module Aws::Transfer
|
|
|
793
795
|
DescribedConnector.add_member(:egress_type, Shapes::ShapeRef.new(shape: ConnectorEgressType, required: true, location_name: "EgressType"))
|
|
794
796
|
DescribedConnector.add_member(:error_message, Shapes::ShapeRef.new(shape: ConnectorErrorMessage, location_name: "ErrorMessage"))
|
|
795
797
|
DescribedConnector.add_member(:status, Shapes::ShapeRef.new(shape: ConnectorStatus, required: true, location_name: "Status"))
|
|
798
|
+
DescribedConnector.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ConnectorsIpAddressType, location_name: "IpAddressType"))
|
|
796
799
|
DescribedConnector.struct_class = Types::DescribedConnector
|
|
797
800
|
|
|
798
801
|
DescribedConnectorEgressConfig.add_member(:vpc_lattice, Shapes::ShapeRef.new(shape: DescribedConnectorVpcLatticeEgressConfig, location_name: "VpcLattice"))
|
|
@@ -1491,6 +1494,7 @@ module Aws::Transfer
|
|
|
1491
1494
|
UpdateConnectorRequest.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
|
|
1492
1495
|
UpdateConnectorRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
|
|
1493
1496
|
UpdateConnectorRequest.add_member(:egress_config, Shapes::ShapeRef.new(shape: UpdateConnectorEgressConfig, location_name: "EgressConfig"))
|
|
1497
|
+
UpdateConnectorRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ConnectorsIpAddressType, location_name: "IpAddressType"))
|
|
1494
1498
|
UpdateConnectorRequest.struct_class = Types::UpdateConnectorRequest
|
|
1495
1499
|
|
|
1496
1500
|
UpdateConnectorResponse.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
|
|
@@ -730,6 +730,13 @@ module Aws::Transfer
|
|
|
730
730
|
# VPC\_LATTICE for private connectivity.
|
|
731
731
|
# @return [Types::ConnectorEgressConfig]
|
|
732
732
|
#
|
|
733
|
+
# @!attribute [rw] ip_address_type
|
|
734
|
+
# Specifies the IP address type for the connector's network
|
|
735
|
+
# connections. When set to `IPV4`, the connector uses IPv4 addresses
|
|
736
|
+
# only. When set to `DUALSTACK`, the connector supports both IPv4 and
|
|
737
|
+
# IPv6 addresses, with IPv6 preferred when available.
|
|
738
|
+
# @return [String]
|
|
739
|
+
#
|
|
733
740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/CreateConnectorRequest AWS API Documentation
|
|
734
741
|
#
|
|
735
742
|
class CreateConnectorRequest < Struct.new(
|
|
@@ -740,7 +747,8 @@ module Aws::Transfer
|
|
|
740
747
|
:tags,
|
|
741
748
|
:sftp_config,
|
|
742
749
|
:security_policy_name,
|
|
743
|
-
:egress_config
|
|
750
|
+
:egress_config,
|
|
751
|
+
:ip_address_type)
|
|
744
752
|
SENSITIVE = []
|
|
745
753
|
include Aws::Structure
|
|
746
754
|
end
|
|
@@ -2756,6 +2764,13 @@ module Aws::Transfer
|
|
|
2756
2764
|
# indicates a failure requiring attention.
|
|
2757
2765
|
# @return [String]
|
|
2758
2766
|
#
|
|
2767
|
+
# @!attribute [rw] ip_address_type
|
|
2768
|
+
# IP address type for the connector's network connections. When set
|
|
2769
|
+
# to `IPV4`, the connector uses IPv4 addresses only. When set to
|
|
2770
|
+
# `DUALSTACK`, the connector supports both IPv4 and IPv6 addresses,
|
|
2771
|
+
# with IPv6 preferred when available.
|
|
2772
|
+
# @return [String]
|
|
2773
|
+
#
|
|
2759
2774
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribedConnector AWS API Documentation
|
|
2760
2775
|
#
|
|
2761
2776
|
class DescribedConnector < Struct.new(
|
|
@@ -2772,7 +2787,8 @@ module Aws::Transfer
|
|
|
2772
2787
|
:egress_config,
|
|
2773
2788
|
:egress_type,
|
|
2774
2789
|
:error_message,
|
|
2775
|
-
:status
|
|
2790
|
+
:status,
|
|
2791
|
+
:ip_address_type)
|
|
2776
2792
|
SENSITIVE = []
|
|
2777
2793
|
include Aws::Structure
|
|
2778
2794
|
end
|
|
@@ -7138,6 +7154,13 @@ module Aws::Transfer
|
|
|
7138
7154
|
# Changes to VPC configuration may require connector restart.
|
|
7139
7155
|
# @return [Types::UpdateConnectorEgressConfig]
|
|
7140
7156
|
#
|
|
7157
|
+
# @!attribute [rw] ip_address_type
|
|
7158
|
+
# Specifies the IP address type for the connector's network
|
|
7159
|
+
# connections. When set to `IPV4`, the connector uses IPv4 addresses
|
|
7160
|
+
# only. When set to `DUALSTACK`, the connector supports both IPv4 and
|
|
7161
|
+
# IPv6 addresses, with IPv6 preferred when available.
|
|
7162
|
+
# @return [String]
|
|
7163
|
+
#
|
|
7141
7164
|
# @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateConnectorRequest AWS API Documentation
|
|
7142
7165
|
#
|
|
7143
7166
|
class UpdateConnectorRequest < Struct.new(
|
|
@@ -7148,7 +7171,8 @@ module Aws::Transfer
|
|
|
7148
7171
|
:logging_role,
|
|
7149
7172
|
:sftp_config,
|
|
7150
7173
|
:security_policy_name,
|
|
7151
|
-
:egress_config
|
|
7174
|
+
:egress_config,
|
|
7175
|
+
:ip_address_type)
|
|
7152
7176
|
SENSITIVE = []
|
|
7153
7177
|
include Aws::Structure
|
|
7154
7178
|
end
|
data/lib/aws-sdk-transfer.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -180,7 +180,8 @@ module Aws
|
|
|
180
180
|
resource_configuration_arn: ::String,
|
|
181
181
|
port_number: ::Integer?
|
|
182
182
|
}?
|
|
183
|
-
}
|
|
183
|
+
},
|
|
184
|
+
?ip_address_type: ("IPV4" | "DUALSTACK")
|
|
184
185
|
) -> _CreateConnectorResponseSuccess
|
|
185
186
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectorResponseSuccess
|
|
186
187
|
|
|
@@ -1149,7 +1150,8 @@ module Aws
|
|
|
1149
1150
|
resource_configuration_arn: ::String?,
|
|
1150
1151
|
port_number: ::Integer?
|
|
1151
1152
|
}?
|
|
1152
|
-
}
|
|
1153
|
+
},
|
|
1154
|
+
?ip_address_type: ("IPV4" | "DUALSTACK")
|
|
1153
1155
|
) -> _UpdateConnectorResponseSuccess
|
|
1154
1156
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectorResponseSuccess
|
|
1155
1157
|
|
data/sig/types.rbs
CHANGED
|
@@ -119,6 +119,7 @@ module Aws::Transfer
|
|
|
119
119
|
attr_accessor sftp_config: Types::SftpConnectorConfig
|
|
120
120
|
attr_accessor security_policy_name: ::String
|
|
121
121
|
attr_accessor egress_config: Types::ConnectorEgressConfig
|
|
122
|
+
attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
|
|
122
123
|
SENSITIVE: []
|
|
123
124
|
end
|
|
124
125
|
|
|
@@ -518,6 +519,7 @@ module Aws::Transfer
|
|
|
518
519
|
attr_accessor egress_type: ("SERVICE_MANAGED" | "VPC_LATTICE")
|
|
519
520
|
attr_accessor error_message: ::String
|
|
520
521
|
attr_accessor status: ("ACTIVE" | "ERRORED" | "PENDING")
|
|
522
|
+
attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
|
|
521
523
|
SENSITIVE: []
|
|
522
524
|
end
|
|
523
525
|
|
|
@@ -1399,6 +1401,7 @@ module Aws::Transfer
|
|
|
1399
1401
|
attr_accessor sftp_config: Types::SftpConnectorConfig
|
|
1400
1402
|
attr_accessor security_policy_name: ::String
|
|
1401
1403
|
attr_accessor egress_config: Types::UpdateConnectorEgressConfig
|
|
1404
|
+
attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
|
|
1402
1405
|
SENSITIVE: []
|
|
1403
1406
|
end
|
|
1404
1407
|
|