aws-sdk-ec2 1.379.0 → 1.381.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: 0251442a48b682afc77acc67c48aa52ebc607ce31ef092f896072ff1a37321c0
4
- data.tar.gz: 25910ca2d8c9f153e0b61c7054583006362166d985462693b140d8ae78d22db7
3
+ metadata.gz: 6b8227b6cdcd9aea3233c9150cb666d23500ef1c783539a559b30d148dee2e8c
4
+ data.tar.gz: cf00f59ae7fa9483bf1d919f0b9d937a34360416745232464023d57de8e1b798
5
5
  SHA512:
6
- metadata.gz: c7ed6d42636ef706bcbbe6e99e3a1623d90d6ddbf77f1eda352885a3007a0f26f385ae351d82541bc39deacc210f5fc9e1409b4d1f471b413a09d8ffb123f474
7
- data.tar.gz: 694564ac2c20ae36d74e5abdd6eb8c6c4c69646d7464f90020bba42a8c29b4549e6ef9251021c31d0a83428b06c6c707b9caacf28c48ea9cb0fbaee748230d4b
6
+ metadata.gz: 9dc2d62ef87d7b7c398cd37df18b75f05f2a6ac8a3fd6c3637134b06e12e782b8ae2a90816e76ffa5ae6098afd67a7d9331d64286371b748467ccb276b3253ca
7
+ data.tar.gz: 5ca22effff59e66adb27196ea9ec3ec77c6df755acbc4bd2b84eae5e0d1d256147df587ce35e0ed4ca93e85512bdb7f8fd2b5a93d19073599c1ac64608a1d088
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.381.0 (2023-05-31)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.380.0 (2023-05-18)
10
+ ------------------
11
+
12
+ * Feature - Add support for i4g.large, i4g.xlarge, i4g.2xlarge, i4g.4xlarge, i4g.8xlarge and i4g.16xlarge instances powered by AWS Graviton2 processors that deliver up to 15% better compute performance than our other storage-optimized instances.
13
+
4
14
  1.379.0 (2023-05-05)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.379.0
1
+ 1.381.0
@@ -134,7 +134,9 @@ module Aws::EC2
134
134
  #
135
135
  # @return [self]
136
136
  def load
137
- resp = @client.describe_addresses(public_ips: [@public_ip])
137
+ resp = Aws::Plugins::UserAgent.feature('resource') do
138
+ @client.describe_addresses(public_ips: [@public_ip])
139
+ end
138
140
  @data = resp.addresses[0]
139
141
  self
140
142
  end
@@ -249,7 +251,9 @@ module Aws::EC2
249
251
  :retry
250
252
  end
251
253
  end
252
- Aws::Waiters::Waiter.new(options).wait({})
254
+ Aws::Plugins::UserAgent.feature('resource') do
255
+ Aws::Waiters::Waiter.new(options).wait({})
256
+ end
253
257
  end
254
258
 
255
259
  # @!group Actions
@@ -299,7 +303,9 @@ module Aws::EC2
299
303
  # @return [Types::AssociateAddressResult]
300
304
  def associate(options = {})
301
305
  options = options.merge(public_ip: @public_ip)
302
- resp = @client.associate_address(options)
306
+ resp = Aws::Plugins::UserAgent.feature('resource') do
307
+ @client.associate_address(options)
308
+ end
303
309
  resp.data
304
310
  end
305
311
 
@@ -320,7 +326,9 @@ module Aws::EC2
320
326
  # @return [EmptyStructure]
321
327
  def disassociate(options = {})
322
328
  options = options.merge(public_ip: data[:public_ip])
323
- resp = @client.disassociate_address(options)
329
+ resp = Aws::Plugins::UserAgent.feature('resource') do
330
+ @client.disassociate_address(options)
331
+ end
324
332
  resp.data
325
333
  end
326
334
 
@@ -352,7 +360,9 @@ module Aws::EC2
352
360
  # @return [EmptyStructure]
353
361
  def release(options = {})
354
362
  options = options.merge(public_ip: data[:public_ip])
355
- resp = @client.release_address(options)
363
+ resp = Aws::Plugins::UserAgent.feature('resource') do
364
+ @client.release_address(options)
365
+ end
356
366
  resp.data
357
367
  end
358
368