aws-sdk-redshiftdataapiservice 1.80.0 → 1.81.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: 02e4180eefbe78c121bac16f91f357449ceea621d6248cdb943ed3de3edad473
4
- data.tar.gz: 5957679f489a045e7ab4bb3e831c0a71bff70b6bb21a436c5c61ab6ab2032aff
3
+ metadata.gz: 534f300987adf447ec7960c602b97214dd43a5448365ba93d508379afa48f23b
4
+ data.tar.gz: c5c4820f82987dae19ff81756ac9ccbcba5834722ef0d0c6bd77fb066f29ef19
5
5
  SHA512:
6
- metadata.gz: b866b496f4da78b3210f0fa5ba165ae6f077c7fd13f5a32731874a7c140785bae8e8a1c283b3370dd8fe7eded3e3149f59d15ab0ae3ea3cd159c503216a9e2f7
7
- data.tar.gz: e97faa4d26385d0409f1d203aa91eb69f0886eb8ff39d9586876ab4bb1df73d5da5d3a6ac37927daada5618e2aacb90a71035cc679f790c83c01d3a1131d8e0b
6
+ metadata.gz: a3d7957ad0de17c654d5db4a5a183917dfecca82d4d62a355bf4a47961bffa04589b48e6ec0db495ae339afde95ec6872c26dfed28c003bb36ea1a0600e46255
7
+ data.tar.gz: 4aed9de76d6b446a49734fd97b5e2611592f6975fb549c14e7a720d145b73284bb54a6ec3256bd033ccc2ef9c501697bae6eeabe2d7928b29a74edca9b25bb0c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.81.0 (2026-09-24)
5
+ ------------------
6
+
7
+ * Feature - Updates to the ListDatabases and WorkgroupName validation
8
+
4
9
  1.80.0 (2026-09-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.80.0
1
+ 1.81.0
@@ -1344,7 +1344,7 @@ module Aws::RedshiftDataAPIService
1344
1344
  # a cluster and authenticating using either Secrets Manager or temporary
1345
1345
  # credentials.
1346
1346
  #
1347
- # @option params [required, String] :database
1347
+ # @option params [String] :database
1348
1348
  # The name of the database. This parameter is required when
1349
1349
  # authenticating using either Secrets Manager or temporary credentials.
1350
1350
  #
@@ -1386,7 +1386,7 @@ module Aws::RedshiftDataAPIService
1386
1386
  #
1387
1387
  # resp = client.list_databases({
1388
1388
  # cluster_identifier: "ClusterIdentifierString",
1389
- # database: "String", # required
1389
+ # database: "String",
1390
1390
  # secret_arn: "SecretArn",
1391
1391
  # db_user: "String",
1392
1392
  # next_token: "String",
@@ -1544,7 +1544,7 @@ module Aws::RedshiftDataAPIService
1544
1544
  # Returns only the sessions that the caller created. When
1545
1545
  # identity-enhanced role sessions are used, you must provide either the
1546
1546
  # `ClusterIdentifier` or `WorkgroupName` parameter to ensure that the
1547
- # AWS IAM Identity Center user can only access the Amazon Redshift IAM
1547
+ # IAM Identity Center user can only access the Amazon Redshift IAM
1548
1548
  # Identity Center applications they are assigned. For more information,
1549
1549
  # see [ Trusted identity propagation overview][1].
1550
1550
  #
@@ -1935,7 +1935,7 @@ module Aws::RedshiftDataAPIService
1935
1935
  tracer: tracer
1936
1936
  )
1937
1937
  context[:gem_name] = 'aws-sdk-redshiftdataapiservice'
1938
- context[:gem_version] = '1.80.0'
1938
+ context[:gem_version] = '1.81.0'
1939
1939
  Seahorse::Client::Request.new(handlers, context)
1940
1940
  end
1941
1941
 
@@ -302,7 +302,7 @@ module Aws::RedshiftDataAPIService
302
302
  InternalServerException.struct_class = Types::InternalServerException
303
303
 
304
304
  ListDatabasesRequest.add_member(:cluster_identifier, Shapes::ShapeRef.new(shape: ClusterIdentifierString, location_name: "ClusterIdentifier"))
305
- ListDatabasesRequest.add_member(:database, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Database"))
305
+ ListDatabasesRequest.add_member(:database, Shapes::ShapeRef.new(shape: String, location_name: "Database"))
306
306
  ListDatabasesRequest.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretArn, location_name: "SecretArn"))
307
307
  ListDatabasesRequest.add_member(:db_user, Shapes::ShapeRef.new(shape: String, location_name: "DbUser"))
308
308
  ListDatabasesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
@@ -54,7 +54,7 @@ module Aws::RedshiftDataAPIService
54
54
  autoload :EndpointProvider, 'aws-sdk-redshiftdataapiservice/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-redshiftdataapiservice/endpoints'
56
56
 
57
- GEM_VERSION = '1.80.0'
57
+ GEM_VERSION = '1.81.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -259,14 +259,14 @@ module Aws
259
259
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RedshiftDataAPIService/Client.html#list_databases-instance_method
260
260
  def list_databases: (
261
261
  ?cluster_identifier: ::String,
262
- database: ::String,
262
+ ?database: ::String,
263
263
  ?secret_arn: ::String,
264
264
  ?db_user: ::String,
265
265
  ?next_token: ::String,
266
266
  ?max_results: ::Integer,
267
267
  ?workgroup_name: ::String
268
268
  ) -> _ListDatabasesResponseSuccess
269
- | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatabasesResponseSuccess
269
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDatabasesResponseSuccess
270
270
 
271
271
  interface _ListSchemasResponseSuccess
272
272
  include ::Seahorse::Client::_ResponseSuccess[Types::ListSchemasResponse]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-redshiftdataapiservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.80.0
4
+ version: 1.81.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services