aws-sdk-transfer 1.134.0 → 1.136.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: 4e181c4ab95b4e9713107de484748eb67242262dd61fd00ae93333e4d037e84e
4
- data.tar.gz: 13db032d577c6be6818c5fd5ce781ff809367bdf546ed7fda6d2b200d8ed94a9
3
+ metadata.gz: de27c5510da386501b75dc7e77a82bfdac65d65807bd3a606d2288a147dab07c
4
+ data.tar.gz: b028975f879357955c06ac614022fb2db9506c0468a6c771d83d7c24a3071ef0
5
5
  SHA512:
6
- metadata.gz: 0fe7af30cb56256f3fd49dc1087dcc83ed740c157582b37ada8691540473e9d6e783024b8765024940b48cf531d26ee8a7ca1eb56e20e5601088ecb86aba623c
7
- data.tar.gz: fb28b1740ca6959cc17be288d9e143e6a8fcf73f0cb137b5597d0a883ae8031b46d694effc598eb18a5dc2e7381c1f155b9472994be843476eb2c541f99f5482
6
+ metadata.gz: 9bde85d212a1f91ca283743e0362051622abdbb17d91f8fe08c9b23d64722aaa9576a2a8719cce97b1dbb413a1de738cc805b5f4d2d917fee0184331b13f9e45
7
+ data.tar.gz: 2b9800926db00690c35b23e8a63159c0ead85ece5bab6d3ce398a040c9b184be8e63018592200e885b0aeb28326e354388cd072c16465fe9a46f9b88967ff5d1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.136.0 (2026-04-24)
5
+ ------------------
6
+
7
+ * Feature - AWS Transfer Family now support configurable IP address types for Web Apps of type VPC, enabling customers to select IPv4-only or dual-stack (IPv4 and IPv6) configurations based on their network requirements.
8
+
9
+ 1.135.0 (2026-04-06)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.134.0 (2026-03-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.134.0
1
+ 1.136.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
@@ -1690,6 +1697,7 @@ module Aws::Transfer
1690
1697
  # subnet_ids: ["SubnetId"],
1691
1698
  # vpc_id: "VpcId",
1692
1699
  # security_group_ids: ["SecurityGroupId"],
1700
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
1693
1701
  # },
1694
1702
  # },
1695
1703
  # })
@@ -2444,6 +2452,7 @@ module Aws::Transfer
2444
2452
  # resp.connector.egress_type #=> String, one of "SERVICE_MANAGED", "VPC_LATTICE"
2445
2453
  # resp.connector.error_message #=> String
2446
2454
  # resp.connector.status #=> String, one of "ACTIVE", "ERRORED", "PENDING"
2455
+ # resp.connector.ip_address_type #=> String, one of "IPV4", "DUALSTACK"
2447
2456
  #
2448
2457
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/DescribeConnector AWS API Documentation
2449
2458
  #
@@ -4932,6 +4941,12 @@ module Aws::Transfer
4932
4941
  # modify how traffic is routed from the connector to the SFTP server.
4933
4942
  # Changes to VPC configuration may require connector restart.
4934
4943
  #
4944
+ # @option params [String] :ip_address_type
4945
+ # Specifies the IP address type for the connector's network
4946
+ # connections. When set to `IPV4`, the connector uses IPv4 addresses
4947
+ # only. When set to `DUALSTACK`, the connector supports both IPv4 and
4948
+ # IPv6 addresses, with IPv6 preferred when available.
4949
+ #
4935
4950
  # @return [Types::UpdateConnectorResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4936
4951
  #
4937
4952
  # * {Types::UpdateConnectorResponse#connector_id #connector_id} => String
@@ -4971,6 +4986,7 @@ module Aws::Transfer
4971
4986
  # port_number: 1,
4972
4987
  # },
4973
4988
  # },
4989
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
4974
4990
  # })
4975
4991
  #
4976
4992
  # @example Response structure
@@ -5678,6 +5694,7 @@ module Aws::Transfer
5678
5694
  # endpoint_details: {
5679
5695
  # vpc: {
5680
5696
  # subnet_ids: ["SubnetId"],
5697
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
5681
5698
  # },
5682
5699
  # },
5683
5700
  # })
@@ -5754,7 +5771,7 @@ module Aws::Transfer
5754
5771
  tracer: tracer
5755
5772
  )
5756
5773
  context[:gem_name] = 'aws-sdk-transfer'
