aws-sdk-redshiftdataapiservice 1.25.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 407a8551dba3493cc7c1c0b87ea941f9b753e113b3c7ca50b437a16722f00802
4
- data.tar.gz: 99cff936cfcbb2859fd0c0b94b673ae20e786241e7f023ef53688215cbc12c78
3
+ metadata.gz: 0ca8632f1a1d0e3bd3818ad9701960c2bff8a77f7a95214604e3962123d6954e
4
+ data.tar.gz: d804ad2bc64d21cfdc351db5a0c03029953d18faa9878bbb9ad15e0345217d6a
5
5
  SHA512:
6
- metadata.gz: 44474a4cb727c2e21067cd7d4680417ec6ac4f6468f1de536547c61aa8b23304f3c1d6ba46c363630468a524ee67bc7abd29709995df277d8558d0b0b407ab82
7
- data.tar.gz: 85986998c5a1dbaab77edf5a848d79e2cacee795e49d913cb6dfed1a32464b70bc80b741812bad4db1bb22a4c5698894607869b30e508061c9e93a6be691661e
6
+ metadata.gz: 36ec285ec86c7aafc399ef98ddc078f99c0bcb13bdae94ecb49282ec22a5a331c1ef23ec45276ce54b478c7d3cc362932add2bbed6b9fb2251b622a18230a800
7
+ data.tar.gz: df312a43821cd6bea4e7a2512ef48dc87de9edc976afc964005e40d71700003525f6e95fccc5b935de91a8e12e16aaba8ef9a99aa43128c31223df139edd114f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2023-04-07)
5
+ ------------------
6
+
7
+ * Feature - Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.
8
+
4
9
  1.25.0 (2023-03-09)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -383,18 +383,35 @@ module Aws::RedshiftDataAPIService
383
383
  # authorization method, use one of the following combinations of request
384
384
  # parameters:
385
385
  #
386
- # * Secrets Manager - when connecting to a cluster, specify the Amazon
387
- # Resource Name (ARN) of the secret, the database name, and the
388
- # cluster identifier that matches the cluster in the secret. When
389
- # connecting to a serverless workgroup, specify the Amazon Resource
390
- # Name (ARN) of the secret and the database name.
391
- #
392
- # * Temporary credentials - when connecting to a cluster, specify the
393
- # cluster identifier, the database name, and the database user name.
394
- # Also, permission to call the `redshift:GetClusterCredentials`
395
- # operation is required. When connecting to a serverless workgroup,
396
- # specify the workgroup name and database name. Also, permission to
397
- # call the `redshift-serverless:GetCredentials` operation is required.
386
+ # * Secrets Manager - when connecting to a cluster, provide the
387
+ # `secret-arn` of a secret stored in Secrets Manager which has
388
+ # `username` and `password`. The specified secret contains credentials
389
+ # to connect to the `database` you specify. When you are connecting to
390
+ # a cluster, you also supply the database name, If you provide a
391
+ # cluster identifier (`dbClusterIdentifier`), it must match the
392
+ # cluster identifier stored in the secret. When you are connecting to
393
+ # a serverless workgroup, you also supply the database name.
394
+ #
395
+ # * Temporary credentials - when connecting to your data warehouse,
396
+ # choose one of the following options:
397
+ #
398
+ # * When connecting to a serverless workgroup, specify the workgroup
399
+ # name and database name. The database user name is derived from the
400
+ # IAM identity. For example, `arn:iam::123456789012:user:foo` has
401
+ # the database user name `IAM:foo`. Also, permission to call the
402
+ # `redshift-serverless:GetCredentials` operation is required.
403
+ #
404
+ # * When connecting to a cluster as an IAM identity, specify the
405
+ # cluster identifier and the database name. The database user name
406
+ # is derived from the IAM identity. For example,
407
+ # `arn:iam::123456789012:user:foo` has the database user name
408
+ # `IAM:foo`. Also, permission to call the
409
+ # `redshift:GetClusterCredentialsWithIAM` operation is required.
410
+ #
411
+ # * When connecting to a cluster as a database user, specify the
412
+ # cluster identifier, the database name, and the database user name.
413
+ # Also, permission to call the `redshift:GetClusterCredentials`
414
+ # operation is required.
398
415
  #
399
416
  # For more information about the Amazon Redshift Data API and CLI usage
400
417
  # examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
@@ -422,7 +439,8 @@ module Aws::RedshiftDataAPIService
422
439
  #
