aws-sdk-redshiftdataapiservice 1.25.0 → 1.27.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshiftdataapiservice/client.rb +192 -79
- data/lib/aws-sdk-redshiftdataapiservice/types.rb +12 -6
- data/lib/aws-sdk-redshiftdataapiservice.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2511d81f16aea06121226a62ba408c3109b19b5da82bc24d398fd3903c01c5bd
|
4
|
+
data.tar.gz: b49d61473f55e558bf096d1312b7a002ec15fb591005642914a78bb18442477e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13a8fbc408a936391f8122abbf91728e47a01673337aa039c5f06576f5347e4ebcf8051ac742ad581b4ba1cbcac10e1468e3f84cf2f2989fd7185aa33caa8fb5
|
7
|
+
data.tar.gz: 3db7db5aeb6bff724712103f45b41a3a2bd4eb9af9070817faa49063e20ea4109e8a2a6c0a4e5ec5cc122d8e3ca7d6ec96ed98d44a6b0c432a32a5e38b331d87
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2023-05-31)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.26.0 (2023-04-07)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.
|
13
|
+
|
4
14
|
1.25.0 (2023-03-09)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
@@ -275,6 +275,11 @@ module Aws::RedshiftDataAPIService
|
|
275
275
|
# in the future.
|
276
276
|
#
|
277
277
|
#
|
278
|
+
# @option options [String] :sdk_ua_app_id
|
279
|
+
# A unique and opaque application ID that is appended to the
|
280
|
+
# User-Agent header as app/<sdk_ua_app_id>. It should have a
|
281
|
+
# maximum length of 50.
|
282
|
+
#
|
278
283
|
# @option options [String] :secret_access_key
|
279
284
|
#
|
280
285
|
# @option options [String] :session_token
|
@@ -383,18 +388,35 @@ module Aws::RedshiftDataAPIService
|
|
383
388
|
# authorization method, use one of the following combinations of request
|
384
389
|
# parameters:
|
385
390
|
#
|
386
|
-
# * Secrets Manager - when connecting to a cluster,
|
387
|
-
#
|
388
|
-
#
|
389
|
-
#
|
390
|
-
#
|
391
|
-
#
|
392
|
-
#
|
393
|
-
#
|
394
|
-
#
|
395
|
-
#
|
396
|
-
#
|
397
|
-
#
|
391
|
+
# * Secrets Manager - when connecting to a cluster, provide the
|
392
|
+
# `secret-arn` of a secret stored in Secrets Manager which has
|
393
|
+
# `username` and `password`. The specified secret contains credentials
|
394
|
+
# to connect to the `database` you specify. When you are connecting to
|
395
|
+
# a cluster, you also supply the database name, If you provide a
|
396
|
+
# cluster identifier (`dbClusterIdentifier`), it must match the
|
397
|
+
# cluster identifier stored in the secret. When you are connecting to
|
398
|
+
# a serverless workgroup, you also supply the database name.
|
399
|
+
#
|
400
|
+
# * Temporary credentials - when connecting to your data warehouse,
|
401
|
+
# choose one of the following options:
|
402
|
+
#
|
403
|
+
# * When connecting to a serverless workgroup, specify the workgroup
|
404
|
+
# name and database name. The database user name is derived from the
|
405
|
+
# IAM identity. For example, `arn:iam::123456789012:user:foo` has
|
406
|
+
# the database user name `IAM:foo`. Also, permission to call the
|
407
|
+
# `redshift-serverless:GetCredentials` operation is required.
|
408
|
+
#
|
409
|
+
# * When connecting to a cluster as an IAM identity, specify the
|
410
|
+
# cluster identifier and the database name. The database user name
|
411
|
+
# is derived from the IAM identity. For example,
|
412
|
+
# `arn:iam::123456789012:user:foo` has the database user name
|
413
|
+
# `IAM:foo`. Also, permission to call the
|
414
|
+
# `redshift:GetClusterCredentialsWithIAM` operation is required.
|
415
|
+
#
|
416
|
+
# * When connecting to a cluster as a database user, specify the
|
417
|
+
# cluster identifier, the database name, and the database user name.
|
418
|
+
# Also, permission to call the `redshift:GetClusterCredentials`
|
419
|
+
# operation is required.
|
398
420
|
#
|
399
421
|
# For more information about the Amazon Redshift Data API and CLI usage
|
400
422
|
# examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
|
@@ -422,7 +444,8 @@ module Aws::RedshiftDataAPIService
|
|
422
444
|
#
|
423
445
|
# @option params [String] :db_user
|
424
446
|
# The database user name. This parameter is required when connecting to
|
425
|
-
# a cluster and authenticating using temporary
|
447
|
+
# a cluster as a database user and authenticating using temporary
|
448
|
+
# credentials.
|
426
449
|
#
|
427
450
|
# @option params [String] :secret_arn
|
428
451
|
# The name or ARN of the secret that enables access to the database.
|
@@ -629,18 +652,35 @@ module Aws::RedshiftDataAPIService
|
|
629
652
|
# page through the column list. Depending on the authorization method,
|
630
653
|
# use one of the following combinations of request parameters:
|
631
654
|
#
|
632
|
-
# * Secrets Manager - when connecting to a cluster,
|
633
|
-
#
|
634
|
-
#
|
635
|
-
#
|
636
|
-
#
|
637
|
-
#
|
638
|
-
#
|
639
|
-
#
|
640
|
-
#
|
641
|
-
#
|
642
|
-
#
|
643
|
-
#
|
655
|
+
# * Secrets Manager - when connecting to a cluster, provide the
|
656
|
+
# `secret-arn` of a secret stored in Secrets Manager which has
|
657
|
+
# `username` and `password`. The specified secret contains credentials
|
658
|
+
# to connect to the `database` you specify. When you are connecting to
|
659
|
+
# a cluster, you also supply the database name, If you provide a
|
660
|
+
# cluster identifier (`dbClusterIdentifier`), it must match the
|
661
|
+
# cluster identifier stored in the secret. When you are connecting to
|
662
|
+
# a serverless workgroup, you also supply the database name.
|
663
|
+
#
|
664
|
+
# * Temporary credentials - when connecting to your data warehouse,
|
665
|
+
# choose one of the following options:
|
666
|
+
#
|
667
|
+
# * When connecting to a serverless workgroup, specify the workgroup
|
668
|
+
# name and database name. The database user name is derived from the
|
669
|
+
# IAM identity. For example, `arn:iam::123456789012:user:foo` has
|
670
|
+
# the database user name `IAM:foo`. Also, permission to call the
|
671
|
+
# `redshift-serverless:GetCredentials` operation is required.
|
672
|
+
#
|
673
|
+
# * When connecting to a cluster as an IAM identity, specify the
|
674
|
+
# cluster identifier and the database name. The database user name
|
675
|
+
# is derived from the IAM identity. For example,
|
676
|
+
# `arn:iam::123456789012:user:foo` has the database user name
|
677
|
+
# `IAM:foo`. Also, permission to call the
|
678
|
+
# `redshift:GetClusterCredentialsWithIAM` operation is required.
|
679
|
+
#
|
680
|
+
# * When connecting to a cluster as a database user, specify the
|
681
|
+
# cluster identifier, the database name, and the database user name.
|
682
|
+
# Also, permission to call the `redshift:GetClusterCredentials`
|
683
|
+
# operation is required.
|
644
684
|
#
|
645
685
|
# For more information about the Amazon Redshift Data API and CLI usage
|
646
686
|
# examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
|
@@ -666,7 +706,8 @@ module Aws::RedshiftDataAPIService
|
|
666
706
|
#
|
667
707
|
# @option params [String] :db_user
|
668
708
|
# The database user name. This parameter is required when connecting to
|
669
|
-
# a cluster and authenticating using temporary
|
709
|
+
# a cluster as a database user and authenticating using temporary
|
710
|
+
# credentials.
|
670
711
|
#
|
671
712
|
# @option params [Integer] :max_results
|
672
713
|
# The maximum number of tables to return in the response. If more tables
|
@@ -755,18 +796,35 @@ module Aws::RedshiftDataAPIService
|
|
755
796
|
# statement. Depending on the authorization method, use one of the
|
756
797
|
# following combinations of request parameters:
|
757
798
|
#
|
758
|
-
# * Secrets Manager - when connecting to a cluster,
|
759
|
-
#
|
760
|
-
#
|
761
|
-
#
|
762
|
-
#
|
763
|
-
#
|
764
|
-
#
|
765
|
-
#
|
766
|
-
#
|
767
|
-
#
|
768
|
-
#
|
769
|
-
#
|
799
|
+
# * Secrets Manager - when connecting to a cluster, provide the
|
800
|
+
# `secret-arn` of a secret stored in Secrets Manager which has
|
801
|
+
# `username` and `password`. The specified secret contains credentials
|
802
|
+
# to connect to the `database` you specify. When you are connecting to
|
803
|
+
# a cluster, you also supply the database name, If you provide a
|
804
|
+
# cluster identifier (`dbClusterIdentifier`), it must match the
|
805
|
+
# cluster identifier stored in the secret. When you are connecting to
|
806
|
+
# a serverless workgroup, you also supply the database name.
|
807
|
+
#
|
808
|
+
# * Temporary credentials - when connecting to your data warehouse,
|
809
|
+
# choose one of the following options:
|
810
|
+
#
|
811
|
+
# * When connecting to a serverless workgroup, specify the workgroup
|
812
|
+
# name and database name. The database user name is derived from the
|
813
|
+
# IAM identity. For example, `arn:iam::123456789012:user:foo` has
|
814
|
+
# the database user name `IAM:foo`. Also, permission to call the
|
815
|
+
# `redshift-serverless:GetCredentials` operation is required.
|
816
|
+
#
|
817
|
+
# * When connecting to a cluster as an IAM identity, specify the
|
818
|
+
# cluster identifier and the database name. The database user name
|
819
|
+
# is derived from the IAM identity. For example,
|
820
|
+
# `arn:iam::123456789012:user:foo` has the database user name
|
821
|
+
# `IAM:foo`. Also, permission to call the
|
822
|
+
# `redshift:GetClusterCredentialsWithIAM` operation is required.
|
823
|
+
#
|
824
|
+
# * When connecting to a cluster as a database user, specify the
|
825
|
+
# cluster identifier, the database name, and the database user name.
|
826
|
+
# Also, permission to call the `redshift:GetClusterCredentials`
|
827
|
+
# operation is required.
|
770
828
|
#
|
771
829
|
# For more information about the Amazon Redshift Data API and CLI usage
|
772
830
|
# examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
|
@@ -794,7 +852,8 @@ module Aws::RedshiftDataAPIService
|
|
794
852
|
#
|
795
853
|
# @option params [String] :db_user
|
796
854
|
# The database user name. This parameter is required when connecting to
|
797
|
-
# a cluster and authenticating using temporary
|
855
|
+
# a cluster as a database user and authenticating using temporary
|
856
|
+
# credentials.
|
798
857
|
#
|
799
858
|
# @option params [Array<Types::SqlParameter>] :parameters
|
800
859
|
# The parameters for the SQL statement.
|
@@ -952,18 +1011,35 @@ module Aws::RedshiftDataAPIService
|
|
952
1011
|
# the database list. Depending on the authorization method, use one of
|
953
1012
|
# the following combinations of request parameters:
|
954
1013
|
#
|
955
|
-
# * Secrets Manager - when connecting to a cluster,
|
956
|
-
#
|
957
|
-
#
|
958
|
-
#
|
959
|
-
#
|
960
|
-
#
|
961
|
-
#
|
962
|
-
#
|
963
|
-
#
|
964
|
-
#
|
965
|
-
#
|
966
|
-
#
|
1014
|
+
# * Secrets Manager - when connecting to a cluster, provide the
|
1015
|
+
# `secret-arn` of a secret stored in Secrets Manager which has
|
1016
|
+
# `username` and `password`. The specified secret contains credentials
|
1017
|
+
# to connect to the `database` you specify. When you are connecting to
|
1018
|
+
# a cluster, you also supply the database name, If you provide a
|
1019
|
+
# cluster identifier (`dbClusterIdentifier`), it must match the
|
1020
|
+
# cluster identifier stored in the secret. When you are connecting to
|
1021
|
+
# a serverless workgroup, you also supply the database name.
|
1022
|
+
#
|
1023
|
+
# * Temporary credentials - when connecting to your data warehouse,
|
1024
|
+
# choose one of the following options:
|
1025
|
+
#
|
1026
|
+
# * When connecting to a serverless workgroup, specify the workgroup
|
1027
|
+
# name and database name. The database user name is derived from the
|
1028
|
+
# IAM identity. For example, `arn:iam::123456789012:user:foo` has
|
1029
|
+
# the database user name `IAM:foo`. Also, permission to call the
|
1030
|
+
# `redshift-serverless:GetCredentials` operation is required.
|
1031
|
+
#
|
1032
|
+
# * When connecting to a cluster as an IAM identity, specify the
|
1033
|
+
# cluster identifier and the database name. The database user name
|
1034
|
+
# is derived from the IAM identity. For example,
|
1035
|
+
# `arn:iam::123456789012:user:foo` has the database user name
|
1036
|
+
# `IAM:foo`. Also, permission to call the
|
1037
|
+
# `redshift:GetClusterCredentialsWithIAM` operation is required.
|
1038
|
+
#
|
1039
|
+
# * When connecting to a cluster as a database user, specify the
|
1040
|
+
# cluster identifier, the database name, and the database user name.
|
1041
|
+
# Also, permission to call the `redshift:GetClusterCredentials`
|
1042
|
+
# operation is required.
|
967
1043
|
#
|
968
1044
|
# For more information about the Amazon Redshift Data API and CLI usage
|
969
1045
|
# examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
|
@@ -984,7 +1060,8 @@ module Aws::RedshiftDataAPIService
|
|
984
1060
|
#
|
985
1061
|
# @option params [String] :db_user
|
986
1062
|
# The database user name. This parameter is required when connecting to
|
987
|
-
# a cluster and authenticating using temporary
|
1063
|
+
# a cluster as a database user and authenticating using temporary
|
1064
|
+
# credentials.
|
988
1065
|
#
|
989
1066
|
# @option params [Integer] :max_results
|
990
1067
|
# The maximum number of databases to return in the response. If more
|
@@ -1046,18 +1123,35 @@ module Aws::RedshiftDataAPIService
|
|
1046
1123
|
# the schema list. Depending on the authorization method, use one of the
|
1047
1124
|
# following combinations of request parameters:
|
1048
1125
|
#
|
1049
|
-
# * Secrets Manager - when connecting to a cluster,
|
1050
|
-
#
|
1051
|
-
#
|
1052
|
-
#
|
1053
|
-
#
|
1054
|
-
#
|
1055
|
-
#
|
1056
|
-
#
|
1057
|
-
#
|
1058
|
-
#
|
1059
|
-
#
|
1060
|
-
#
|
1126
|
+
# * Secrets Manager - when connecting to a cluster, provide the
|
1127
|
+
# `secret-arn` of a secret stored in Secrets Manager which has
|
1128
|
+
# `username` and `password`. The specified secret contains credentials
|
1129
|
+
# to connect to the `database` you specify. When you are connecting to
|
1130
|
+
# a cluster, you also supply the database name, If you provide a
|
1131
|
+
# cluster identifier (`dbClusterIdentifier`), it must match the
|
1132
|
+
# cluster identifier stored in the secret. When you are connecting to
|
1133
|
+
# a serverless workgroup, you also supply the database name.
|
1134
|
+
#
|
1135
|
+
# * Temporary credentials - when connecting to your data warehouse,
|
1136
|
+
# choose one of the following options:
|
1137
|
+
#
|
1138
|
+
# * When connecting to a serverless workgroup, specify the workgroup
|
1139
|
+
# name and database name. The database user name is derived from the
|
1140
|
+
# IAM identity. For example, `arn:iam::123456789012:user:foo` has
|
1141
|
+
# the database user name `IAM:foo`. Also, permission to call the
|
1142
|
+
# `redshift-serverless:GetCredentials` operation is required.
|
1143
|
+
#
|
1144
|
+
# * When connecting to a cluster as an IAM identity, specify the
|
1145
|
+
# cluster identifier and the database name. The database user name
|
1146
|
+
# is derived from the IAM identity. For example,
|
1147
|
+
# `arn:iam::123456789012:user:foo` has the database user name
|
1148
|
+
# `IAM:foo`. Also, permission to call the
|
1149
|
+
# `redshift:GetClusterCredentialsWithIAM` operation is required.
|
1150
|
+
#
|
1151
|
+
# * When connecting to a cluster as a database user, specify the
|
1152
|
+
# cluster identifier, the database name, and the database user name.
|
1153
|
+
# Also, permission to call the `redshift:GetClusterCredentials`
|
1154
|
+
# operation is required.
|
1061
1155
|
#
|
1062
1156
|
# For more information about the Amazon Redshift Data API and CLI usage
|
1063
1157
|
# examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
|
@@ -1083,7 +1177,8 @@ module Aws::RedshiftDataAPIService
|
|
1083
1177
|
#
|
1084
1178
|
# @option params [String] :db_user
|
1085
1179
|
# The database user name. This parameter is required when connecting to
|
1086
|
-
# a cluster and authenticating using temporary
|
1180
|
+
# a cluster as a database user and authenticating using temporary
|
1181
|
+
# credentials.
|
1087
1182
|
#
|
1088
1183
|
# @option params [Integer] :max_results
|
1089
1184
|
# The maximum number of schemas to return in the response. If more
|
@@ -1257,18 +1352,35 @@ module Aws::RedshiftDataAPIService
|
|
1257
1352
|
# Depending on the authorization method, use one of the following
|
1258
1353
|
# combinations of request parameters:
|
1259
1354
|
#
|
1260
|
-
# * Secrets Manager - when connecting to a cluster,
|
1261
|
-
#
|
1262
|
-
#
|
1263
|
-
#
|
1264
|
-
#
|
1265
|
-
#
|
1266
|
-
#
|
1267
|
-
#
|
1268
|
-
#
|
1269
|
-
#
|
1270
|
-
#
|
1271
|
-
#
|
1355
|
+
# * Secrets Manager - when connecting to a cluster, provide the
|
1356
|
+
# `secret-arn` of a secret stored in Secrets Manager which has
|
1357
|
+
# `username` and `password`. The specified secret contains credentials
|
1358
|
+
# to connect to the `database` you specify. When you are connecting to
|
1359
|
+
# a cluster, you also supply the database name, If you provide a
|
1360
|
+
# cluster identifier (`dbClusterIdentifier`), it must match the
|
1361
|
+
# cluster identifier stored in the secret. When you are connecting to
|
1362
|
+
# a serverless workgroup, you also supply the database name.
|
1363
|
+
#
|
1364
|
+
# * Temporary credentials - when connecting to your data warehouse,
|
1365
|
+
# choose one of the following options:
|
1366
|
+
#
|
1367
|
+
# * When connecting to a serverless workgroup, specify the workgroup
|
1368
|
+
# name and database name. The database user name is derived from the
|
1369
|
+
# IAM identity. For example, `arn:iam::123456789012:user:foo` has
|
1370
|
+
# the database user name `IAM:foo`. Also, permission to call the
|
1371
|
+
# `redshift-serverless:GetCredentials` operation is required.
|
1372
|
+
#
|
1373
|
+
# * When connecting to a cluster as an IAM identity, specify the
|
1374
|
+
# cluster identifier and the database name. The database user name
|
1375
|
+
# is derived from the IAM identity. For example,
|
1376
|
+
# `arn:iam::123456789012:user:foo` has the database user name
|
1377
|
+
# `IAM:foo`. Also, permission to call the
|
1378
|
+
# `redshift:GetClusterCredentialsWithIAM` operation is required.
|
1379
|
+
#
|
1380
|
+
# * When connecting to a cluster as a database user, specify the
|
1381
|
+
# cluster identifier, the database name, and the database user name.
|
1382
|
+
# Also, permission to call the `redshift:GetClusterCredentials`
|
1383
|
+
# operation is required.
|
1272
1384
|
#
|
1273
1385
|
# For more information about the Amazon Redshift Data API and CLI usage
|
1274
1386
|
# examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
|
@@ -1294,7 +1406,8 @@ module Aws::RedshiftDataAPIService
|
|
1294
1406
|
#
|
1295
1407
|
# @option params [String] :db_user
|
1296
1408
|
# The database user name. This parameter is required when connecting to
|
1297
|
-
# a cluster and authenticating using temporary
|
1409
|
+
# a cluster as a database user and authenticating using temporary
|
1410
|
+
# credentials.
|
1298
1411
|
#
|
1299
1412
|
# @option params [Integer] :max_results
|
1300
1413
|
# The maximum number of tables to return in the response. If more tables
|
@@ -1388,7 +1501,7 @@ module Aws::RedshiftDataAPIService
|
|
1388
1501
|
params: params,
|
1389
1502
|
config: config)
|
1390
1503
|
context[:gem_name] = 'aws-sdk-redshiftdataapiservice'
|
1391
|
-
context[:gem_version] = '1.
|
1504
|
+
context[:gem_version] = '1.27.0'
|
1392
1505
|
Seahorse::Client::Request.new(handlers, context)
|
1393
1506
|
end
|
1394
1507
|
|
@@ -63,7 +63,8 @@ module Aws::RedshiftDataAPIService
|
|
63
63
|
#
|
64
64
|
# @!attribute [rw] db_user
|
65
65
|
# The database user name. This parameter is required when connecting
|
66
|
-
# to a cluster and authenticating using temporary
|
66
|
+
# to a cluster as a database user and authenticating using temporary
|
67
|
+
# credentials.
|
67
68
|
# @return [String]
|
68
69
|
#
|
69
70
|
# @!attribute [rw] secret_arn
|
@@ -446,7 +447,8 @@ module Aws::RedshiftDataAPIService
|
|
446
447
|
#
|
447
448
|
# @!attribute [rw] db_user
|
448
449
|
# The database user name. This parameter is required when connecting
|
449
|
-
# to a cluster and authenticating using temporary
|
450
|
+
# to a cluster as a database user and authenticating using temporary
|
451
|
+
# credentials.
|
450
452
|
# @return [String]
|
451
453
|
#
|
452
454
|
# @!attribute [rw] max_results
|
@@ -574,7 +576,8 @@ module Aws::RedshiftDataAPIService
|
|
574
576
|
#
|
575
577
|
# @!attribute [rw] db_user
|
576
578
|
# The database user name. This parameter is required when connecting
|
577
|
-
# to a cluster and authenticating using temporary
|
579
|
+
# to a cluster as a database user and authenticating using temporary
|
580
|
+
# credentials.
|
578
581
|
# @return [String]
|
579
582
|
#
|
580
583
|
# @!attribute [rw] parameters
|
@@ -812,7 +815,8 @@ module Aws::RedshiftDataAPIService
|
|
812
815
|
#
|
813
816
|
# @!attribute [rw] db_user
|
814
817
|
# The database user name. This parameter is required when connecting
|
815
|
-
# to a cluster and authenticating using temporary
|
818
|
+
# to a cluster as a database user and authenticating using temporary
|
819
|
+
# credentials.
|
816
820
|
# @return [String]
|
817
821
|
#
|
818
822
|
# @!attribute [rw] max_results
|
@@ -898,7 +902,8 @@ module Aws::RedshiftDataAPIService
|
|
898
902
|
#
|
899
903
|
# @!attribute [rw] db_user
|
900
904
|
# The database user name. This parameter is required when connecting
|
901
|
-
# to a cluster and authenticating using temporary
|
905
|
+
# to a cluster as a database user and authenticating using temporary
|
906
|
+
# credentials.
|
902
907
|
# @return [String]
|
903
908
|
#
|
904
909
|
# @!attribute [rw] max_results
|
@@ -1079,7 +1084,8 @@ module Aws::RedshiftDataAPIService
|
|
1079
1084
|
#
|
1080
1085
|
# @!attribute [rw] db_user
|
1081
1086
|
# The database user name. This parameter is required when connecting
|
1082
|
-
# to a cluster and authenticating using temporary
|
1087
|
+
# to a cluster as a database user and authenticating using temporary
|
1088
|
+
# credentials.
|
1083
1089
|
# @return [String]
|
1084
1090
|
#
|
1085
1091
|
# @!attribute [rw] max_results
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshiftdataapiservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-05-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.174.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.174.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|