aws-sdk-redshift 1.93.0 → 1.95.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-redshift/client.rb +243 -24
- data/lib/aws-sdk-redshift/client_api.rb +125 -2
- data/lib/aws-sdk-redshift/endpoint_provider.rb +0 -6
- data/lib/aws-sdk-redshift/endpoints.rb +56 -0
- data/lib/aws-sdk-redshift/errors.rb +22 -0
- data/lib/aws-sdk-redshift/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-redshift/types.rb +276 -25
- data/lib/aws-sdk-redshift.rb +1 -1
- metadata +4 -4
@@ -163,6 +163,32 @@ module Aws::Redshift
|
|
163
163
|
include Aws::Structure
|
164
164
|
end
|
165
165
|
|
166
|
+
# Contains information about the custom domain name association.
|
167
|
+
#
|
168
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
169
|
+
# The Amazon Resource Name (ARN) for the certificate associated with
|
170
|
+
# the custom domain.
|
171
|
+
# @return [String]
|
172
|
+
#
|
173
|
+
# @!attribute [rw] custom_domain_certificate_expiry_date
|
174
|
+
# The expiration date for the certificate.
|
175
|
+
# @return [Time]
|
176
|
+
#
|
177
|
+
# @!attribute [rw] certificate_associations
|
178
|
+
# A list of all associated clusters and domain names tied to a
|
179
|
+
# specific certificate.
|
180
|
+
# @return [Array<Types::CertificateAssociation>]
|
181
|
+
#
|
182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Association AWS API Documentation
|
183
|
+
#
|
184
|
+
class Association < Struct.new(
|
185
|
+
:custom_domain_certificate_arn,
|
186
|
+
:custom_domain_certificate_expiry_date,
|
187
|
+
:certificate_associations)
|
188
|
+
SENSITIVE = []
|
189
|
+
include Aws::Structure
|
190
|
+
end
|
191
|
+
|
166
192
|
# Describes an attribute value.
|
167
193
|
#
|
168
194
|
# @!attribute [rw] attribute_value
|
@@ -336,9 +362,9 @@ module Aws::Redshift
|
|
336
362
|
#
|
337
363
|
# @!attribute [rw] snapshot_cluster_identifier
|
338
364
|
# The identifier of the cluster the snapshot was created from. This
|
339
|
-
# parameter is required if your IAM user
|
340
|
-
#
|
341
|
-
#
|
365
|
+
# parameter is required if your IAM user has a policy containing a
|
366
|
+
# snapshot resource element that specifies anything other than * for
|
367
|
+
# the cluster name.
|
342
368
|
# @return [String]
|
343
369
|
#
|
344
370
|
# @!attribute [rw] account_with_restore_access
|
@@ -500,6 +526,26 @@ module Aws::Redshift
|
|
500
526
|
include Aws::Structure
|
501
527
|
end
|
502
528
|
|
529
|
+
# A cluster ID and custom domain name tied to a specific certificate.
|
530
|
+
# These are typically returned in a list.
|
531
|
+
#
|
532
|
+
# @!attribute [rw] custom_domain_name
|
533
|
+
# The custom domain name for the certificate association.
|
534
|
+
# @return [String]
|
535
|
+
#
|
536
|
+
# @!attribute [rw] cluster_identifier
|
537
|
+
# The cluster identifier for the certificate association.
|
538
|
+
# @return [String]
|
539
|
+
#
|
540
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CertificateAssociation AWS API Documentation
|
541
|
+
#
|
542
|
+
class CertificateAssociation < Struct.new(
|
543
|
+
:custom_domain_name,
|
544
|
+
:cluster_identifier)
|
545
|
+
SENSITIVE = []
|
546
|
+
include Aws::Structure
|
547
|
+
end
|
548
|
+
|
503
549
|
# Describes a cluster.
|
504
550
|
#
|
505
551
|
# @!attribute [rw] cluster_identifier
|
@@ -828,6 +874,20 @@ module Aws::Redshift
|
|
828
874
|
# in-progress and requested.
|
829
875
|
# @return [Types::ReservedNodeExchangeStatus]
|
830
876
|
#
|
877
|
+
# @!attribute [rw] custom_domain_name
|
878
|
+
# The custom domain name associated with the cluster.
|
879
|
+
# @return [String]
|
880
|
+
#
|
881
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
882
|
+
# The certificate Amazon Resource Name (ARN) for the custom domain
|
883
|
+
# name.
|
884
|
+
# @return [String]
|
885
|
+
#
|
886
|
+
# @!attribute [rw] custom_domain_certificate_expiry_date
|
887
|
+
# The expiration date for the certificate associated with the custom
|
888
|
+
# domain name.
|
889
|
+
# @return [Time]
|
890
|
+
#
|
831
891
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/Cluster AWS API Documentation
|
832
892
|
#
|
833
893
|
class Cluster < Struct.new(
|
@@ -882,7 +942,10 @@ module Aws::Redshift
|
|
882
942
|
:total_storage_capacity_in_mega_bytes,
|
883
943
|
:aqua_configuration,
|
884
944
|
:default_iam_role_arn,
|
885
|
-
:reserved_node_exchange_status
|
945
|
+
:reserved_node_exchange_status,
|
946
|
+
:custom_domain_name,
|
947
|
+
:custom_domain_certificate_arn,
|
948
|
+
:custom_domain_certificate_expiry_date)
|
886
949
|
SENSITIVE = []
|
887
950
|
include Aws::Structure
|
888
951
|
end
|
@@ -1662,9 +1725,9 @@ module Aws::Redshift
|
|
1662
1725
|
#
|
1663
1726
|
# @!attribute [rw] source_snapshot_cluster_identifier
|
1664
1727
|
# The identifier of the cluster the source snapshot was created from.
|
1665
|
-
# This parameter is required if your IAM user
|
1666
|
-
#
|
1667
|
-
#
|
1728
|
+
# This parameter is required if your IAM user has a policy containing
|
1729
|
+
# a snapshot resource element that specifies anything other than *
|
1730
|
+
# for the cluster name.
|
1668
1731
|
#
|
1669
1732
|
# Constraints:
|
1670
1733
|
#
|
@@ -1841,8 +1904,8 @@ module Aws::Redshift
|
|
1841
1904
|
# @return [String]
|
1842
1905
|
#
|
1843
1906
|
# @!attribute [rw] master_username
|
1844
|
-
# The user name associated with the admin user for the cluster
|
1845
|
-
# being created.
|
1907
|
+
# The user name associated with the admin user account for the cluster
|
1908
|
+
# that is being created.
|
1846
1909
|
#
|
1847
1910
|
# Constraints:
|
1848
1911
|
#
|
@@ -1866,8 +1929,8 @@ module Aws::Redshift
|
|
1866
1929
|
# @return [String]
|
1867
1930
|
#
|
1868
1931
|
# @!attribute [rw] master_user_password
|
1869
|
-
# The password associated with the admin user for the cluster
|
1870
|
-
# being created.
|
1932
|
+
# The password associated with the admin user account for the cluster
|
1933
|
+
# that is being created.
|
1871
1934
|
#
|
1872
1935
|
# Constraints:
|
1873
1936
|
#
|
@@ -2425,6 +2488,58 @@ module Aws::Redshift
|
|
2425
2488
|
include Aws::Structure
|
2426
2489
|
end
|
2427
2490
|
|
2491
|
+
# @!attribute [rw] custom_domain_name
|
2492
|
+
# The custom domain name for a custom domain association.
|
2493
|
+
# @return [String]
|
2494
|
+
#
|
2495
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
2496
|
+
# The certificate Amazon Resource Name (ARN) for the custom domain
|
2497
|
+
# name association.
|
2498
|
+
# @return [String]
|
2499
|
+
#
|
2500
|
+
# @!attribute [rw] cluster_identifier
|
2501
|
+
# The cluster identifier that the custom domain is associated with.
|
2502
|
+
# @return [String]
|
2503
|
+
#
|
2504
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCustomDomainAssociationMessage AWS API Documentation
|
2505
|
+
#
|
2506
|
+
class CreateCustomDomainAssociationMessage < Struct.new(
|
2507
|
+
:custom_domain_name,
|
2508
|
+
:custom_domain_certificate_arn,
|
2509
|
+
:cluster_identifier)
|
2510
|
+
SENSITIVE = []
|
2511
|
+
include Aws::Structure
|
2512
|
+
end
|
2513
|
+
|
2514
|
+
# @!attribute [rw] custom_domain_name
|
2515
|
+
# The custom domain name for the association result.
|
2516
|
+
# @return [String]
|
2517
|
+
#
|
2518
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
2519
|
+
# The Amazon Resource Name (ARN) for the certificate associated with
|
2520
|
+
# the custom domain name.
|
2521
|
+
# @return [String]
|
2522
|
+
#
|
2523
|
+
# @!attribute [rw] cluster_identifier
|
2524
|
+
# The identifier of the cluster that the custom domain is associated
|
2525
|
+
# with.
|
2526
|
+
# @return [String]
|
2527
|
+
#
|
2528
|
+
# @!attribute [rw] custom_domain_cert_expiry_time
|
2529
|
+
# The expiration time for the certificate for the custom domain.
|
2530
|
+
# @return [String]
|
2531
|
+
#
|
2532
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CreateCustomDomainAssociationResult AWS API Documentation
|
2533
|
+
#
|
2534
|
+
class CreateCustomDomainAssociationResult < Struct.new(
|
2535
|
+
:custom_domain_name,
|
2536
|
+
:custom_domain_certificate_arn,
|
2537
|
+
:cluster_identifier,
|
2538
|
+
:custom_domain_cert_expiry_time)
|
2539
|
+
SENSITIVE = []
|
2540
|
+
include Aws::Structure
|
2541
|
+
end
|
2542
|
+
|
2428
2543
|
# @!attribute [rw] cluster_identifier
|
2429
2544
|
# The cluster identifier of the cluster to access.
|
2430
2545
|
# @return [String]
|
@@ -2893,6 +3008,36 @@ module Aws::Redshift
|
|
2893
3008
|
include Aws::Structure
|
2894
3009
|
end
|
2895
3010
|
|
3011
|
+
# An error occurred when an attempt was made to change the custom domain
|
3012
|
+
# association.
|
3013
|
+
#
|
3014
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CustomCnameAssociationFault AWS API Documentation
|
3015
|
+
#
|
3016
|
+
class CustomCnameAssociationFault < Aws::EmptyStructure; end
|
3017
|
+
|
3018
|
+
# An error occurred. The custom domain name couldn't be found.
|
3019
|
+
#
|
3020
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CustomDomainAssociationNotFoundFault AWS API Documentation
|
3021
|
+
#
|
3022
|
+
class CustomDomainAssociationNotFoundFault < Aws::EmptyStructure; end
|
3023
|
+
|
3024
|
+
# @!attribute [rw] marker
|
3025
|
+
# The marker for the custom domain association.
|
3026
|
+
# @return [String]
|
3027
|
+
#
|
3028
|
+
# @!attribute [rw] associations
|
3029
|
+
# The associations for the custom domain.
|
3030
|
+
# @return [Array<Types::Association>]
|
3031
|
+
#
|
3032
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/CustomDomainAssociationsMessage AWS API Documentation
|
3033
|
+
#
|
3034
|
+
class CustomDomainAssociationsMessage < Struct.new(
|
3035
|
+
:marker,
|
3036
|
+
:associations)
|
3037
|
+
SENSITIVE = []
|
3038
|
+
include Aws::Structure
|
3039
|
+
end
|
3040
|
+
|
2896
3041
|
# @!attribute [rw] total_backup_size_in_mega_bytes
|
2897
3042
|
# The total amount of storage currently used for snapshots.
|
2898
3043
|
# @return [Float]
|
@@ -3242,9 +3387,9 @@ module Aws::Redshift
|
|
3242
3387
|
#
|
3243
3388
|
# @!attribute [rw] snapshot_cluster_identifier
|
3244
3389
|
# The unique identifier of the cluster the snapshot was created from.
|
3245
|
-
# This parameter is required if your IAM user
|
3246
|
-
#
|
3247
|
-
#
|
3390
|
+
# This parameter is required if your IAM user has a policy containing
|
3391
|
+
# a snapshot resource element that specifies anything other than *
|
3392
|
+
# for the cluster name.
|
3248
3393
|
#
|
3249
3394
|
# Constraints: Must be the name of valid cluster.
|
3250
3395
|
# @return [String]
|
@@ -3282,6 +3427,19 @@ module Aws::Redshift
|
|
3282
3427
|
include Aws::Structure
|
3283
3428
|
end
|
3284
3429
|
|
3430
|
+
# @!attribute [rw] cluster_identifier
|
3431
|
+
# The identifier of the cluster to delete a custom domain association
|
3432
|
+
# for.
|
3433
|
+
# @return [String]
|
3434
|
+
#
|
3435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DeleteCustomDomainAssociationMessage AWS API Documentation
|
3436
|
+
#
|
3437
|
+
class DeleteCustomDomainAssociationMessage < Struct.new(
|
3438
|
+
:cluster_identifier)
|
3439
|
+
SENSITIVE = []
|
3440
|
+
include Aws::Structure
|
3441
|
+
end
|
3442
|
+
|
3285
3443
|
# @!attribute [rw] endpoint_name
|
3286
3444
|
# The Redshift-managed VPC endpoint to delete.
|
3287
3445
|
# @return [String]
|
@@ -3728,7 +3886,7 @@ module Aws::Redshift
|
|
3728
3886
|
#
|
3729
3887
|
# Default: `100`
|
3730
3888
|
#
|
3731
|
-
# Constraints: minimum 20, maximum
|
3889
|
+
# Constraints: minimum 20, maximum 100.
|
3732
3890
|
# @return [Integer]
|
3733
3891
|
#
|
3734
3892
|
# @!attribute [rw] marker
|
@@ -4016,6 +4174,34 @@ module Aws::Redshift
|
|
4016
4174
|
include Aws::Structure
|
4017
4175
|
end
|
4018
4176
|
|
4177
|
+
# @!attribute [rw] custom_domain_name
|
4178
|
+
# The custom domain name for the custom domain association.
|
4179
|
+
# @return [String]
|
4180
|
+
#
|
4181
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
4182
|
+
# The certificate Amazon Resource Name (ARN) for the custom domain
|
4183
|
+
# association.
|
4184
|
+
# @return [String]
|
4185
|
+
#
|
4186
|
+
# @!attribute [rw] max_records
|
4187
|
+
# The maximum records setting for the associated custom domain.
|
4188
|
+
# @return [Integer]
|
4189
|
+
#
|
4190
|
+
# @!attribute [rw] marker
|
4191
|
+
# The marker for the custom domain association.
|
4192
|
+
# @return [String]
|
4193
|
+
#
|
4194
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/DescribeCustomDomainAssociationsMessage AWS API Documentation
|
4195
|
+
#
|
4196
|
+
class DescribeCustomDomainAssociationsMessage < Struct.new(
|
4197
|
+
:custom_domain_name,
|
4198
|
+
:custom_domain_certificate_arn,
|
4199
|
+
:max_records,
|
4200
|
+
:marker)
|
4201
|
+
SENSITIVE = []
|
4202
|
+
include Aws::Structure
|
4203
|
+
end
|
4204
|
+
|
4019
4205
|
# @!attribute [rw] consumer_arn
|
4020
4206
|
# The Amazon Resource Name (ARN) of the consumer that returns in the
|
4021
4207
|
# list of datashares.
|
@@ -6197,6 +6383,10 @@ module Aws::Redshift
|
|
6197
6383
|
# [1]: http://docs.aws.amazon.com/redshift/latest/dg/r_pg_keywords.html
|
6198
6384
|
# @return [Array<String>]
|
6199
6385
|
#
|
6386
|
+
# @!attribute [rw] custom_domain_name
|
6387
|
+
# The custom domain name for the cluster credentials.
|
6388
|
+
# @return [String]
|
6389
|
+
#
|
6200
6390
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetClusterCredentialsMessage AWS API Documentation
|
6201
6391
|
#
|
6202
6392
|
class GetClusterCredentialsMessage < Struct.new(
|
@@ -6205,7 +6395,8 @@ module Aws::Redshift
|
|
6205
6395
|
:cluster_identifier,
|
6206
6396
|
:duration_seconds,
|
6207
6397
|
:auto_create,
|
6208
|
-
:db_groups
|
6398
|
+
:db_groups,
|
6399
|
+
:custom_domain_name)
|
6209
6400
|
SENSITIVE = []
|
6210
6401
|
include Aws::Structure
|
6211
6402
|
end
|
@@ -6228,12 +6419,17 @@ module Aws::Redshift
|
|
6228
6419
|
# Range: 900-3600. Default: 900.
|
6229
6420
|
# @return [Integer]
|
6230
6421
|
#
|
6422
|
+
# @!attribute [rw] custom_domain_name
|
6423
|
+
# The custom domain name for the IAM message cluster credentials.
|
6424
|
+
# @return [String]
|
6425
|
+
#
|
6231
6426
|
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/GetClusterCredentialsWithIAMMessage AWS API Documentation
|
6232
6427
|
#
|
6233
6428
|
class GetClusterCredentialsWithIAMMessage < Struct.new(
|
6234
6429
|
:db_name,
|
6235
6430
|
:cluster_identifier,
|
6236
|
-
:duration_seconds
|
6431
|
+
:duration_seconds,
|
6432
|
+
:custom_domain_name)
|
6237
6433
|
SENSITIVE = []
|
6238
6434
|
include Aws::Structure
|
6239
6435
|
end
|
@@ -7169,8 +7365,8 @@ module Aws::Redshift
|
|
7169
7365
|
# operation response.
|
7170
7366
|
#
|
7171
7367
|
# <note markdown="1"> Operations never return the password, so this operation provides a
|
7172
|
-
# way to regain access to the admin user for a cluster if the
|
7173
|
-
# is lost.
|
7368
|
+
# way to regain access to the admin user account for a cluster if the
|
7369
|
+
# password is lost.
|
7174
7370
|
#
|
7175
7371
|
# </note>
|
7176
7372
|
#
|
@@ -7551,6 +7747,61 @@ module Aws::Redshift
|
|
7551
7747
|
include Aws::Structure
|
7552
7748
|
end
|
7553
7749
|
|
7750
|
+
# @!attribute [rw] custom_domain_name
|
7751
|
+
# The custom domain name for a changed custom domain association.
|
7752
|
+
# @return [String]
|
7753
|
+
#
|
7754
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
7755
|
+
# The certificate Amazon Resource Name (ARN) for the changed custom
|
7756
|
+
# domain association.
|
7757
|
+
# @return [String]
|
7758
|
+
#
|
7759
|
+
# @!attribute [rw] cluster_identifier
|
7760
|
+
# The identifier of the cluster to change a custom domain association
|
7761
|
+
# for.
|
7762
|
+
# @return [String]
|
7763
|
+
#
|
7764
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCustomDomainAssociationMessage AWS API Documentation
|
7765
|
+
#
|
7766
|
+
class ModifyCustomDomainAssociationMessage < Struct.new(
|
7767
|
+
:custom_domain_name,
|
7768
|
+
:custom_domain_certificate_arn,
|
7769
|
+
:cluster_identifier)
|
7770
|
+
SENSITIVE = []
|
7771
|
+
include Aws::Structure
|
7772
|
+
end
|
7773
|
+
|
7774
|
+
# @!attribute [rw] custom_domain_name
|
7775
|
+
# The custom domain name associated with the result for the changed
|
7776
|
+
# custom domain association.
|
7777
|
+
# @return [String]
|
7778
|
+
#
|
7779
|
+
# @!attribute [rw] custom_domain_certificate_arn
|
7780
|
+
# The certificate Amazon Resource Name (ARN) associated with the
|
7781
|
+
# result for the changed custom domain association.
|
7782
|
+
# @return [String]
|
7783
|
+
#
|
7784
|
+
# @!attribute [rw] cluster_identifier
|
7785
|
+
# The identifier of the cluster associated with the result for the
|
7786
|
+
# changed custom domain association.
|
7787
|
+
# @return [String]
|
7788
|
+
#
|
7789
|
+
# @!attribute [rw] custom_domain_cert_expiry_time
|
7790
|
+
# The certificate expiration time associated with the result for the
|
7791
|
+
# changed custom domain association.
|
7792
|
+
# @return [String]
|
7793
|
+
#
|
7794
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/redshift-2012-12-01/ModifyCustomDomainAssociationResult AWS API Documentation
|
7795
|
+
#
|
7796
|
+
class ModifyCustomDomainAssociationResult < Struct.new(
|
7797
|
+
:custom_domain_name,
|
7798
|
+
:custom_domain_certificate_arn,
|
7799
|
+
:cluster_identifier,
|
7800
|
+
:custom_domain_cert_expiry_time)
|
7801
|
+
SENSITIVE = []
|
7802
|
+
include Aws::Structure
|
7803
|
+
end
|
7804
|
+
|
7554
7805
|
# @!attribute [rw] endpoint_name
|
7555
7806
|
# The endpoint to be modified.
|
7556
7807
|
# @return [String]
|
@@ -8954,9 +9205,9 @@ module Aws::Redshift
|
|
8954
9205
|
#
|
8955
9206
|
# @!attribute [rw] snapshot_cluster_identifier
|
8956
9207
|
# The name of the cluster the source snapshot was created from. This
|
8957
|
-
# parameter is required if your IAM user
|
8958
|
-
#
|
8959
|
-
#
|
9208
|
+
# parameter is required if your IAM user has a policy containing a
|
9209
|
+
# snapshot resource element that specifies anything other than * for
|
9210
|
+
# the cluster name.
|
8960
9211
|
# @return [String]
|
8961
9212
|
#
|
8962
9213
|
# @!attribute [rw] port
|
@@ -9538,9 +9789,9 @@ module Aws::Redshift
|
|
9538
9789
|
#
|
9539
9790
|
# @!attribute [rw] snapshot_cluster_identifier
|
9540
9791
|
# The identifier of the cluster the snapshot was created from. This
|
9541
|
-
# parameter is required if your IAM user
|
9542
|
-
#
|
9543
|
-
#
|
9792
|
+
# parameter is required if your IAM user has a policy containing a
|
9793
|
+
# snapshot resource element that specifies anything other than * for
|
9794
|
+
# the cluster name.
|
9544
9795
|
# @return [String]
|
9545
9796
|
#
|
9546
9797
|
# @!attribute [rw] account_with_restore_access
|
data/lib/aws-sdk-redshift.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-redshift
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.95.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-06-
|
11
|
+
date: 2023-06-28 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.176.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.176.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|