423
440
  # @option params [String] :db_user
424
441
  # The database user name. This parameter is required when connecting to
425
- # a cluster and authenticating using temporary credentials.
442
+ # a cluster as a database user and authenticating using temporary
443
+ # credentials.
426
444
  #
427
445
  # @option params [String] :secret_arn
428
446
  # The name or ARN of the secret that enables access to the database.
@@ -629,18 +647,35 @@ module Aws::RedshiftDataAPIService
629
647
  # page through the column list. Depending on the authorization method,
630
648
  # use one of the following combinations of request parameters:
631
649
  #
632
- # * Secrets Manager - when connecting to a cluster, specify the Amazon
633
- # Resource Name (ARN) of the secret, the database name, and the
634
- # cluster identifier that matches the cluster in the secret. When
635
- # connecting to a serverless workgroup, specify the Amazon Resource
636
- # Name (ARN) of the secret and the database name.
637
- #
638
- # * Temporary credentials - when connecting to a cluster, specify the
639
- # cluster identifier, the database name, and the database user name.
640
- # Also, permission to call the `redshift:GetClusterCredentials`
641
- # operation is required. When connecting to a serverless workgroup,
642
- # specify the workgroup name and database name. Also, permission to
643
- # call the `redshift-serverless:GetCredentials` operation is required.
650
+ # * Secrets Manager - when connecting to a cluster, provide the
651
+ # `secret-arn` of a secret stored in Secrets Manager which has
652
+ # `username` and `password`. The specified secret contains credentials
653
+ # to connect to the `database` you specify. When you are connecting to
654
+ # a cluster, you also supply the database name, If you provide a
655
+ # cluster identifier (`dbClusterIdentifier`), it must match the
656
+ # cluster identifier stored in the secret. When you are connecting to
657
+ # a serverless workgroup, you also supply the database name.
658
+ #
659
+ # * Temporary credentials - when connecting to your data warehouse,
660
+ # choose one of the following options:
661
+ #
662
+ # * When connecting to a serverless workgroup, specify the workgroup
663
+ # name and database name. The database user name is derived from the
664
+ # IAM identity. For example, `arn:iam::123456789012:user:foo` has
665
+ # the database user name `IAM:foo`. Also, permission to call the
666
+ # `redshift-serverless:GetCredentials` operation is required.
667
+ #
668
+ # * When connecting to a cluster as an IAM identity, specify the
669
+ # cluster identifier and the database name. The database user name
670
+ # is derived from the IAM identity. For example,
671
+ # `arn:iam::123456789012:user:foo` has the database user name
672
+ # `IAM:foo`. Also, permission to call the
673
+ # `redshift:GetClusterCredentialsWithIAM` operation is required.
674
+ #
675
+ # * When connecting to a cluster as a database user, specify the
676
+ # cluster identifier, the database name, and the database user name.
677
+ # Also, permission to call the `redshift:GetClusterCredentials`
678
+ # operation is required.
644
679
  #
645
680
  # For more information about the Amazon Redshift Data API and CLI usage
646
681
  # examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
@@ -666,7 +701,8 @@ module Aws::RedshiftDataAPIService
666
701
  #
667
702
  # @option params [String] :db_user
668
703
  # The database user name. This parameter is required when connecting to
669
- # a cluster and authenticating using temporary credentials.
704
+ # a cluster as a database user and authenticating using temporary
705
+ # credentials.
670
706
  #
671
707
  # @option params [Integer] :max_results
672
708
  # The maximum number of tables to return in the response. If more tables
@@ -755,18 +791,35 @@ module Aws::RedshiftDataAPIService
755
791
  # statement. Depending on the authorization method, use one of the
756
792
  # following combinations of request parameters:
757
793
  #
