aws-sdk-dsql 1.30.0 → 1.31.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-dsql/client.rb +18 -11
- data/lib/aws-sdk-dsql/types.rb +3 -0
- data/lib/aws-sdk-dsql.rb +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: 584f5dfaa37638cb0b28d243c5e8afd857e4c5b9609a44dd0ff8534f52001850
|
|
4
|
+
data.tar.gz: 396d54a69d212925d286ab554a90be681d0a8d370fa6a2e610302718fccbbba7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c578855d576dd45d634a4bab64d64bbdadda09c221a725f3de1790a1901abc121a7f69434816e17d1377bc7a0db80a1fcd0af918e0255dd85b80eb5c6a0f5473
|
|
7
|
+
data.tar.gz: 4e77855595f8a770c1cb195f1d43e4dfac32150ffdb595d15468a964dba0684421e605489b5713750a07c58c49acf312459804b56e54b58ae0d45312c1b8a103
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.31.0 (2026-08-04)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - UpdateCluster now checks the RemovePeerCluster permission on the specific cluster being removed, not a wildcard and docs now clarify how to set kmsEncryptionKey so the cluster uses the AWS-owned key.
|
|
8
|
+
|
|
4
9
|
1.30.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.0
|
data/lib/aws-sdk-dsql/client.rb
CHANGED
|
@@ -1393,11 +1393,16 @@ module Aws::DSQL
|
|
|
1393
1393
|
#
|
|
1394
1394
|
# dsql:RemovePeerCluster
|
|
1395
1395
|
#
|
|
1396
|
-
# : Permission to remove peer clusters.
|
|
1397
|
-
#
|
|
1398
|
-
#
|
|
1396
|
+
# : Permission to remove peer clusters. When you list peer clusters in
|
|
1397
|
+
# `multiRegionProperties.clusters`, you need this permission for each
|
|
1398
|
+
# current peer cluster that your list omits.
|
|
1399
1399
|
#
|
|
1400
|
-
# Resources:
|
|
1400
|
+
# Resources:
|
|
1401
|
+
#
|
|
1402
|
+
# * Each removed peer cluster: exact ARN of each removed peer cluster,
|
|
1403
|
+
# in its own Region
|
|
1404
|
+
#
|
|
1405
|
+
# ^
|
|
1401
1406
|
# ^
|
|
1402
1407
|
#
|
|
1403
1408
|
# dsql:PutWitnessRegion
|
|
@@ -1412,15 +1417,14 @@ module Aws::DSQL
|
|
|
1412
1417
|
# **This permission is checked both in the cluster Region and in the
|
|
1413
1418
|
# witness Region.**
|
|
1414
1419
|
#
|
|
1415
|
-
# * The witness
|
|
1420
|
+
# * The witness Region specified in
|
|
1416
1421
|
# `multiRegionProperties.witnessRegion` cannot be the same as the
|
|
1417
1422
|
# cluster's Region.
|
|
1418
1423
|
#
|
|
1419
|
-
# * When
|
|
1420
|
-
#
|
|
1421
|
-
#
|
|
1422
|
-
#
|
|
1423
|
-
# to simplify permission management during updates.
|
|
1424
|
+
# * When you list peer clusters in `multiRegionProperties.clusters`, you
|
|
1425
|
+
# need `dsql:AddPeerCluster` for every peer cluster in your request.
|
|
1426
|
+
# You need `dsql:RemovePeerCluster` only for the peer clusters that
|
|
1427
|
+
# the update removes.
|
|
1424
1428
|
#
|
|
1425
1429
|
# @option params [required, String] :identifier
|
|
1426
1430
|
# The ID of the cluster you want to update.
|
|
@@ -1433,6 +1437,9 @@ module Aws::DSQL
|
|
|
1433
1437
|
# can specify the ARN, ID, or alias of an existing key or have Amazon
|
|
1434
1438
|
# Web Services create a default key for you.
|
|
1435
1439
|
#
|
|
1440
|
+
# To switch to the key owned by Amazon Web Services, specify the
|
|
1441
|
+
# reserved value `AWS_OWNED_KMS_KEY`.
|
|
1442
|
+
#
|
|
1436
1443
|
# @option params [String] :client_token
|
|
1437
1444
|
# A unique, case-sensitive identifier that you provide to ensure the
|
|
1438
1445
|
# idempotency of the request. Idempotency ensures that an API request
|
|
@@ -1513,7 +1520,7 @@ module Aws::DSQL
|
|
|
1513
1520
|
tracer: tracer
|
|
1514
1521
|
)
|
|
1515
1522
|
context[:gem_name] = 'aws-sdk-dsql'
|
|
1516
|
-
context[:gem_version] = '1.
|
|
1523
|
+
context[:gem_version] = '1.31.0'
|
|
1517
1524
|
Seahorse::Client::Request.new(handlers, context)
|
|
1518
1525
|
end
|
|
1519
1526
|
|
data/lib/aws-sdk-dsql/types.rb
CHANGED
|
@@ -1101,6 +1101,9 @@ module Aws::DSQL
|
|
|
1101
1101
|
# The KMS key that encrypts and protects the data on your cluster. You
|
|
1102
1102
|
# can specify the ARN, ID, or alias of an existing key or have Amazon
|
|
1103
1103
|
# Web Services create a default key for you.
|
|
1104
|
+
#
|
|
1105
|
+
# To switch to the key owned by Amazon Web Services, specify the
|
|
1106
|
+
# reserved value `AWS_OWNED_KMS_KEY`.
|
|
1104
1107
|
# @return [String]
|
|
1105
1108
|
#
|
|
1106
1109
|
# @!attribute [rw] client_token
|
data/lib/aws-sdk-dsql.rb
CHANGED