aws-sdk-ec2 1.538.0 → 1.539.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: bc54bb4559548f3dceeb3df438eb872141c6e3fa90c1806402c411fdf6e1ec15
4
- data.tar.gz: 0edabe0e8f35adbf0e1ce5b0a760c2a1841b3bc3a99a988afe1b95f3a827339c
3
+ metadata.gz: 5fcb1f3b3f426fc544f45bb7b049601e9f51e9c1cbeaa9a94d780427efbbdcde
4
+ data.tar.gz: 55047d02e2d575bdde6d2f132f4420d9352a0e7bfbf12dcfea1c94b1b5d733d7
5
5
  SHA512:
6
- metadata.gz: ba2eafc710dd83abbf70914a95ed40b0a7053308c911e5af5412240250f8848c407b193469339d2d41cf59f5fc0393f1e353283b81734ddbd4980b44a5703221
7
- data.tar.gz: e945d4623ef0a07ac54dd16c448ba1cdd505d1b03fc81bcca67709806046ede16b0db599efc98c6d101f72d371cae6af71aad700989a5b21cb027d5bb4704d6c
6
+ metadata.gz: be3bf610e719f8959dc1038e4ee021f9bb179760bdf73573de9b541533694ad166bcfc31dc4ef138c0326720099cfe4c734c42e70c32773d2c57918c3845dad7
7
+ data.tar.gz: b9ee2c6c44e4385401873fcf6ebc6063a14dc063da734a150c8ba18a25deaa5589483462a01e5879dc15f0ffb6093dc0a89590ed074afee9efb832626841524c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.539.0 (2025-07-17)
5
+ ------------------
6
+
7
+ * Feature - AWS Free Tier Version2 Support
8
+
4
9
  1.538.0 (2025-07-15)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.538.0
1
+ 1.539.0
@@ -26795,6 +26795,10 @@ module Aws::EC2
26795
26795
  # * `ena-support` - A Boolean that indicates whether enhanced networking
26796
26796
  # with ENA is enabled.
26797
26797
  #
26798
+ # * `free-tier-eligible` - A Boolean that indicates whether this image
26799
+ # can be used under the Amazon Web Services Free Tier (`true` \|
26800
+ # `false`).
26801
+ #
26798
26802
  # * `hypervisor` - The hypervisor type (`ovm` \| `xen`).
26799
26803
  #
26800
26804
  # * `image-allowed` - A Boolean that indicates whether the image meets
@@ -26988,6 +26992,7 @@ module Aws::EC2
26988
26992
  # resp.images[0].image_allowed #=> Boolean
26989
26993
  # resp.images[0].source_image_id #=> String
26990
26994
  # resp.images[0].source_image_region #=> String
26995
+ # resp.images[0].free_tier_eligible #=> Boolean
26991
26996
  # resp.images[0].image_id #=> String
26992
26997
  # resp.images[0].image_location #=> String
26993
26998
  # resp.images[0].state #=> String, one of "pending", "available", "invalid", "deregistered", "transient", "failed", "error", "disabled"
@@ -66393,7 +66398,7 @@ module Aws::EC2
66393
66398
  tracer: tracer
66394
66399
  )
66395
66400
  context[:gem_name] = 'aws-sdk-ec2'
66396
- context[:gem_version] = '1.538.0'
66401
+ context[:gem_version] = '1.539.0'
66397
66402
  Seahorse::Client::Request.new(handlers, context)
66398
66403
  end
66399
66404
 
@@ -10887,6 +10887,7 @@ module Aws::EC2
10887
10887
  Image.add_member(:image_allowed, Shapes::ShapeRef.new(shape: Boolean, location_name: "imageAllowed"))
10888
10888
  Image.add_member(:source_image_id, Shapes::ShapeRef.new(shape: String, location_name: "sourceImageId"))
10889
10889
  Image.add_member(:source_image_region, Shapes::ShapeRef.new(shape: String, location_name: "sourceImageRegion"))
10890
+ Image.add_member(:free_tier_eligible, Shapes::ShapeRef.new(shape: Boolean, location_name: "freeTierEligible"))
10890
10891
  Image.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "imageId"))
10891
10892
  Image.add_member(:image_location, Shapes::ShapeRef.new(shape: String, location_name: "imageLocation"))
