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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshiftdataapiservice/client.rb +4 -4
- data/lib/aws-sdk-redshiftdataapiservice/client_api.rb +1 -1
- data/lib/aws-sdk-redshiftdataapiservice.rb +1 -1
- data/sig/client.rbs +2 -2
- 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: 534f300987adf447ec7960c602b97214dd43a5448365ba93d508379afa48f23b
|
|
4
|
+
data.tar.gz: c5c4820f82987dae19ff81756ac9ccbcba5834722ef0d0c6bd77fb066f29ef19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a3d7957ad0de17c654d5db4a5a183917dfecca82d4d62a355bf4a47961bffa04589b48e6ec0db495ae339afde95ec6872c26dfed28c003bb36ea1a0600e46255
|
|
7
|
+
data.tar.gz: 4aed9de76d6b446a49734fd97b5e2611592f6975fb549c14e7a720d145b73284bb54a6ec3256bd033ccc2ef9c501697bae6eeabe2d7928b29a74edca9b25bb0c
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
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 [
|
|
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",
|
|
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
|
-
#
|
|
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.
|
|
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,
|
|
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"))
|
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]
|