758
- # * Secrets Manager - when connecting to a cluster, specify the Amazon
759
- # Resource Name (ARN) of the secret, the database name, and the
760
- # cluster identifier that matches the cluster in the secret. When
761
- # connecting to a serverless workgroup, specify the Amazon Resource
762
- # Name (ARN) of the secret and the database name.
763
- #
764
- # * Temporary credentials - when connecting to a cluster, specify the
765
- # cluster identifier, the database name, and the database user name.
766
- # Also, permission to call the `redshift:GetClusterCredentials`
767
- # operation is required. When connecting to a serverless workgroup,
768
- # specify the workgroup name and database name. Also, permission to
769
- # call the `redshift-serverless:GetCredentials` operation is required.
794
+ # * Secrets Manager - when connecting to a cluster, provide the
795
+ # `secret-arn` of a secret stored in Secrets Manager which has
796
+ # `username` and `password`. The specified secret contains credentials
797
+ # to connect to the `database` you specify. When you are connecting to
798
+ # a cluster, you also supply the database name, If you provide a
799
+ # cluster identifier (`dbClusterIdentifier`), it must match the
800
+ # cluster identifier stored in the secret. When you are connecting to
801
+ # a serverless workgroup, you also supply the database name.
802
+ #
803
+ # * Temporary credentials - when connecting to your data warehouse,
804
+ # choose one of the following options:
805
+ #
806
+ # * When connecting to a serverless workgroup, specify the workgroup
807
+ # name and database name. The database user name is derived from the
808
+ # IAM identity. For example, `arn:iam::123456789012:user:foo` has
809
+ # the database user name `IAM:foo`. Also, permission to call the
810
+ # `redshift-serverless:GetCredentials` operation is required.
811
+ #
812
+ # * When connecting to a cluster as an IAM identity, specify the
813
+ # cluster identifier and the database name. The database user name
814
+ # is derived from the IAM identity. For example,
815
+ # `arn:iam::123456789012:user:foo` has the database user name
816
+ # `IAM:foo`. Also, permission to call the
817
+ # `redshift:GetClusterCredentialsWithIAM` operation is required.
818
+ #
819
+ # * When connecting to a cluster as a database user, specify the
820
+ # cluster identifier, the database name, and the database user name.
821
+ # Also, permission to call the `redshift:GetClusterCredentials`
822
+ # operation is required.
770
823
  #
771
824
  # For more information about the Amazon Redshift Data API and CLI usage
772
825
  # examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
@@ -794,7 +847,8 @@ module Aws::RedshiftDataAPIService
794
847
  #
795
848
  # @option params [String] :db_user
796
849
  # The database user name. This parameter is required when connecting to
797
- # a cluster and authenticating using temporary credentials.
850
+ # a cluster as a database user and authenticating using temporary
851
+ # credentials.
798
852
  #
799
853
  # @option params [Array<Types::SqlParameter>] :parameters
800
854
  # The parameters for the SQL statement.
@@ -952,18 +1006,35 @@ module Aws::RedshiftDataAPIService
952
1006
  # the database list. Depending on the authorization method, use one of
953
1007
  # the following combinations of request parameters:
954
1008
  #
955
- # * Secrets Manager - when connecting to a cluster, specify the Amazon
956
- # Resource Name (ARN) of the secret, the database name, and the
957
- # cluster identifier that matches the cluster in the secret. When
958
- # connecting to a serverless workgroup, specify the Amazon Resource
959
- # Name (ARN) of the secret and the database name.
960
- #
961
- # * Temporary credentials - when connecting to a cluster, specify the
962
- # cluster identifier, the database name, and the database user name.
963
- # Also, permission to call the `redshift:GetClusterCredentials`
964
- # operation is required. When connecting to a serverless workgroup,
965
- # specify the workgroup name and database name. Also, permission to
966
- # call the `redshift-serverless:GetCredentials` operation is required.
1009
+ # * Secrets Manager - when connecting to a cluster, provide the
1010
+ # `secret-arn` of a secret stored in Secrets Manager which has
1011
+ # `username` and `password`. The specified secret contains credentials
1012
+ # to connect to the `database` you specify. When you are connecting to
1013
+ # a cluster, you also supply the database name, If you provide a
1014
+ # cluster identifier (`dbClusterIdentifier`), it must match the
1015
+ # cluster identifier stored in the secret. When you are connecting to
1016
+ # a serverless workgroup, you also supply the database name.
1017
+ #
1018
+ # * Temporary credentials - when connecting to your data warehouse,
1019
+ # choose one of the following options:
1020
+ #
1021
+ # * When connecting to a serverless workgroup, specify the workgroup
1022
+ # name and database name. The database user name is derived from the
1023
+ # IAM identity. For example, `arn:iam::123456789012:user:foo` has
1024
+ # the database user name `IAM:foo`. Also, permission to call the
1025
+ # `redshift-serverless:GetCredentials` operation is required.
1026
+ #
1027
+ # * When connecting to a cluster as an IAM identity, specify the
1028
+ # cluster identifier and the database name. The database user name
1029
+ # is derived from the IAM identity. For example,
1030
+ # `arn:iam::123456789012:user:foo` has the database user name
1031
+ # `IAM:foo`. Also, permission to call the
1032
+ # `redshift:GetClusterCredentialsWithIAM` operation is required.
1033
+ #
1034
+ # * When connecting to a cluster as a database user, specify the
1035
+ # cluster identifier, the database name, and the database user name.
1036
+ # Also, permission to call the `redshift:GetClusterCredentials`
1037
+ # operation is required.
967
1038
  #
