aws-sdk-redshift 1.164.0 → 1.165.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-redshift/client.rb +5 -1
- data/lib/aws-sdk-redshift/types.rb +5 -0
- data/lib/aws-sdk-redshift.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: 2bbc58012e8d65dc431694e5c146704ff64afb5d16e6947ea45a9e617325b9f2
|
|
4
|
+
data.tar.gz: ed63e24304b83e6a86cd05eb00d804ee60d39e67a2f334d434a669881c0ea867
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0ccbc5f13d1dcebaae75250c18c3217ec41a0167400245c05be475c184e9b1593e5fd628e6ba5a6caae54e92684cf6c1fe42359d5aadbb5c157bc639690812ac
|
|
7
|
+
data.tar.gz: 0f294de1775457ef05195df174f71e04f8ad080ae5e5ec55e9c82db36d89a6f4d8f439ca9b4fe2ac1b822724f3807a364783037399fa61b4aa24534f59a73cfe
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.165.0 (2026-08-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Redshift now unlocks a locked admin user account and resets the failed-login counter when you update the admin password using the ModifyCluster API. This option is available only when account lockout security is enabled.
|
|
8
|
+
|
|
4
9
|
1.164.0 (2026-07-21)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.165.0
|
|
@@ -9299,6 +9299,10 @@ module Aws::Redshift
|
|
|
9299
9299
|
# You can't use `MasterUserPassword` if `ManageMasterPassword` is
|
|
9300
9300
|
# `true`.
|
|
9301
9301
|
#
|
|
9302
|
+
# If your admin user account is locked, this operation also unlocks your
|
|
9303
|
+
# account and resets the failed-login counter. This option is available
|
|
9304
|
+
# only when account lockout security is enabled for the cluster.
|
|
9305
|
+
#
|
|
9302
9306
|
# <note markdown="1"> Operations never return the password, so this operation provides a way
|
|
9303
9307
|
# to regain access to the admin user account for a cluster if the
|
|
9304
9308
|
# password is lost.
|
|
@@ -13470,7 +13474,7 @@ module Aws::Redshift
|
|
|
13470
13474
|
tracer: tracer
|
|
13471
13475
|
)
|
|
13472
13476
|
context[:gem_name] = 'aws-sdk-redshift'
|
|
13473
|
-
context[:gem_version] = '1.
|
|
13477
|
+
context[:gem_version] = '1.165.0'
|
|
13474
13478
|
Seahorse::Client::Request.new(handlers, context)
|
|
13475
13479
|
end
|
|
13476
13480
|
|
|
@@ -8544,6 +8544,11 @@ module Aws::Redshift
|
|
|
8544
8544
|
# You can't use `MasterUserPassword` if `ManageMasterPassword` is
|
|
8545
8545
|
# `true`.
|
|
8546
8546
|
#
|
|
8547
|
+
# If your admin user account is locked, this operation also unlocks
|
|
8548
|
+
# your account and resets the failed-login counter. This option is
|
|
8549
|
+
# available only when account lockout security is enabled for the
|
|
8550
|
+
# cluster.
|
|
8551
|
+
#
|
|
8547
8552
|
# <note markdown="1"> Operations never return the password, so this operation provides a
|
|
8548
8553
|
# way to regain access to the admin user account for a cluster if the
|
|
8549
8554
|
# password is lost.
|
data/lib/aws-sdk-redshift.rb
CHANGED