aws-sdk-transfer 1.135.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: b84a276e92b929a04c4de66867533fafe2fdf93ce5ef043034e386b17efefa6d
4
- data.tar.gz: 37a69295abf1ae1a12f38ac6c4aba076496428668bb937df3852de2b538405f8
3
+ metadata.gz: de27c5510da386501b75dc7e77a82bfdac65d65807bd3a606d2288a147dab07c
4
+ data.tar.gz: b028975f879357955c06ac614022fb2db9506c0468a6c771d83d7c24a3071ef0
5
5
  SHA512:
6
- metadata.gz: 2ceb5c19741754689d138651f129853c9dce1b427cd082990e9c8b62a5e2c80369c656755033604d5a62632e17c01305a159a2c942f33a1e1284aaaa87e5eb48
7
- data.tar.gz: 348d8a1315fa532cb02dcd96257629cf8593e3018cb514d5746ebb3d807d771e2e742aba97bebfe89c9137fb2c27f7d5ad3701f2351a24bffcc5cd0f8ad2cf36
6
+ metadata.gz: 9bde85d212a1f91ca283743e0362051622abdbb17d91f8fe08c9b23d64722aaa9576a2a8719cce97b1dbb413a1de738cc805b5f4d2d917fee0184331b13f9e45
7
+ data.tar.gz: 2b9800926db00690c35b23e8a63159c0ead85ece5bab6d3ce398a040c9b184be8e63018592200e885b0aeb28326e354388cd072c16465fe9a46f9b88967ff5d1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.135.0 (2026-04-06)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.135.0
1
+ 1.136.0
@@ -1697,6 +1697,7 @@ module Aws::Transfer
1697
1697
  # subnet_ids: ["SubnetId"],
1698
1698
  # vpc_id: "VpcId",
1699
1699
  # security_group_ids: ["SecurityGroupId"],
1700
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
1700
1701
  # },
1701
1702
  # },
1702
1703
  # })
@@ -5693,6 +5694,7 @@ module Aws::Transfer
5693
5694
  # endpoint_details: {
5694
5695
  # vpc: {
5695
5696
  # subnet_ids: ["SubnetId"],
5697
+ # ip_address_type: "IPV4", # accepts IPV4, DUALSTACK
5696
5698
  # },
5697
5699
  # },
5698
5700
  # })
@@ -5769,7 +5771,7 @@ module Aws::Transfer
5769
5771
  tracer: tracer
5770
5772
  )
5771
5773
  context[:gem_name] = 'aws-sdk-transfer'
5772
- context[:gem_version] = '1.135.0'
5774
+ context[:gem_version] = '1.136.0'
5773
5775
  Seahorse::Client::Request.new(handlers, context)
5774
5776
  end
5775
5777
 
@@ -407,6 +407,7 @@ module Aws::Transfer
407
407
  WebAppUnitCount = Shapes::IntegerShape.new(name: 'WebAppUnitCount')
408
408
  WebAppUnits = Shapes::UnionShape.new(name: 'WebAppUnits')
409
409
  WebAppVpcConfig = Shapes::StructureShape.new(name: 'WebAppVpcConfig')
410
+ WebAppVpcEndpointIpAddressType = Shapes::StringShape.new(name: 'WebAppVpcEndpointIpAddressType')
410
411
  WorkflowDescription = Shapes::StringShape.new(name: 'WorkflowDescription')
411
412
  WorkflowDetail = Shapes::StructureShape.new(name: 'WorkflowDetail')
412
413
  WorkflowDetails = Shapes::StructureShape.new(name: 'WorkflowDetails')
@@ -1591,6 +1592,7 @@ module Aws::Transfer
1591
1592
  UpdateWebAppResponse.struct_class = Types::UpdateWebAppResponse
1592
1593
 
1593
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"))
1594
1596
  UpdateWebAppVpcConfig.struct_class = Types::UpdateWebAppVpcConfig
1595
1597
 
1596
1598
  UserDetails.add_member(:user_name, Shapes::ShapeRef.new(shape: UserName, required: true, location_name: "UserName"))
@@ -1619,6 +1621,7 @@ module Aws::Transfer
1619
1621
  WebAppVpcConfig.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, location_name: "SubnetIds"))
1620
1622
  WebAppVpcConfig.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "VpcId"))
1621
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"))
1622
1625
  WebAppVpcConfig.struct_class = Types::WebAppVpcConfig
1623
1626
 
1624
1627
  WorkflowDetail.add_member(:workflow_id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location_name: "WorkflowId"))
@@ -7973,10 +7973,17 @@ module Aws::Transfer
7973
7973
  # should be deployed during the update operation.
7974
7974
  # @return [Array<String>]
7975
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
+ #
7976
7982
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/UpdateWebAppVpcConfig AWS API Documentation
7977
7983
  #
7978
7984
  class UpdateWebAppVpcConfig < Struct.new(
7979
- :subnet_ids)
7985
+ :subnet_ids,
7986
+ :ip_address_type)
7980
7987
  SENSITIVE = []
7981
7988
  include Aws::Structure
7982
7989
  end
@@ -8102,12 +8109,19 @@ module Aws::Transfer
8102
8109
  # the endpoint based on IP addresses and port configurations.
8103
8110
  # @return [Array<String>]
8104
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
+ #
8105
8118
  # @see http://docs.aws.amazon.com/goto/WebAPI/transfer-2018-11-05/WebAppVpcConfig AWS API Documentation
8106
8119
  #
8107
8120
  class WebAppVpcConfig < Struct.new(
8108
8121
  :subnet_ids,
8109
8122
  :vpc_id,
8110
- :security_group_ids)
8123
+ :security_group_ids,
8124
+ :ip_address_type)
8111
8125
  SENSITIVE = []
8112
8126
  include Aws::Structure
8113
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.135.0'
58
+ GEM_VERSION = '1.136.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -329,7 +329,8 @@ module Aws
329
329
  vpc: {
330
330
  subnet_ids: Array[::String]?,
331
331
  vpc_id: ::String?,
332
- security_group_ids: Array[::String]?
332
+ security_group_ids: Array[::String]?,
333
+ ip_address_type: ("IPV4" | "DUALSTACK")?
333
334
  }?
334
335
  }
335
336
  ) -> _CreateWebAppResponseSuccess
@@ -1283,7 +1284,8 @@ module Aws
1283
1284
  },
1284
1285
  ?endpoint_details: {
1285
1286
  vpc: {
1286
- subnet_ids: Array[::String]?
1287
+ subnet_ids: Array[::String]?,
1288
+ ip_address_type: ("IPV4" | "DUALSTACK")?
1287
1289
  }?
1288
1290
  }
1289
1291
  ) -> _UpdateWebAppResponseSuccess
data/sig/types.rbs CHANGED
@@ -1540,6 +1540,7 @@ module Aws::Transfer
1540
1540
 
1541
1541
  class UpdateWebAppVpcConfig
1542
1542
  attr_accessor subnet_ids: ::Array[::String]
1543
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
1543
1544
  SENSITIVE: []
1544
1545
  end
1545
1546
 
@@ -1587,6 +1588,7 @@ module Aws::Transfer
1587
1588
  attr_accessor subnet_ids: ::Array[::String]
1588
1589
  attr_accessor vpc_id: ::String
1589
1590
  attr_accessor security_group_ids: ::Array[::String]
1591
+ attr_accessor ip_address_type: ("IPV4" | "DUALSTACK")
1590
1592
  SENSITIVE: []
1591
1593
  end
1592
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.135.0
4
+ version: 1.136.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services