aws-sdk-sesv2 1.78.0 → 1.79.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: 70153865dc9e9003a8a3a03b45e09995e0c1a317141740aa0a3d2592562596e8
4
- data.tar.gz: 1d4d6fee65288931fba7d775e371321fa70cd8537d06b3c61a9d7e08d12bffe2
3
+ metadata.gz: 526322454d2196a5c426dce99852f3d4ba3d2ab61b14450d9fc38e87ff1ff19b
4
+ data.tar.gz: 3f65cde1db4e26c0ef3dd71b8ca6c64b7d63f1acf325bc83f053a7e85a71c1d1
5
5
  SHA512:
6
- metadata.gz: 44ed6bac6a1e72b48925df254bfba4cba204603e457a1ad4e41b4d80dc816a3e4e7b541dfcff724e23b1fba474a6723b9799ff9efa4df20f2ab8b999146f34d4
7
- data.tar.gz: dcd8b9df8cf6d17c696aee8c44af0643e9fcb98f2ff4bbefc7537abe378e9122f4b399344e27063714f49c1da9876e343fa59bad102e8bbdb1a03a0e3ac8452d
6
+ metadata.gz: 1b63b55e58c4179c857a1cbb95e6fb7a2efc785d0a1560ff10d33ac176b02fd5c3eaa99c163b71ff1f73dcbffcce0a22c08a3cdf3a870e4478abdd58470637e9
7
+ data.tar.gz: b0f1bd7c05d3073c781c60d19eb5d6c619a13438912496496b2edd2a8c1a6994ef4c556bf79b28ccee638a4482eb249ded1d1cf667cf7b4696c5c9ac95955e34
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2025-07-18)
5
+ ------------------
6
+
7
+ * Feature - Added IP Visibility support for managed dedicated pools. Enhanced GetDedicatedIp and GetDedicatedIps APIs to return managed IP addresses.
8
+
4
9
  1.78.0 (2025-06-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -2152,7 +2152,7 @@ module Aws::SESV2
2152
2152
  # @example Response structure
2153
2153
  #
2154
2154
  # resp.dedicated_ip.ip #=> String
2155
- # resp.dedicated_ip.warmup_status #=> String, one of "IN_PROGRESS", "DONE"
2155
+ # resp.dedicated_ip.warmup_status #=> String, one of "IN_PROGRESS", "DONE", "NOT_APPLICABLE"
2156
2156
  # resp.dedicated_ip.warmup_percentage #=> Integer
2157
2157
  # resp.dedicated_ip.pool_name #=> String
2158
2158
  #
@@ -2230,7 +2230,7 @@ module Aws::SESV2
2230
2230
  #
2231
2231
  # resp.dedicated_ips #=> Array
2232
2232
  # resp.dedicated_ips[0].ip #=> String
2233
- # resp.dedicated_ips[0].warmup_status #=> String, one of "IN_PROGRESS", "DONE"
2233
+ # resp.dedicated_ips[0].warmup_status #=> String, one of "IN_PROGRESS", "DONE", "NOT_APPLICABLE"
2234
2234
  # resp.dedicated_ips[0].warmup_percentage #=> Integer
2235
2235
  # resp.dedicated_ips[0].pool_name #=> String
2236
2236
  # resp.next_token #=> String
@@ -5528,7 +5528,7 @@ module Aws::SESV2
5528
5528
  tracer: tracer
5529
5529
  )
5530
5530
  context[:gem_name] = 'aws-sdk-sesv2'
5531
- context[:gem_version] = '1.78.0'
5531
+ context[:gem_version] = '1.79.0'
5532
5532
  Seahorse::Client::Request.new(handlers, context)
5533
5533
  end
5534
5534
 
@@ -1480,12 +1480,23 @@ module Aws::SESV2
1480
1480
  #
1481
1481
  # * `DONE` – The dedicated IP warm-up process is complete, and the IP
1482
1482
  # address is ready to use.
1483
+ #
1484
+ # * `NOT_APPLICABLE` – The warm-up status doesn't apply to this IP
1485
+ # address. This status is used for IP addresses in managed dedicated
1486
+ # IP pools, where Amazon SES automatically handles the warm-up
1487
+ # process.
1483
1488
  # @return [String]
1484
1489
  #
1485
1490
  # @!attribute [rw] warmup_percentage
1486
- # Indicates how complete the dedicated IP warm-up process is. When
1487
- # this value equals 1, the address has completed the warm-up process
1488
- # and is ready for use.
1491
+ # Indicates the progress of your dedicated IP warm-up:
1492
+ #
1493
+ # * `0-100` For standard dedicated IP addresses, this shows the
1494
+ # warm-up completion percentage. A value of 100 means the IP address
1495
+ # is fully warmed up and ready for use.
1496
+ #
1497
+ # * `-1` – Appears for IP addresses in managed dedicated pools where
1498
+ # Amazon SES automatically handles the warm-up process, making the
1499
+ # percentage not applicable.
1489
1500
  # @return [Integer]
1490
1501
  #
1491
1502
  # @!attribute [rw] pool_name
data/lib/aws-sdk-sesv2.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::SESV2
54
54
  autoload :EndpointProvider, 'aws-sdk-sesv2/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-sesv2/endpoints'
56
56
 
57
- GEM_VERSION = '1.78.0'
57
+ GEM_VERSION = '1.79.0'
58
58
 
59
59
  end
60
60
 
data/sig/types.rbs CHANGED
@@ -346,7 +346,7 @@ module Aws::SESV2
346
346
 
347
347
  class DedicatedIp
348
348
  attr_accessor ip: ::String
349
- attr_accessor warmup_status: ("IN_PROGRESS" | "DONE")
349
+ attr_accessor warmup_status: ("IN_PROGRESS" | "DONE" | "NOT_APPLICABLE")
350
350
  attr_accessor warmup_percentage: ::Integer
351
351
  attr_accessor pool_name: ::String
352
352
  SENSITIVE: []
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-sesv2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.78.0
4
+ version: 1.79.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services