10892
10893
  Image.add_member(:state, Shapes::ShapeRef.new(shape: ImageState, location_name: "imageState"))
@@ -274,6 +274,18 @@ module Aws::EC2
274
274
  data[:source_image_region]
275
275
  end
276
276
 
277
+ # Indicates whether the image is eligible for Amazon Web Services Free
278
+ # Tier.
279
+ #
280
+ # * If `true`, the AMI is eligible for Free Tier and can be used to
281
+ # launch instances under the Free Tier limits.
282
+ #
283
+ # * If `false`, the AMI is not eligible for Free Tier.
284
+ # @return [Boolean]
285
+ def free_tier_eligible
286
+ data[:free_tier_eligible]
287
+ end
288
+
277
289
  # The location of the AMI.
278
290
  # @return [String]
279
291
  def image_location
@@ -2385,6 +2385,10 @@ module Aws::EC2
2385
2385
  # * `ena-support` - A Boolean that indicates whether enhanced networking
2386
2386
  # with ENA is enabled.
2387
2387
  #
2388
+ # * `free-tier-eligible` - A Boolean that indicates whether this image
2389
+ # can be used under the Amazon Web Services Free Tier (`true` \|
2390
+ # `false`).
2391
+ #
2388
2392
  # * `hypervisor` - The hypervisor type (`ovm` \| `xen`).
2389
2393
  #
2390
2394
  # * `image-allowed` - A Boolean that indicates whether the image meets
@@ -22540,6 +22540,10 @@ module Aws::EC2
22540
22540
  # * `ena-support` - A Boolean that indicates whether enhanced
22541
22541
  # networking with ENA is enabled.
22542
22542
  #
22543
+ # * `free-tier-eligible` - A Boolean that indicates whether this image
22544
+ # can be used under the Amazon Web Services Free Tier (`true` \|
22545
+ # `false`).
22546
+ #
22543
22547
  # * `hypervisor` - The hypervisor type (`ovm` \| `xen`).
22544
22548
  #
22545
22549
  # * `image-allowed` - A Boolean that indicates whether the image meets
@@ -42993,6 +42997,16 @@ module Aws::EC2
42993
42997
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/identify-source-ami-used-to-create-new-ami.html
42994
42998
  # @return [String]
42995
42999
  #
43000
+ # @!attribute [rw] free_tier_eligible
43001
+ # Indicates whether the image is eligible for Amazon Web Services Free
43002
+ # Tier.
43003
+ #
43004
+ # * If `true`, the AMI is eligible for Free Tier and can be used to
43005
+ # launch instances under the Free Tier limits.
43006
+ #
43007
+ # * If `false`, the AMI is not eligible for Free Tier.
43008
+ # @return [Boolean]
43009
+ #
42996
43010
  # @!attribute [rw] image_id
42997
43011
  # The ID of the AMI.
42998
43012
  # @return [String]
@@ -43074,6 +43088,7 @@ module Aws::EC2
43074
43088
  :image_allowed,
43075
43089
  :source_image_id,
43076
43090
  :source_image_region,
43091
+ :free_tier_eligible,
43077
43092
  :image_id,
43078
43093
  :image_location,
43079
43094
  :state,
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.538.0'
81
+ GEM_VERSION = '1.539.0'
82
82
 
83
83
  end
84
84
 
data/sig/image.rbs CHANGED
@@ -90,6 +90,9 @@ module Aws
90
90
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#source_image_region-instance_method
91
91
  def source_image_region: () -> ::String
92
92
 
93
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#free_tier_eligible-instance_method
94
+ def free_tier_eligible: () -> bool
95
+
93
96
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Image.html#image_location-instance_method
94
97
  def image_location: () -> ::String
95
98
 
data/sig/types.rbs CHANGED
@@ -9530,6 +9530,7 @@ module Aws::EC2
9530
9530
  attr_accessor image_allowed: bool
9531
9531
  attr_accessor source_image_id: ::String
9532
9532
  attr_accessor source_image_region: ::String
9533
+ attr_accessor free_tier_eligible: bool
9533
9534
  attr_accessor image_id: ::String
9534
9535
  attr_accessor image_location: ::String
9535
9536
  attr_accessor state: ("pending" | "available" | "invalid" | "deregistered" | "transient" | "failed" | "error" | "disabled")
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.538.0
4
+ version: 1.539.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services