968
1039
  # For more information about the Amazon Redshift Data API and CLI usage
969
1040
  # examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
@@ -984,7 +1055,8 @@ module Aws::RedshiftDataAPIService
984
1055
  #
985
1056
  # @option params [String] :db_user
986
1057
  # The database user name. This parameter is required when connecting to
987
- # a cluster and authenticating using temporary credentials.
1058
+ # a cluster as a database user and authenticating using temporary
1059
+ # credentials.
988
1060
  #
989
1061
  # @option params [Integer] :max_results
990
1062
  # The maximum number of databases to return in the response. If more
@@ -1046,18 +1118,35 @@ module Aws::RedshiftDataAPIService
1046
1118
  # the schema list. Depending on the authorization method, use one of the
1047
1119
  # following combinations of request parameters:
1048
1120
  #
1049
- # * Secrets Manager - when connecting to a cluster, specify the Amazon
1050
- # Resource Name (ARN) of the secret, the database name, and the
1051
- # cluster identifier that matches the cluster in the secret. When
1052
- # connecting to a serverless workgroup, specify the Amazon Resource
1053
- # Name (ARN) of the secret and the database name.
1054
- #
1055
- # * Temporary credentials - when connecting to a cluster, specify the
1056
- # cluster identifier, the database name, and the database user name.
1057
- # Also, permission to call the `redshift:GetClusterCredentials`
1058
- # operation is required. When connecting to a serverless workgroup,
1059
- # specify the workgroup name and database name. Also, permission to
1060
- # call the `redshift-serverless:GetCredentials` operation is required.
1121
+ # * Secrets Manager - when connecting to a cluster, provide the
1122
+ # `secret-arn` of a secret stored in Secrets Manager which has
1123
+ # `username` and `password`. The specified secret contains credentials
1124
+ # to connect to the `database` you specify. When you are connecting to
1125
+ # a cluster, you also supply the database name, If you provide a
1126
+ # cluster identifier (`dbClusterIdentifier`), it must match the
1127
+ # cluster identifier stored in the secret. When you are connecting to
1128
+ # a serverless workgroup, you also supply the database name.
1129
+ #
1130
+ # * Temporary credentials - when connecting to your data warehouse,
1131
+ # choose one of the following options:
1132
+ #
1133
+ # * When connecting to a serverless workgroup, specify the workgroup
1134
+ # name and database name. The database user name is derived from the
1135
+ # IAM identity. For example, `arn:iam::123456789012:user:foo` has
1136
+ # the database user name `IAM:foo`. Also, permission to call the
1137
+ # `redshift-serverless:GetCredentials` operation is required.
1138
+ #
1139
+ # * When connecting to a cluster as an IAM identity, specify the
1140
+ # cluster identifier and the database name. The database user name
1141
+ # is derived from the IAM identity. For example,
1142
+ # `arn:iam::123456789012:user:foo` has the database user name
1143
+ # `IAM:foo`. Also, permission to call the
1144
+ # `redshift:GetClusterCredentialsWithIAM` operation is required.
1145
+ #
1146
+ # * When connecting to a cluster as a database user, specify the
1147
+ # cluster identifier, the database name, and the database user name.
1148
+ # Also, permission to call the `redshift:GetClusterCredentials`
1149
+ # operation is required.
1061
1150
  #
1062
1151
  # For more information about the Amazon Redshift Data API and CLI usage
1063
1152
  # examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
@@ -1083,7 +1172,8 @@ module Aws::RedshiftDataAPIService
1083
1172
  #
1084
1173
  # @option params [String] :db_user
1085
1174
  # The database user name. This parameter is required when connecting to
1086
- # a cluster and authenticating using temporary credentials.
1175
+ # a cluster as a database user and authenticating using temporary
1176
+ # credentials.
1087
1177
  #
1088
1178
  # @option params [Integer] :max_results
