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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-sesv2/client.rb +3 -3
- data/lib/aws-sdk-sesv2/types.rb +14 -3
- data/lib/aws-sdk-sesv2.rb +1 -1
- data/sig/types.rbs +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 526322454d2196a5c426dce99852f3d4ba3d2ab61b14450d9fc38e87ff1ff19b
|
4
|
+
data.tar.gz: 3f65cde1db4e26c0ef3dd71b8ca6c64b7d63f1acf325bc83f053a7e85a71c1d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
1
|
+
1.79.0
|
data/lib/aws-sdk-sesv2/client.rb
CHANGED
@@ -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.
|
5531
|
+
context[:gem_version] = '1.79.0'
|
5532
5532
|
Seahorse::Client::Request.new(handlers, context)
|
5533
5533
|
end
|
5534
5534
|
|
data/lib/aws-sdk-sesv2/types.rb
CHANGED
@@ -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
|
1487
|
-
#
|
1488
|
-
#
|
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
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: []
|