aws-sdk-rds 1.163.0 → 1.164.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 +22 -2
- data/lib/aws-sdk-rds/client_api.rb +5 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +7 -1
- data/lib/aws-sdk-rds/option_group.rb +21 -1
- data/lib/aws-sdk-rds/option_group_option.rb +7 -0
- data/lib/aws-sdk-rds/types.rb +36 -4
- 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: e272d46d80daf068ab310c9de8e4f812c67fcf2ae6c6c342e12d919b0aa34455
|
4
|
+
data.tar.gz: 78be15dc4f7b784a2466922aa22455fa153ca12dc0b9af905e55f49622534f83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b857fb18e8e17e6d103c2a2545fd6bcaa8ead898e89dd08a1f2d3f5334fec50d116eea8ab16ba4c01769f30e2f6cebdb862916a5efb2e5b6bab3310d8435eb58
|
7
|
+
data.tar.gz: dcfe5b7711afa64a2bff09a5526ab76892f9e19d71bf8866eebb1ec3d82e4ce6e94816d5ceb94e45059aae95071834f6a39db5a21c62d8f3c4f0aefb4a002dc0
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.164.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1493,7 +1493,7 @@ module Aws::RDS
|
|
1493
1493
|
#
|
1494
1494
|
# @option params [Boolean] :copy_tags
|
1495
1495
|
# A value that indicates whether to copy all tags from the source DB
|
1496
|
-
# snapshot to the target DB snapshot. By default, tags
|
1496
|
+
# snapshot to the target DB snapshot. By default, tags aren't copied.
|
1497
1497
|
#
|
1498
1498
|
# @option params [String] :pre_signed_url
|
1499
1499
|
# When you are copying a snapshot from one Amazon Web Services GovCloud
|
@@ -1584,6 +1584,12 @@ module Aws::RDS
|
|
1584
1584
|
#
|
1585
1585
|
# Example: `rds-caz-aiqhTgQv`.
|
1586
1586
|
#
|
1587
|
+
# @option params [Boolean] :copy_option_group
|
1588
|
+
# A value that indicates whether to copy the DB option group associated
|
1589
|
+
# with the source DB snapshot to the target Amazon Web Services account
|
1590
|
+
# and associate with the target DB snapshot. The associated option group
|
1591
|
+
# can be copied only with cross-account snapshot copy calls.
|
1592
|
+
#
|
1587
1593
|
# @option params [String] :source_region
|
1588
1594
|
# The source region of the snapshot. This is only needed when the
|
1589
1595
|
# shapshot is encrypted and in a different region.
|
@@ -1624,6 +1630,7 @@ module Aws::RDS
|
|
1624
1630
|
# pre_signed_url: "String",
|
1625
1631
|
# option_group_name: "String",
|
1626
1632
|
# target_custom_availability_zone: "String",
|
1633
|
+
# copy_option_group: false,
|
1627
1634
|
# source_region: "String",
|
1628
1635
|
# })
|
1629
1636
|
#
|
@@ -1780,6 +1787,9 @@ module Aws::RDS
|
|
1780
1787
|
# resp.option_group.allows_vpc_and_non_vpc_instance_memberships #=> Boolean
|
1781
1788
|
# resp.option_group.vpc_id #=> String
|
1782
1789
|
# resp.option_group.option_group_arn #=> String
|
1790
|
+
# resp.option_group.source_option_group #=> String
|
1791
|
+
# resp.option_group.source_account_id #=> String
|
1792
|
+
# resp.option_group.copy_timestamp #=> Time
|
1783
1793
|
#
|
1784
1794
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyOptionGroup AWS API Documentation
|
1785
1795
|
#
|
@@ -6758,6 +6768,9 @@ module Aws::RDS
|
|
6758
6768
|
# resp.option_group.allows_vpc_and_non_vpc_instance_memberships #=> Boolean
|
6759
6769
|
# resp.option_group.vpc_id #=> String
|
6760
6770
|
# resp.option_group.option_group_arn #=> String
|
6771
|
+
# resp.option_group.source_option_group #=> String
|
6772
|
+
# resp.option_group.source_account_id #=> String
|
6773
|
+
# resp.option_group.copy_timestamp #=> Time
|
6761
6774
|
#
|
6762
6775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateOptionGroup AWS API Documentation
|
6763
6776
|
#
|
@@ -12019,6 +12032,7 @@ module Aws::RDS
|
|
12019
12032
|
# resp.option_group_options[0].option_group_option_versions #=> Array
|
12020
12033
|
# resp.option_group_options[0].option_group_option_versions[0].version #=> String
|
12021
12034
|
# resp.option_group_options[0].option_group_option_versions[0].is_default #=> Boolean
|
12035
|
+
# resp.option_group_options[0].copyable_cross_account #=> Boolean
|
12022
12036
|
# resp.marker #=> String
|
12023
12037
|
#
|
12024
12038
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOptionGroupOptions AWS API Documentation
|
@@ -12158,6 +12172,9 @@ module Aws::RDS
|
|
12158
12172
|
# resp.option_groups_list[0].allows_vpc_and_non_vpc_instance_memberships #=> Boolean
|
12159
12173
|
# resp.option_groups_list[0].vpc_id #=> String
|
12160
12174
|
# resp.option_groups_list[0].option_group_arn #=> String
|
12175
|
+
# resp.option_groups_list[0].source_option_group #=> String
|
12176
|
+
# resp.option_groups_list[0].source_account_id #=> String
|
12177
|
+
# resp.option_groups_list[0].copy_timestamp #=> Time
|
12161
12178
|
# resp.marker #=> String
|
12162
12179
|
#
|
12163
12180
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOptionGroups AWS API Documentation
|
@@ -16855,6 +16872,9 @@ module Aws::RDS
|
|
16855
16872
|
# resp.option_group.allows_vpc_and_non_vpc_instance_memberships #=> Boolean
|
16856
16873
|
# resp.option_group.vpc_id #=> String
|
16857
16874
|
# resp.option_group.option_group_arn #=> String
|
16875
|
+
# resp.option_group.source_option_group #=> String
|
16876
|
+
# resp.option_group.source_account_id #=> String
|
16877
|
+
# resp.option_group.copy_timestamp #=> Time
|
16858
16878
|
#
|
16859
16879
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyOptionGroup AWS API Documentation
|
16860
16880
|
#
|
@@ -23640,7 +23660,7 @@ module Aws::RDS
|
|
23640
23660
|
params: params,
|
23641
23661
|
config: config)
|
23642
23662
|
context[:gem_name] = 'aws-sdk-rds'
|
23643
|
-
context[:gem_version] = '1.
|
23663
|
+
context[:gem_version] = '1.164.0'
|
23644
23664
|
Seahorse::Client::Request.new(handlers, context)
|
23645
23665
|
end
|
23646
23666
|
|
@@ -838,6 +838,7 @@ module Aws::RDS
|
|
838
838
|
CopyDBSnapshotMessage.add_member(:pre_signed_url, Shapes::ShapeRef.new(shape: String, location_name: "PreSignedUrl"))
|
839
839
|
CopyDBSnapshotMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
840
840
|
CopyDBSnapshotMessage.add_member(:target_custom_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "TargetCustomAvailabilityZone"))
|
841
|
+
CopyDBSnapshotMessage.add_member(:copy_option_group, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyOptionGroup"))
|
841
842
|
CopyDBSnapshotMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
842
843
|
CopyDBSnapshotMessage.struct_class = Types::CopyDBSnapshotMessage
|
843
844
|
|
@@ -2738,6 +2739,9 @@ module Aws::RDS
|
|
2738
2739
|
OptionGroup.add_member(:allows_vpc_and_non_vpc_instance_memberships, Shapes::ShapeRef.new(shape: Boolean, location_name: "AllowsVpcAndNonVpcInstanceMemberships"))
|
2739
2740
|
OptionGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
2740
2741
|
OptionGroup.add_member(:option_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupArn"))
|
2742
|
+
OptionGroup.add_member(:source_option_group, Shapes::ShapeRef.new(shape: String, location_name: "SourceOptionGroup"))
|
2743
|
+
OptionGroup.add_member(:source_account_id, Shapes::ShapeRef.new(shape: String, location_name: "SourceAccountId"))
|
2744
|
+
OptionGroup.add_member(:copy_timestamp, Shapes::ShapeRef.new(shape: TStamp, location_name: "CopyTimestamp"))
|
2741
2745
|
OptionGroup.struct_class = Types::OptionGroup
|
2742
2746
|
|
2743
2747
|
OptionGroupAlreadyExistsFault.struct_class = Types::OptionGroupAlreadyExistsFault
|
@@ -2766,6 +2770,7 @@ module Aws::RDS
|
|
2766
2770
|
OptionGroupOption.add_member(:supports_option_version_downgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsOptionVersionDowngrade"))
|
2767
2771
|
OptionGroupOption.add_member(:option_group_option_settings, Shapes::ShapeRef.new(shape: OptionGroupOptionSettingsList, location_name: "OptionGroupOptionSettings"))
|
2768
2772
|
OptionGroupOption.add_member(:option_group_option_versions, Shapes::ShapeRef.new(shape: OptionGroupOptionVersionsList, location_name: "OptionGroupOptionVersions"))
|
2773
|
+
OptionGroupOption.add_member(:copyable_cross_account, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "CopyableCrossAccount"))
|
2769
2774
|
OptionGroupOption.struct_class = Types::OptionGroupOption
|
2770
2775
|
|
2771
2776
|
OptionGroupOptionSetting.add_member(:setting_name, Shapes::ShapeRef.new(shape: String, location_name: "SettingName"))
|
@@ -447,6 +447,7 @@ module Aws::RDS
|
|
447
447
|
# pre_signed_url: "String",
|
448
448
|
# option_group_name: "String",
|
449
449
|
# target_custom_availability_zone: "String",
|
450
|
+
# copy_option_group: false,
|
450
451
|
# source_region: "String",
|
451
452
|
# })
|
452
453
|
# @param [Hash] options ({})
|
@@ -497,7 +498,7 @@ module Aws::RDS
|
|
497
498
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
498
499
|
# @option options [Boolean] :copy_tags
|
499
500
|
# A value that indicates whether to copy all tags from the source DB
|
500
|
-
# snapshot to the target DB snapshot. By default, tags
|
501
|
+
# snapshot to the target DB snapshot. By default, tags aren't copied.
|
501
502
|
# @option options [String] :pre_signed_url
|
502
503
|
# When you are copying a snapshot from one Amazon Web Services GovCloud
|
503
504
|
# (US) Region to another, the URL that contains a Signature Version 4
|
@@ -584,6 +585,11 @@ module Aws::RDS
|
|
584
585
|
# CAZ.
|
585
586
|
#
|
586
587
|
# Example: `rds-caz-aiqhTgQv`.
|
588
|
+
# @option options [Boolean] :copy_option_group
|
589
|
+
# A value that indicates whether to copy the DB option group associated
|
590
|
+
# with the source DB snapshot to the target Amazon Web Services account
|
591
|
+
# and associate with the target DB snapshot. The associated option group
|
592
|
+
# can be copied only with cross-account snapshot copy calls.
|
587
593
|
# @option options [String] :source_region
|
588
594
|
# The source region of the snapshot. This is only needed when the
|
589
595
|
# shapshot is encrypted and in a different region.
|
@@ -79,12 +79,32 @@ module Aws::RDS
|
|
79
79
|
data[:vpc_id]
|
80
80
|
end
|
81
81
|
|
82
|
-
#
|
82
|
+
# Specifies the Amazon Resource Name (ARN) for the option group.
|
83
83
|
# @return [String]
|
84
84
|
def option_group_arn
|
85
85
|
data[:option_group_arn]
|
86
86
|
end
|
87
87
|
|
88
|
+
# Specifies the name of the option group from which this option group is
|
89
|
+
# copied.
|
90
|
+
# @return [String]
|
91
|
+
def source_option_group
|
92
|
+
data[:source_option_group]
|
93
|
+
end
|
94
|
+
|
95
|
+
# Specifies the Amazon Web Services account ID for the option group from
|
96
|
+
# which this option group is copied.
|
97
|
+
# @return [String]
|
98
|
+
def source_account_id
|
99
|
+
data[:source_account_id]
|
100
|
+
end
|
101
|
+
|
102
|
+
# Indicates when the option group was copied.
|
103
|
+
# @return [Time]
|
104
|
+
def copy_timestamp
|
105
|
+
data[:copy_timestamp]
|
106
|
+
end
|
107
|
+
|
88
108
|
# @!endgroup
|
89
109
|
|
90
110
|
# @return [Client]
|
@@ -137,6 +137,13 @@ module Aws::RDS
|
|
137
137
|
data[:option_group_option_versions]
|
138
138
|
end
|
139
139
|
|
140
|
+
# Specifies whether the option can be copied across Amazon Web Services
|
141
|
+
# accounts.
|
142
|
+
# @return [Boolean]
|
143
|
+
def copyable_cross_account
|
144
|
+
data[:copyable_cross_account]
|
145
|
+
end
|
146
|
+
|
140
147
|
# @!endgroup
|
141
148
|
|
142
149
|
# @return [Client]
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1443,7 +1443,7 @@ module Aws::RDS
|
|
1443
1443
|
#
|
1444
1444
|
# @!attribute [rw] copy_tags
|
1445
1445
|
# A value that indicates whether to copy all tags from the source DB
|
1446
|
-
# snapshot to the target DB snapshot. By default, tags
|
1446
|
+
# snapshot to the target DB snapshot. By default, tags aren't copied.
|
1447
1447
|
# @return [Boolean]
|
1448
1448
|
#
|
1449
1449
|
# @!attribute [rw] pre_signed_url
|
@@ -1539,6 +1539,14 @@ module Aws::RDS
|
|
1539
1539
|
# Example: `rds-caz-aiqhTgQv`.
|
1540
1540
|
# @return [String]
|
1541
1541
|
#
|
1542
|
+
# @!attribute [rw] copy_option_group
|
1543
|
+
# A value that indicates whether to copy the DB option group
|
1544
|
+
# associated with the source DB snapshot to the target Amazon Web
|
1545
|
+
# Services account and associate with the target DB snapshot. The
|
1546
|
+
# associated option group can be copied only with cross-account
|
1547
|
+
# snapshot copy calls.
|
1548
|
+
# @return [Boolean]
|
1549
|
+
#
|
1542
1550
|
# @!attribute [rw] source_region
|
1543
1551
|
# The source region of the snapshot. This is only needed when the
|
1544
1552
|
# shapshot is encrypted and in a different region.
|
@@ -1555,6 +1563,7 @@ module Aws::RDS
|
|
1555
1563
|
:pre_signed_url,
|
1556
1564
|
:option_group_name,
|
1557
1565
|
:target_custom_availability_zone,
|
1566
|
+
:copy_option_group,
|
1558
1567
|
:source_region)
|
1559
1568
|
SENSITIVE = []
|
1560
1569
|
include Aws::Structure
|
@@ -16418,9 +16427,23 @@ module Aws::RDS
|
|
16418
16427
|
# @return [String]
|
16419
16428
|
#
|
16420
16429
|
# @!attribute [rw] option_group_arn
|
16421
|
-
#
|
16430
|
+
# Specifies the Amazon Resource Name (ARN) for the option group.
|
16431
|
+
# @return [String]
|
16432
|
+
#
|
16433
|
+
# @!attribute [rw] source_option_group
|
16434
|
+
# Specifies the name of the option group from which this option group
|
16435
|
+
# is copied.
|
16436
|
+
# @return [String]
|
16437
|
+
#
|
16438
|
+
# @!attribute [rw] source_account_id
|
16439
|
+
# Specifies the Amazon Web Services account ID for the option group
|
16440
|
+
# from which this option group is copied.
|
16422
16441
|
# @return [String]
|
16423
16442
|
#
|
16443
|
+
# @!attribute [rw] copy_timestamp
|
16444
|
+
# Indicates when the option group was copied.
|
16445
|
+
# @return [Time]
|
16446
|
+
#
|
16424
16447
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionGroup AWS API Documentation
|
16425
16448
|
#
|
16426
16449
|
class OptionGroup < Struct.new(
|
@@ -16431,7 +16454,10 @@ module Aws::RDS
|
|
16431
16454
|
:options,
|
16432
16455
|
:allows_vpc_and_non_vpc_instance_memberships,
|
16433
16456
|
:vpc_id,
|
16434
|
-
:option_group_arn
|
16457
|
+
:option_group_arn,
|
16458
|
+
:source_option_group,
|
16459
|
+
:source_account_id,
|
16460
|
+
:copy_timestamp)
|
16435
16461
|
SENSITIVE = []
|
16436
16462
|
include Aws::Structure
|
16437
16463
|
end
|
@@ -16550,6 +16576,11 @@ module Aws::RDS
|
|
16550
16576
|
# The versions that are available for the option.
|
16551
16577
|
# @return [Array<Types::OptionVersion>]
|
16552
16578
|
#
|
16579
|
+
# @!attribute [rw] copyable_cross_account
|
16580
|
+
# Specifies whether the option can be copied across Amazon Web
|
16581
|
+
# Services accounts.
|
16582
|
+
# @return [Boolean]
|
16583
|
+
#
|
16553
16584
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/OptionGroupOption AWS API Documentation
|
16554
16585
|
#
|
16555
16586
|
class OptionGroupOption < Struct.new(
|
@@ -16568,7 +16599,8 @@ module Aws::RDS
|
|
16568
16599
|
:vpc_only,
|
16569
16600
|
:supports_option_version_downgrade,
|
16570
16601
|
:option_group_option_settings,
|
16571
|
-
:option_group_option_versions
|
16602
|
+
:option_group_option_versions,
|
16603
|
+
:copyable_cross_account)
|
16572
16604
|
SENSITIVE = []
|
16573
16605
|
include Aws::Structure
|
16574
16606
|
end
|
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.164.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: 2022-12-
|
11
|
+
date: 2022-12-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|