5757
- context[:gem_version] = '1.134.0'
5774
+ context[:gem_version] = '1.136.0'
5758
5775
  Seahorse::Client::Request.new(handlers, context)
5759
5776
  end
5760
5777
 
@@ -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')
@@ -406,6 +407,7 @@ module Aws::Transfer
406
407
  WebAppUnitCount = Shapes::IntegerShape.new(name: 'WebAppUnitCount')
407
408
  WebAppUnits = Shapes::UnionShape.new(name: 'WebAppUnits')
408
409
  WebAppVpcConfig = Shapes::StructureShape.new(name: 'WebAppVpcConfig')
410
+ WebAppVpcEndpointIpAddressType = Shapes::StringShape.new(name: 'WebAppVpcEndpointIpAddressType')
409
411
  WorkflowDescription = Shapes::StringShape.new(name: 'WorkflowDescription')
410
412
  WorkflowDetail = Shapes::StructureShape.new(name: 'WorkflowDetail')
411
413
  WorkflowDetails = Shapes::StructureShape.new(name: 'WorkflowDetails')
@@ -508,6 +510,7 @@ module Aws::Transfer
508
510
  CreateConnectorRequest.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
509
511
  CreateConnectorRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
510
512
  CreateConnectorRequest.add_member(:egress_config, Shapes::ShapeRef.new(shape: ConnectorEgressConfig, location_name: "EgressConfig"))
513
+ CreateConnectorRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ConnectorsIpAddressType, location_name: "IpAddressType"))
511
514
  CreateConnectorRequest.struct_class = Types::CreateConnectorRequest
512
515
 
513
516
  CreateConnectorResponse.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
@@ -793,6 +796,7 @@ module Aws::Transfer
793
796
  DescribedConnector.add_member(:egress_type, Shapes::ShapeRef.new(shape: ConnectorEgressType, required: true, location_name: "EgressType"))
794
797
  DescribedConnector.add_member(:error_message, Shapes::ShapeRef.new(shape: ConnectorErrorMessage, location_name: "ErrorMessage"))
795
798
  DescribedConnector.add_member(:status, Shapes::ShapeRef.new(shape: ConnectorStatus, required: true, location_name: "Status"))
799
+ DescribedConnector.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ConnectorsIpAddressType, location_name: "IpAddressType"))
796
800
  DescribedConnector.struct_class = Types::DescribedConnector
797
801
 
798
802
  DescribedConnectorEgressConfig.add_member(:vpc_lattice, Shapes::ShapeRef.new(shape: DescribedConnectorVpcLatticeEgressConfig, location_name: "VpcLattice"))
@@ -1491,6 +1495,7 @@ module Aws::Transfer
1491
1495
  UpdateConnectorRequest.add_member(:sftp_config, Shapes::ShapeRef.new(shape: SftpConnectorConfig, location_name: "SftpConfig"))
1492
1496
  UpdateConnectorRequest.add_member(:security_policy_name, Shapes::ShapeRef.new(shape: ConnectorSecurityPolicyName, location_name: "SecurityPolicyName"))
1493
1497
  UpdateConnectorRequest.add_member(:egress_config, Shapes::ShapeRef.new(shape: UpdateConnectorEgressConfig, location_name: "EgressConfig"))
1498
+ UpdateConnectorRequest.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: ConnectorsIpAddressType, location_name: "IpAddressType"))
1494
1499
  UpdateConnectorRequest.struct_class = Types::UpdateConnectorRequest
1495
1500
 
1496
1501
  UpdateConnectorResponse.add_member(:connector_id, Shapes::ShapeRef.new(shape: ConnectorId, required: true, location_name: "ConnectorId"))
@@ -1587,6 +1592,7 @@ module Aws::Transfer
1587
1592
  UpdateWebAppResponse.struct_class = Types::UpdateWebAppResponse
1588
1593
 
1589
1594
  UpdateWebAppVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
1595
+ UpdateWebAppVpcConfig.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WebAppVpcEndpointIpAddressType, location_name: "IpAddressType"))
1590
1596
  UpdateWebAppVpcConfig.struct_class = Types::UpdateWebAppVpcConfig
1591
1597
 
1592
1598
  UserDetails.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
@@ -1615,6 +1621,7 @@ module Aws::Transfer
1615
1621
  WebAppVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
1616
1622
  WebAppVpcConfig.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
1617
1623
  WebAppVpcConfig.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "SecurityGroupIds"))