1089
1179
  # The maximum number of schemas to return in the response. If more
@@ -1257,18 +1347,35 @@ module Aws::RedshiftDataAPIService
1257
1347
  # Depending on the authorization method, use one of the following
1258
1348
  # combinations of request parameters:
1259
1349
  #
1260
- # * Secrets Manager - when connecting to a cluster, specify the Amazon
1261
- # Resource Name (ARN) of the secret, the database name, and the
1262
- # cluster identifier that matches the cluster in the secret. When
1263
- # connecting to a serverless workgroup, specify the Amazon Resource
1264
- # Name (ARN) of the secret and the database name.
1265
- #
1266
- # * Temporary credentials - when connecting to a cluster, specify the
1267
- # cluster identifier, the database name, and the database user name.
1268
- # Also, permission to call the `redshift:GetClusterCredentials`
1269
- # operation is required. When connecting to a serverless workgroup,
1270
- # specify the workgroup name and database name. Also, permission to
1271
- # call the `redshift-serverless:GetCredentials` operation is required.
1350
+ # * Secrets Manager - when connecting to a cluster, provide the
1351
+ # `secret-arn` of a secret stored in Secrets Manager which has
1352
+ # `username` and `password`. The specified secret contains credentials
1353
+ # to connect to the `database` you specify. When you are connecting to
1354
+ # a cluster, you also supply the database name, If you provide a
1355
+ # cluster identifier (`dbClusterIdentifier`), it must match the
1356
+ # cluster identifier stored in the secret. When you are connecting to
1357
+ # a serverless workgroup, you also supply the database name.
1358
+ #
1359
+ # * Temporary credentials - when connecting to your data warehouse,
1360
+ # choose one of the following options:
1361
+ #
1362
+ # * When connecting to a serverless workgroup, specify the workgroup
1363
+ # name and database name. The database user name is derived from the
1364
+ # IAM identity. For example, `arn:iam::123456789012:user:foo` has
1365
+ # the database user name `IAM:foo`. Also, permission to call the
1366
+ # `redshift-serverless:GetCredentials` operation is required.
1367
+ #
1368
+ # * When connecting to a cluster as an IAM identity, specify the
1369
+ # cluster identifier and the database name. The database user name
1370
+ # is derived from the IAM identity. For example,
1371
+ # `arn:iam::123456789012:user:foo` has the database user name
1372
+ # `IAM:foo`. Also, permission to call the
1373
+ # `redshift:GetClusterCredentialsWithIAM` operation is required.
1374
+ #
1375
+ # * When connecting to a cluster as a database user, specify the
1376
+ # cluster identifier, the database name, and the database user name.
1377
+ # Also, permission to call the `redshift:GetClusterCredentials`
1378
+ # operation is required.
1272
1379
  #
1273
1380
  # For more information about the Amazon Redshift Data API and CLI usage
1274
1381
  # examples, see [Using the Amazon Redshift Data API][1] in the *Amazon
@@ -1294,7 +1401,8 @@ module Aws::RedshiftDataAPIService
1294
1401
  #
1295
1402
  # @option params [String] :db_user
1296
1403
  # The database user name. This parameter is required when connecting to
1297
- # a cluster and authenticating using temporary credentials.
1404
+ # a cluster as a database user and authenticating using temporary
1405
+ # credentials.
1298
1406
  #
1299
1407
  # @option params [Integer] :max_results
1300
1408
  # The maximum number of tables to return in the response. If more tables
@@ -1388,7 +1496,7 @@ module Aws::RedshiftDataAPIService
1388
1496
  params: params,
1389
1497
  config: config)
1390
1498
  context[:gem_name] = 'aws-sdk-redshiftdataapiservice'
1391
- context[:gem_version] = '1.25.0'
1499
+ context[:gem_version] = '1.26.0'
1392
1500
  Seahorse::Client::Request.new(handlers, context)
1393
1501
  end
1394
1502
 
@@ -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 credentials.
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 credentials.
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 credentials.
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 credentials.
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 credentials.
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 credentials.
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-redshiftdataapiservice/customizations'
52
52
  # @!group service
53
53
  module Aws::RedshiftDataAPIService
54
54
 
55
- GEM_VERSION = '1.25.0'
55
+ GEM_VERSION = '1.26.0'
56
56
 
57
57
  end
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.25.0
4
+ version: 1.26.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-03-09 00:00:00.000000000 Z
11
+ date: 2023-04-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core