aws-sdk-rds 1.231.0 → 1.232.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-rds/client.rb +71 -9
- data/lib/aws-sdk-rds/db_instance.rb +43 -5
- data/lib/aws-sdk-rds/db_snapshot.rb +28 -4
- data/lib/aws-sdk-rds/resource.rb +15 -1
- data/lib/aws-sdk-rds/types.rb +74 -9
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 612c8b5f8143854a11cf1bbedbacaea55f4fd6596879a25eab7b800c45bae0b5
|
4
|
+
data.tar.gz: 579c7c5995b88dd5d8afccbb00ef359a82414c1da3f6b6d8326dc1cb210d8f80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d3479bdd0bc4527180c9343ce2c2b39cd36fb4cf8fd489507b98e5c0dabfd85a93ff0fb1baf6101bbf49f4b379d89136eafd25671cb86670131b187bfc713be2
|
7
|
+
data.tar.gz: f0d817924b77e0dcd11314dcf382130767990ebb101bc634a71e2ef325792413a4011f01273ef690c166f047deba779cb038d863135e3e887f09e5f58d95ea35
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.232.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -4867,12 +4867,22 @@ module Aws::RDS
|
|
4867
4867
|
# @option params [String] :license_model
|
4868
4868
|
# The license model information for this DB instance.
|
4869
4869
|
#
|
4870
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4871
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
4872
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
4873
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
4874
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
4875
|
+
#
|
4876
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
4877
|
+
#
|
4878
|
+
# </note>
|
4879
|
+
#
|
4870
4880
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
4871
4881
|
# instances.
|
4872
4882
|
#
|
4873
4883
|
# Valid Values:
|
4874
4884
|
#
|
4875
|
-
# * RDS for Db2 - `bring-your-own-license`
|
4885
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
4876
4886
|
#
|
4877
4887
|
# * RDS for MariaDB - `general-public-license`
|
4878
4888
|
#
|
@@ -4884,6 +4894,10 @@ module Aws::RDS
|
|
4884
4894
|
#
|
4885
4895
|
# * RDS for PostgreSQL - `postgresql-license`
|
4886
4896
|
#
|
4897
|
+
#
|
4898
|
+
#
|
4899
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
4900
|
+
#
|
4887
4901
|
# @option params [Integer] :iops
|
4888
4902
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
4889
4903
|
# initially allocate for the DB instance. For information about valid
|
@@ -26662,12 +26676,36 @@ module Aws::RDS
|
|
26662
26676
|
# @option params [String] :license_model
|
26663
26677
|
# License model information for the restored DB instance.
|
26664
26678
|
#
|
26665
|
-
#
|
26679
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
26680
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
26681
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
26682
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
26683
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
26684
|
+
#
|
26685
|
+
# </note>
|
26686
|
+
#
|
26687
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
26688
|
+
# instances.
|
26689
|
+
#
|
26690
|
+
# Valid Values:
|
26666
26691
|
#
|
26667
|
-
#
|
26692
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
26668
26693
|
#
|
26669
|
-
#
|
26670
|
-
#
|
26694
|
+
# * RDS for MariaDB - `general-public-license`
|
26695
|
+
#
|
26696
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
26697
|
+
#
|
26698
|
+
# * RDS for MySQL - `general-public-license`
|
26699
|
+
#
|
26700
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
26701
|
+
#
|
26702
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
26703
|
+
#
|
26704
|
+
# Default: Same as the source.
|
26705
|
+
#
|
26706
|
+
#
|
26707
|
+
#
|
26708
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
26671
26709
|
#
|
26672
26710
|
# @option params [String] :db_name
|
26673
26711
|
# The name of the database for the restored DB instance.
|
@@ -28321,13 +28359,37 @@ module Aws::RDS
|
|
28321
28359
|
# @option params [String] :license_model
|
28322
28360
|
# The license model information for the restored DB instance.
|
28323
28361
|
#
|
28324
|
-
#
|
28362
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
28363
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
28364
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
28365
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
28366
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
28325
28367
|
#
|
28326
|
-
#
|
28327
|
-
#
|
28368
|
+
# </note>
|
28369
|
+
#
|
28370
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
28371
|
+
# instances.
|
28372
|
+
#
|
28373
|
+
# Valid Values:
|
28374
|
+
#
|
28375
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
28376
|
+
#
|
28377
|
+
# * RDS for MariaDB - `general-public-license`
|
28378
|
+
#
|
28379
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
28380
|
+
#
|
28381
|
+
# * RDS for MySQL - `general-public-license`
|
28382
|
+
#
|
28383
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
28384
|
+
#
|
28385
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
28328
28386
|
#
|
28329
28387
|
# Default: Same as the source.
|
28330
28388
|
#
|
28389
|
+
#
|
28390
|
+
#
|
28391
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
28392
|
+
#
|
28331
28393
|
# @option params [String] :db_name
|
28332
28394
|
# The database name for the restored DB instance.
|
28333
28395
|
#
|
@@ -31182,7 +31244,7 @@ module Aws::RDS
|
|
31182
31244
|
params: params,
|
31183
31245
|
config: config)
|
31184
31246
|
context[:gem_name] = 'aws-sdk-rds'
|
31185
|
-
context[:gem_version] = '1.
|
31247
|
+
context[:gem_version] = '1.232.0'
|
31186
31248
|
Seahorse::Client::Request.new(handlers, context)
|
31187
31249
|
end
|
31188
31250
|
|
@@ -237,7 +237,7 @@ module Aws::RDS
|
|
237
237
|
end
|
238
238
|
|
239
239
|
# The license model information for this DB instance. This setting
|
240
|
-
# doesn't apply to RDS Custom DB instances.
|
240
|
+
# doesn't apply to Amazon Aurora or RDS Custom DB instances.
|
241
241
|
# @return [String]
|
242
242
|
def license_model
|
243
243
|
data[:license_model]
|
@@ -1609,12 +1609,22 @@ module Aws::RDS
|
|
1609
1609
|
# @option options [String] :license_model
|
1610
1610
|
# The license model information for this DB instance.
|
1611
1611
|
#
|
1612
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1613
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
1614
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
1615
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
1616
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
1617
|
+
#
|
1618
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
1619
|
+
#
|
1620
|
+
# </note>
|
1621
|
+
#
|
1612
1622
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
1613
1623
|
# instances.
|
1614
1624
|
#
|
1615
1625
|
# Valid Values:
|
1616
1626
|
#
|
1617
|
-
# * RDS for Db2 - `bring-your-own-license`
|
1627
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
1618
1628
|
#
|
1619
1629
|
# * RDS for MariaDB - `general-public-license`
|
1620
1630
|
#
|
@@ -1625,6 +1635,10 @@ module Aws::RDS
|
|
1625
1635
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
1626
1636
|
#
|
1627
1637
|
# * RDS for PostgreSQL - `postgresql-license`
|
1638
|
+
#
|
1639
|
+
#
|
1640
|
+
#
|
1641
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
1628
1642
|
# @option options [Integer] :iops
|
1629
1643
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1630
1644
|
# initially allocate for the DB instance. For information about valid
|
@@ -4329,12 +4343,36 @@ module Aws::RDS
|
|
4329
4343
|
# @option options [String] :license_model
|
4330
4344
|
# The license model information for the restored DB instance.
|
4331
4345
|
#
|
4332
|
-
#
|
4346
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4347
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
4348
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
4349
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
4350
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
4351
|
+
#
|
4352
|
+
# </note>
|
4333
4353
|
#
|
4334
|
-
#
|
4335
|
-
#
|
4354
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
4355
|
+
# instances.
|
4356
|
+
#
|
4357
|
+
# Valid Values:
|
4358
|
+
#
|
4359
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
4360
|
+
#
|
4361
|
+
# * RDS for MariaDB - `general-public-license`
|
4362
|
+
#
|
4363
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
4364
|
+
#
|
4365
|
+
# * RDS for MySQL - `general-public-license`
|
4366
|
+
#
|
4367
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
4368
|
+
#
|
4369
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
4336
4370
|
#
|
4337
4371
|
# Default: Same as the source.
|
4372
|
+
#
|
4373
|
+
#
|
4374
|
+
#
|
4375
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
4338
4376
|
# @option options [String] :db_name
|
4339
4377
|
# The database name for the restored DB instance.
|
4340
4378
|
#
|
@@ -791,12 +791,36 @@ module Aws::RDS
|
|
791
791
|
# @option options [String] :license_model
|
792
792
|
# License model information for the restored DB instance.
|
793
793
|
#
|
794
|
-
#
|
794
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
795
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
796
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
797
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
798
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
799
|
+
#
|
800
|
+
# </note>
|
801
|
+
#
|
802
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
803
|
+
# instances.
|
804
|
+
#
|
805
|
+
# Valid Values:
|
806
|
+
#
|
807
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
808
|
+
#
|
809
|
+
# * RDS for MariaDB - `general-public-license`
|
810
|
+
#
|
811
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
812
|
+
#
|
813
|
+
# * RDS for MySQL - `general-public-license`
|
814
|
+
#
|
815
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
816
|
+
#
|
817
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
818
|
+
#
|
819
|
+
# Default: Same as the source.
|
820
|
+
#
|
795
821
|
#
|
796
|
-
# Default: Same as source.
|
797
822
|
#
|
798
|
-
#
|
799
|
-
# `general-public-license`
|
823
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
800
824
|
# @option options [String] :db_name
|
801
825
|
# The name of the database for the restored DB instance.
|
802
826
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1744,12 +1744,22 @@ module Aws::RDS
|
|
1744
1744
|
# @option options [String] :license_model
|
1745
1745
|
# The license model information for this DB instance.
|
1746
1746
|
#
|
1747
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1748
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group.
|
1749
|
+
# The Db2 license through Amazon Web Services Marketplace model requires
|
1750
|
+
# an Amazon Web Services Marketplace subscription. For more information,
|
1751
|
+
# see [RDS for Db2 licensing options][1] in the *Amazon RDS User Guide*.
|
1752
|
+
#
|
1753
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
1754
|
+
#
|
1755
|
+
# </note>
|
1756
|
+
#
|
1747
1757
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
1748
1758
|
# instances.
|
1749
1759
|
#
|
1750
1760
|
# Valid Values:
|
1751
1761
|
#
|
1752
|
-
# * RDS for Db2 - `bring-your-own-license`
|
1762
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
1753
1763
|
#
|
1754
1764
|
# * RDS for MariaDB - `general-public-license`
|
1755
1765
|
#
|
@@ -1760,6 +1770,10 @@ module Aws::RDS
|
|
1760
1770
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
1761
1771
|
#
|
1762
1772
|
# * RDS for PostgreSQL - `postgresql-license`
|
1773
|
+
#
|
1774
|
+
#
|
1775
|
+
#
|
1776
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
1763
1777
|
# @option options [Integer] :iops
|
1764
1778
|
# The amount of Provisioned IOPS (input/output operations per second) to
|
1765
1779
|
# initially allocate for the DB instance. For information about valid
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3919,12 +3919,23 @@ module Aws::RDS
|
|
3919
3919
|
# @!attribute [rw] license_model
|
3920
3920
|
# The license model information for this DB instance.
|
3921
3921
|
#
|
3922
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
3923
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
3924
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
3925
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
3926
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
3927
|
+
# RDS User Guide*.
|
3928
|
+
#
|
3929
|
+
# The default for RDS for Db2 is `bring-your-own-license`.
|
3930
|
+
#
|
3931
|
+
# </note>
|
3932
|
+
#
|
3922
3933
|
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
3923
3934
|
# instances.
|
3924
3935
|
#
|
3925
3936
|
# Valid Values:
|
3926
3937
|
#
|
3927
|
-
# * RDS for Db2 - `bring-your-own-license`
|
3938
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
3928
3939
|
#
|
3929
3940
|
# * RDS for MariaDB - `general-public-license`
|
3930
3941
|
#
|
@@ -3935,6 +3946,10 @@ module Aws::RDS
|
|
3935
3946
|
# * RDS for Oracle - `bring-your-own-license | license-included`
|
3936
3947
|
#
|
3937
3948
|
# * RDS for PostgreSQL - `postgresql-license`
|
3949
|
+
#
|
3950
|
+
#
|
3951
|
+
#
|
3952
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
3938
3953
|
# @return [String]
|
3939
3954
|
#
|
3940
3955
|
# @!attribute [rw] iops
|
@@ -8651,7 +8666,7 @@ module Aws::RDS
|
|
8651
8666
|
#
|
8652
8667
|
# @!attribute [rw] license_model
|
8653
8668
|
# The license model information for this DB instance. This setting
|
8654
|
-
# doesn't apply to RDS Custom DB instances.
|
8669
|
+
# doesn't apply to Amazon Aurora or RDS Custom DB instances.
|
8655
8670
|
# @return [String]
|
8656
8671
|
#
|
8657
8672
|
# @!attribute [rw] iops
|
@@ -24007,12 +24022,37 @@ module Aws::RDS
|
|
24007
24022
|
# @!attribute [rw] license_model
|
24008
24023
|
# License model information for the restored DB instance.
|
24009
24024
|
#
|
24010
|
-
#
|
24025
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
24026
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
24027
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
24028
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
24029
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
24030
|
+
# RDS User Guide*.
|
24011
24031
|
#
|
24012
|
-
#
|
24032
|
+
# </note>
|
24013
24033
|
#
|
24014
|
-
#
|
24015
|
-
#
|
24034
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
24035
|
+
# instances.
|
24036
|
+
#
|
24037
|
+
# Valid Values:
|
24038
|
+
#
|
24039
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
24040
|
+
#
|
24041
|
+
# * RDS for MariaDB - `general-public-license`
|
24042
|
+
#
|
24043
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
24044
|
+
#
|
24045
|
+
# * RDS for MySQL - `general-public-license`
|
24046
|
+
#
|
24047
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
24048
|
+
#
|
24049
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
24050
|
+
#
|
24051
|
+
# Default: Same as the source.
|
24052
|
+
#
|
24053
|
+
#
|
24054
|
+
#
|
24055
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
24016
24056
|
# @return [String]
|
24017
24057
|
#
|
24018
24058
|
# @!attribute [rw] db_name
|
@@ -25377,12 +25417,37 @@ module Aws::RDS
|
|
25377
25417
|
# @!attribute [rw] license_model
|
25378
25418
|
# The license model information for the restored DB instance.
|
25379
25419
|
#
|
25380
|
-
#
|
25420
|
+
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
25421
|
+
# Bring Your Own License (BYOL) model requires a custom parameter
|
25422
|
+
# group. The Db2 license through Amazon Web Services Marketplace model
|
25423
|
+
# requires an Amazon Web Services Marketplace subscription. For more
|
25424
|
+
# information, see [RDS for Db2 licensing options][1] in the *Amazon
|
25425
|
+
# RDS User Guide*.
|
25381
25426
|
#
|
25382
|
-
#
|
25383
|
-
#
|
25427
|
+
# </note>
|
25428
|
+
#
|
25429
|
+
# This setting doesn't apply to Amazon Aurora or RDS Custom DB
|
25430
|
+
# instances.
|
25431
|
+
#
|
25432
|
+
# Valid Values:
|
25433
|
+
#
|
25434
|
+
# * RDS for Db2 - `bring-your-own-license | marketplace-license`
|
25435
|
+
#
|
25436
|
+
# * RDS for MariaDB - `general-public-license`
|
25437
|
+
#
|
25438
|
+
# * RDS for Microsoft SQL Server - `license-included`
|
25439
|
+
#
|
25440
|
+
# * RDS for MySQL - `general-public-license`
|
25441
|
+
#
|
25442
|
+
# * RDS for Oracle - `bring-your-own-license | license-included`
|
25443
|
+
#
|
25444
|
+
# * RDS for PostgreSQL - `postgresql-license`
|
25384
25445
|
#
|
25385
25446
|
# Default: Same as the source.
|
25447
|
+
#
|
25448
|
+
#
|
25449
|
+
#
|
25450
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/db2-licensing.html
|
25386
25451
|
# @return [String]
|
25387
25452
|
#
|
25388
25453
|
# @!attribute [rw] db_name
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.232.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: 2024-05-
|
11
|
+
date: 2024-05-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|