1624
+ WebAppVpcConfig.add_member(:ip_address_type, Shapes::ShapeRef.new(shape: WebAppVpcEndpointIpAddressType, location_name: "IpAddressType"))
1618
1625
  WebAppVpcConfig.struct_class = Types::WebAppVpcConfig
1619
1626
 
1620
1627
  WorkflowDetail.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
@@ -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
@@ -7949,10 +7973,17 @@ module Aws::Transfer
7949
7973
  # should be deployed during the update operation.
7950
7974
  # @return [Array<String>]
7951
7975
  #
7976
+ # @!attribute [rw] ip_address_type
7977
+ # The IP address type for the web app's VPC endpoint. This determines
7978
+ # whether the endpoint is accessible over IPv4 only, or over both IPv4
7979
+ # and IPv6.
7980
+ # @return [String]
7981
+ #
7952
7982
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppVpcConfig AWS API Documentation
7953
7983
  #
7954
7984
  class UpdateWebAppVpcConfig < Struct.new(
7955
- :subnet_ids)
7985
+ :subnet_ids,
7986
+ :ip_address_type)
7956
7987
  SENSITIVE = []
7957
7988
  include Aws::Structure
7958
7989
  end
@@ -8078,12 +8109,19 @@ module Aws::Transfer
8078
8109
  # the endpoint based on IP addresses and port configurations.
8079
8110
  # @return [Array<String>]
8080
8111
  #
8112
+ # @!attribute [rw] ip_address_type
8113
+ # The IP address type for the web app's VPC endpoint. This determines
8114
+ # whether the endpoint is accessible over IPv4 only, or over both IPv4
8115
+ # and IPv6.
8116
+ # @return [String]
8117
+ #
8081
8118
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/WebAppVpcConfig AWS API Documentation
8082
8119
  #
8083
8120
  class WebAppVpcConfig < Struct.new(
8084
8121
  :subnet_ids,
8085
8122
  :vpc_id,
8086
- :security_group_ids)
8123
+ :security_group_ids,
8124
+ :ip_address_type)
8087
8125
  SENSITIVE = []
8088
8126
  include Aws::Structure
8089
8127
  end
@@ -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.134.0'
58
+ GEM_VERSION = '1.136.0'
59
59
 
60
60
  end
61
61
 
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
 
@@ -328,7 +329,8 @@ module Aws
328
329
  vpc: {
329
330
  subnet_ids: Array[::String]?,
330
331
  vpc_id: ::String?,
331
- security_group_ids: Array[::String]?
332
+ security_group_ids: Array[::String]?,
333
+ ip_address_type: ("IPV4" | "DUALSTACK")?
332
334
  }?
333
335
  }
334
336
  ) -> _CreateWebAppResponseSuccess
@@ -1149,7 +1151,8 @@ module Aws
1149
1151
  resource_configuration_arn: ::String?,
1150
1152
  port_number: ::Integer?
1151
1153
  }?
1152
- }
1154
+ },
1155
+ ?ip_address_type: ("IPV4" | "DUALSTACK")
1153
1156
  ) -> _UpdateConnectorResponseSuccess
1154
1157
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectorResponseSuccess
1155
1158
 
@@ -1281,7 +1284,8 @@ module Aws
1281
1284
  },
1282
1285
  ?endpoint_details: {
1283
1286
  vpc: {
1284
- subnet_ids: Array[::String]?
1287
+ subnet_ids: Array[::String]?,
1288
+ ip_address_type: ("IPV4" | "DUALSTACK")?
1285
1289
  }?
1286
1290
  }
1287
1291
  ) -> _UpdateWebAppResponseSuccess
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
 
@@ -1537,6 +1540,7 @@ module Aws::Transfer
1537
1540
 
1538
1541
  class UpdateWebAppVpcConfig
1539
1542
  attr_accessor subnet_ids: ::Array[::String]
1543
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
1540
1544
  SENSITIVE: []
1541
1545
  end
1542
1546
 
@@ -1584,6 +1588,7 @@ module Aws::Transfer
1584
1588
  attr_accessor subnet_ids: ::Array[::String]
1585
1589
  attr_accessor vpc_id: ::String
1586
1590
  attr_accessor security_group_ids: ::Array[::String]
1591
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
1587
1592
  SENSITIVE: []
1588
1593
  end
1589
1594
 
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.134.0
4
+ version: 1.136.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services