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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 73da1e1b65550465fa543826fec314751e2c5e56ba8333a99f3dbd1d822737c3
4
- data.tar.gz: f66c78a14a54af5f27675a397c98b6225c6d9bc58a5d23daa00a5ddfee028c1d
3
+ metadata.gz: 584f5dfaa37638cb0b28d243c5e8afd857e4c5b9609a44dd0ff8534f52001850
4
+ data.tar.gz: 396d54a69d212925d286ab554a90be681d0a8d370fa6a2e610302718fccbbba7
5
5
  SHA512:
6
- metadata.gz: 0f65aaf8c215267706e21f8ec0630a93b80fecfa2f2ded2e9a8d7fa7d4a2108fab771fc89a3ec6ca4bbd1425a036730a33952fbf655f4c87ff02ce98fe4fb2bf
7
- data.tar.gz: faabe1707cf4ae2c36faa571e044fdc8a74898f8f94206f849d613ca1db9ec774233f7eb30bccf79952edb25605a4411a2258d5fd911d67b5bf132ca0baa218a
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.30.0
1
+ 1.31.0
@@ -1393,11 +1393,16 @@ module Aws::DSQL
1393
1393
  #
1394
1394
  # dsql:RemovePeerCluster
1395
1395
  #
1396
- # : Permission to remove peer clusters. The *dsql:RemovePeerCluster*
1397
- # permission uses a wildcard ARN pattern to simplify permission
1398
- # management during updates.
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: `arn:aws:dsql:*:account-id:cluster/*`
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 region specified in
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 updating clusters with peer relationships, permissions are
1420
- # checked for both adding and removing peers.
1421
- #
1422
- # * The `dsql:RemovePeerCluster` permission uses a wildcard ARN pattern
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.30.0'
1523
+ context[:gem_version] = '1.31.0'
1517
1524
  Seahorse::Client::Request.new(handlers, context)
1518
1525
  end
1519
1526
 
@@ -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
@@ -55,7 +55,7 @@ module Aws::DSQL
55
55
  autoload :EndpointProvider, 'aws-sdk-dsql/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-dsql/endpoints'
57
57
 
58
- GEM_VERSION = '1.30.0'
58
+ GEM_VERSION = '1.31.0'
59
59
 
60
60
  end
61
61
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dsql
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services