aws-sdk-rds 1.113.0 → 1.118.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 +702 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-rds.rb +2 -2
- data/lib/aws-sdk-rds/account_quota.rb +1 -1
- data/lib/aws-sdk-rds/certificate.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +336 -38
- data/lib/aws-sdk-rds/client_api.rb +139 -1
- data/lib/aws-sdk-rds/db_cluster.rb +8 -10
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +11 -3
- data/lib/aws-sdk-rds/db_engine.rb +1 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +35 -14
- data/lib/aws-sdk-rds/db_log_file.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -1
- data/lib/aws-sdk-rds/db_security_group.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +1 -1
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -1
- data/lib/aws-sdk-rds/errors.rb +45 -1
- data/lib/aws-sdk-rds/event.rb +1 -1
- data/lib/aws-sdk-rds/event_category_map.rb +1 -1
- data/lib/aws-sdk-rds/event_subscription.rb +2 -3
- data/lib/aws-sdk-rds/option_group.rb +1 -1
- data/lib/aws-sdk-rds/option_group_option.rb +1 -1
- data/lib/aws-sdk-rds/parameter.rb +1 -1
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -1
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +9 -16
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +458 -42
- data/lib/aws-sdk-rds/waiters.rb +1 -1
- metadata +8 -5
data/LICENSE.txt
ADDED
@@ -0,0 +1,202 @@
|
|
1
|
+
|
2
|
+
Apache License
|
3
|
+
Version 2.0, January 2004
|
4
|
+
http://www.apache.org/licenses/
|
5
|
+
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
7
|
+
|
8
|
+
1. Definitions.
|
9
|
+
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
12
|
+
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
14
|
+
the copyright owner that is granting the License.
|
15
|
+
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
17
|
+
other entities that control, are controlled by, or are under common
|
18
|
+
control with that entity. For the purposes of this definition,
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
20
|
+
direction or management of such entity, whether by contract or
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
23
|
+
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
25
|
+
exercising permissions granted by this License.
|
26
|
+
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
28
|
+
including but not limited to software source code, documentation
|
29
|
+
source, and configuration files.
|
30
|
+
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
32
|
+
transformation or translation of a Source form, including but
|
33
|
+
not limited to compiled object code, generated documentation,
|
34
|
+
and conversions to other media types.
|
35
|
+
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
37
|
+
Object form, made available under the License, as indicated by a
|
38
|
+
copyright notice that is included in or attached to the work
|
39
|
+
(an example is provided in the Appendix below).
|
40
|
+
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
47
|
+
the Work and Derivative Works thereof.
|
48
|
+
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
50
|
+
the original version of the Work and any modifications or additions
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
62
|
+
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
65
|
+
subsequently incorporated within the Work.
|
66
|
+
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
73
|
+
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
79
|
+
where such license applies only to those patent claims licensable
|
80
|
+
by such Contributor that are necessarily infringed by their
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
83
|
+
institute patent litigation against any entity (including a
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
86
|
+
or contributory patent infringement, then any patent licenses
|
87
|
+
granted to You under this License for that Work shall terminate
|
88
|
+
as of the date such litigation is filed.
|
89
|
+
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
92
|
+
modifications, and in Source or Object form, provided that You
|
93
|
+
meet the following conditions:
|
94
|
+
|
95
|
+
(a) You must give any other recipients of the Work or
|
96
|
+
Derivative Works a copy of this License; and
|
97
|
+
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
99
|
+
stating that You changed the files; and
|
100
|
+
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
103
|
+
attribution notices from the Source form of the Work,
|
104
|
+
excluding those notices that do not pertain to any part of
|
105
|
+
the Derivative Works; and
|
106
|
+
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
109
|
+
include a readable copy of the attribution notices contained
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
112
|
+
of the following places: within a NOTICE text file distributed
|
113
|
+
as part of the Derivative Works; within the Source form or
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
115
|
+
within a display generated by the Derivative Works, if and
|
116
|
+
wherever such third-party notices normally appear. The contents
|
117
|
+
of the NOTICE file are for informational purposes only and
|
118
|
+
do not modify the License. You may add Your own attribution
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
121
|
+
that such additional attribution notices cannot be construed
|
122
|
+
as modifying the License.
|
123
|
+
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
125
|
+
may provide additional or different license terms and conditions
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
129
|
+
the conditions stated in this License.
|
130
|
+
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
134
|
+
this License, without any additional terms or conditions.
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
136
|
+
the terms of any separate license agreement you may have executed
|
137
|
+
with Licensor regarding such Contributions.
|
138
|
+
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
141
|
+
except as required for reasonable and customary use in describing the
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
143
|
+
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
153
|
+
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
159
|
+
incidental, or consequential damages of any character arising as a
|
160
|
+
result of this License or out of the use or inability to use the
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
163
|
+
other commercial damages or losses), even if such Contributor
|
164
|
+
has been advised of the possibility of such damages.
|
165
|
+
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
169
|
+
or other liability obligations and/or rights consistent with this
|
170
|
+
License. However, in accepting such obligations, You may act only
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
175
|
+
of your accepting any such warranty or additional liability.
|
176
|
+
|
177
|
+
END OF TERMS AND CONDITIONS
|
178
|
+
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
180
|
+
|
181
|
+
To apply the Apache License to your work, attach the following
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
183
|
+
replaced with your own identifying information. (Don't include
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
185
|
+
comment syntax for the file format. We also recommend that a
|
186
|
+
file or class name and description of purpose be included on the
|
187
|
+
same "printed page" as the copyright notice for easier
|
188
|
+
identification within third-party archives.
|
189
|
+
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
191
|
+
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
193
|
+
you may not use this file except in compliance with the License.
|
194
|
+
You may obtain a copy of the License at
|
195
|
+
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
197
|
+
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
201
|
+
See the License for the specific language governing permissions and
|
202
|
+
limitations under the License.
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.118.0
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -74,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
|
|
74
74
|
# @!group service
|
75
75
|
module Aws::RDS
|
76
76
|
|
77
|
-
GEM_VERSION = '1.
|
77
|
+
GEM_VERSION = '1.118.0'
|
78
78
|
|
79
79
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
# WARNING ABOUT GENERATED CODE
|
4
4
|
#
|
5
5
|
# This file is generated. See the contributing guide for more information:
|
6
|
-
# https://github.com/aws/aws-sdk-ruby/blob/
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
@@ -1260,6 +1260,7 @@ module Aws::RDS
|
|
1260
1260
|
# resp.db_cluster_snapshot.db_cluster_identifier #=> String
|
1261
1261
|
# resp.db_cluster_snapshot.snapshot_create_time #=> Time
|
1262
1262
|
# resp.db_cluster_snapshot.engine #=> String
|
1263
|
+
# resp.db_cluster_snapshot.engine_mode #=> String
|
1263
1264
|
# resp.db_cluster_snapshot.allocated_storage #=> Integer
|
1264
1265
|
# resp.db_cluster_snapshot.status #=> String
|
1265
1266
|
# resp.db_cluster_snapshot.port #=> Integer
|
@@ -1980,9 +1981,8 @@ module Aws::RDS
|
|
1980
1981
|
# parameter.
|
1981
1982
|
#
|
1982
1983
|
# The default is a 30-minute window selected at random from an 8-hour
|
1983
|
-
# block of time for each AWS Region. To
|
1984
|
-
# see [
|
1985
|
-
# *Amazon Aurora User Guide.*
|
1984
|
+
# block of time for each AWS Region. To view the time blocks available,
|
1985
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
1986
1986
|
#
|
1987
1987
|
# Constraints:
|
1988
1988
|
#
|
@@ -1996,7 +1996,7 @@ module Aws::RDS
|
|
1996
1996
|
#
|
1997
1997
|
#
|
1998
1998
|
#
|
1999
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
1999
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
2000
2000
|
#
|
2001
2001
|
# @option params [String] :preferred_maintenance_window
|
2002
2002
|
# The weekly time range during which system maintenance can occur, in
|
@@ -2141,7 +2141,7 @@ module Aws::RDS
|
|
2141
2141
|
#
|
2142
2142
|
# **Aurora PostgreSQL**
|
2143
2143
|
#
|
2144
|
-
# Possible
|
2144
|
+
# Possible value is `postgresql`.
|
2145
2145
|
#
|
2146
2146
|
#
|
2147
2147
|
#
|
@@ -2725,6 +2725,7 @@ module Aws::RDS
|
|
2725
2725
|
# resp.db_cluster_snapshot.db_cluster_identifier #=> String
|
2726
2726
|
# resp.db_cluster_snapshot.snapshot_create_time #=> Time
|
2727
2727
|
# resp.db_cluster_snapshot.engine #=> String
|
2728
|
+
# resp.db_cluster_snapshot.engine_mode #=> String
|
2728
2729
|
# resp.db_cluster_snapshot.allocated_storage #=> Integer
|
2729
2730
|
# resp.db_cluster_snapshot.status #=> String
|
2730
2731
|
# resp.db_cluster_snapshot.port #=> Integer
|
@@ -3198,19 +3199,15 @@ module Aws::RDS
|
|
3198
3199
|
# @option params [String] :preferred_backup_window
|
3199
3200
|
# The daily time range during which automated backups are created if
|
3200
3201
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
3201
|
-
# parameter.
|
3202
|
-
#
|
3202
|
+
# parameter. The default is a 30-minute window selected at random from
|
3203
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
3204
|
+
# [Backup window][1] in the *Amazon RDS User Guide*.
|
3203
3205
|
#
|
3204
3206
|
# **Amazon Aurora**
|
3205
3207
|
#
|
3206
3208
|
# Not applicable. The daily time range for creating automated backups is
|
3207
3209
|
# managed by the DB cluster.
|
3208
3210
|
#
|
3209
|
-
# The default is a 30-minute window selected at random from an 8-hour
|
3210
|
-
# block of time for each AWS Region. To see the time blocks available,
|
3211
|
-
# see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
|
3212
|
-
# the *Amazon RDS User Guide*.
|
3213
|
-
#
|
3214
3211
|
# Constraints:
|
3215
3212
|
#
|
3216
3213
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
@@ -3224,7 +3221,6 @@ module Aws::RDS
|
|
3224
3221
|
#
|
3225
3222
|
#
|
3226
3223
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
3227
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
3228
3224
|
#
|
3229
3225
|
# @option params [Integer] :port
|
3230
3226
|
# The port number on which the database accepts connections.
|
@@ -3872,6 +3868,7 @@ module Aws::RDS
|
|
3872
3868
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
3873
3869
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
3874
3870
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
3871
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
3875
3872
|
#
|
3876
3873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
3877
3874
|
#
|
@@ -4529,6 +4526,7 @@ module Aws::RDS
|
|
4529
4526
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
4530
4527
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
4531
4528
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
4529
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
4532
4530
|
#
|
4533
4531
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
4534
4532
|
#
|
@@ -4744,6 +4742,7 @@ module Aws::RDS
|
|
4744
4742
|
# resp.db_proxy.db_proxy_arn #=> String
|
4745
4743
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
4746
4744
|
# resp.db_proxy.engine_family #=> String
|
4745
|
+
# resp.db_proxy.vpc_id #=> String
|
4747
4746
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
4748
4747
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
4749
4748
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -4771,6 +4770,86 @@ module Aws::RDS
|
|
4771
4770
|
req.send_request(options)
|
4772
4771
|
end
|
4773
4772
|
|
4773
|
+
# Creates a `DBProxyEndpoint`. Only applies to proxies that are
|
4774
|
+
# associated with Aurora DB clusters. You can use DB proxy endpoints to
|
4775
|
+
# specify read/write or read-only access to the DB cluster. You can also
|
4776
|
+
# use DB proxy endpoints to access a DB proxy through a different VPC
|
4777
|
+
# than the proxy's default VPC.
|
4778
|
+
#
|
4779
|
+
# @option params [required, String] :db_proxy_name
|
4780
|
+
# The name of the DB proxy associated with the DB proxy endpoint that
|
4781
|
+
# you create.
|
4782
|
+
#
|
4783
|
+
# @option params [required, String] :db_proxy_endpoint_name
|
4784
|
+
# The name of the DB proxy endpoint to create.
|
4785
|
+
#
|
4786
|
+
# @option params [required, Array<String>] :vpc_subnet_ids
|
4787
|
+
# The VPC subnet IDs for the DB proxy endpoint that you create. You can
|
4788
|
+
# specify a different set of subnet IDs than for the original DB proxy.
|
4789
|
+
#
|
4790
|
+
# @option params [Array<String>] :vpc_security_group_ids
|
4791
|
+
# The VPC security group IDs for the DB proxy endpoint that you create.
|
4792
|
+
# You can specify a different set of security group IDs than for the
|
4793
|
+
# original DB proxy. The default is the default security group for the
|
4794
|
+
# VPC.
|
4795
|
+
#
|
4796
|
+
# @option params [String] :target_role
|
4797
|
+
# A value that indicates whether the DB proxy endpoint can be used for
|
4798
|
+
# read/write or read-only operations. The default is `READ_WRITE`.
|
4799
|
+
#
|
4800
|
+
# @option params [Array<Types::Tag>] :tags
|
4801
|
+
# A list of tags. For more information, see [Tagging Amazon RDS
|
4802
|
+
# Resources][1] in the *Amazon RDS User Guide.*
|
4803
|
+
#
|
4804
|
+
#
|
4805
|
+
#
|
4806
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
4807
|
+
#
|
4808
|
+
# @return [Types::CreateDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4809
|
+
#
|
4810
|
+
# * {Types::CreateDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
4811
|
+
#
|
4812
|
+
# @example Request syntax with placeholder values
|
4813
|
+
#
|
4814
|
+
# resp = client.create_db_proxy_endpoint({
|
4815
|
+
# db_proxy_name: "DBProxyName", # required
|
4816
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName", # required
|
4817
|
+
# vpc_subnet_ids: ["String"], # required
|
4818
|
+
# vpc_security_group_ids: ["String"],
|
4819
|
+
# target_role: "READ_WRITE", # accepts READ_WRITE, READ_ONLY
|
4820
|
+
# tags: [
|
4821
|
+
# {
|
4822
|
+
# key: "String",
|
4823
|
+
# value: "String",
|
4824
|
+
# },
|
4825
|
+
# ],
|
4826
|
+
# })
|
4827
|
+
#
|
4828
|
+
# @example Response structure
|
4829
|
+
#
|
4830
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_name #=> String
|
4831
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_arn #=> String
|
4832
|
+
# resp.db_proxy_endpoint.db_proxy_name #=> String
|
4833
|
+
# resp.db_proxy_endpoint.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
4834
|
+
# resp.db_proxy_endpoint.vpc_id #=> String
|
4835
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids #=> Array
|
4836
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids[0] #=> String
|
4837
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids #=> Array
|
4838
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids[0] #=> String
|
4839
|
+
# resp.db_proxy_endpoint.endpoint #=> String
|
4840
|
+
# resp.db_proxy_endpoint.created_date #=> Time
|
4841
|
+
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
4842
|
+
# resp.db_proxy_endpoint.is_default #=> Boolean
|
4843
|
+
#
|
4844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBProxyEndpoint AWS API Documentation
|
4845
|
+
#
|
4846
|
+
# @overload create_db_proxy_endpoint(params = {})
|
4847
|
+
# @param [Hash] params ({})
|
4848
|
+
def create_db_proxy_endpoint(params = {}, options = {})
|
4849
|
+
req = build_request(:create_db_proxy_endpoint, params)
|
4850
|
+
req.send_request(options)
|
4851
|
+
end
|
4852
|
+
|
4774
4853
|
# Creates a new DB security group. DB security groups control access to
|
4775
4854
|
# a DB instance.
|
4776
4855
|
#
|
@@ -5121,8 +5200,7 @@ module Aws::RDS
|
|
5121
5200
|
#
|
5122
5201
|
# Constraints:
|
5123
5202
|
#
|
5124
|
-
# * If
|
5125
|
-
# provided.
|
5203
|
+
# * If `SourceIds` are supplied, `SourceType` must also be provided.
|
5126
5204
|
#
|
5127
5205
|
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
5128
5206
|
# must be supplied.
|
@@ -5839,6 +5917,7 @@ module Aws::RDS
|
|
5839
5917
|
# resp.db_cluster_snapshot.db_cluster_identifier #=> String
|
5840
5918
|
# resp.db_cluster_snapshot.snapshot_create_time #=> Time
|
5841
5919
|
# resp.db_cluster_snapshot.engine #=> String
|
5920
|
+
# resp.db_cluster_snapshot.engine_mode #=> String
|
5842
5921
|
# resp.db_cluster_snapshot.allocated_storage #=> Integer
|
5843
5922
|
# resp.db_cluster_snapshot.status #=> String
|
5844
5923
|
# resp.db_cluster_snapshot.port #=> Integer
|
@@ -6105,6 +6184,7 @@ module Aws::RDS
|
|
6105
6184
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
6106
6185
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
6107
6186
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
6187
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
6108
6188
|
#
|
6109
6189
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
6110
6190
|
#
|
@@ -6219,7 +6299,7 @@ module Aws::RDS
|
|
6219
6299
|
req.send_request(options)
|
6220
6300
|
end
|
6221
6301
|
|
6222
|
-
# Deletes an existing proxy.
|
6302
|
+
# Deletes an existing DB proxy.
|
6223
6303
|
#
|
6224
6304
|
# @option params [required, String] :db_proxy_name
|
6225
6305
|
# The name of the DB proxy to delete.
|
@@ -6240,6 +6320,7 @@ module Aws::RDS
|
|
6240
6320
|
# resp.db_proxy.db_proxy_arn #=> String
|
6241
6321
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
6242
6322
|
# resp.db_proxy.engine_family #=> String
|
6323
|
+
# resp.db_proxy.vpc_id #=> String
|
6243
6324
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
6244
6325
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
6245
6326
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -6267,6 +6348,50 @@ module Aws::RDS
|
|
6267
6348
|
req.send_request(options)
|
6268
6349
|
end
|
6269
6350
|
|
6351
|
+
# Deletes a `DBProxyEndpoint`. Doing so removes the ability to access
|
6352
|
+
# the DB proxy using the endpoint that you defined. The endpoint that
|
6353
|
+
# you delete might have provided capabilities such as read/write or
|
6354
|
+
# read-only operations, or using a different VPC than the DB proxy's
|
6355
|
+
# default VPC.
|
6356
|
+
#
|
6357
|
+
# @option params [required, String] :db_proxy_endpoint_name
|
6358
|
+
# The name of the DB proxy endpoint to delete.
|
6359
|
+
#
|
6360
|
+
# @return [Types::DeleteDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6361
|
+
#
|
6362
|
+
# * {Types::DeleteDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
6363
|
+
#
|
6364
|
+
# @example Request syntax with placeholder values
|
6365
|
+
#
|
6366
|
+
# resp = client.delete_db_proxy_endpoint({
|
6367
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName", # required
|
6368
|
+
# })
|
6369
|
+
#
|
6370
|
+
# @example Response structure
|
6371
|
+
#
|
6372
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_name #=> String
|
6373
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_arn #=> String
|
6374
|
+
# resp.db_proxy_endpoint.db_proxy_name #=> String
|
6375
|
+
# resp.db_proxy_endpoint.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
6376
|
+
# resp.db_proxy_endpoint.vpc_id #=> String
|
6377
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids #=> Array
|
6378
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids[0] #=> String
|
6379
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids #=> Array
|
6380
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids[0] #=> String
|
6381
|
+
# resp.db_proxy_endpoint.endpoint #=> String
|
6382
|
+
# resp.db_proxy_endpoint.created_date #=> Time
|
6383
|
+
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
6384
|
+
# resp.db_proxy_endpoint.is_default #=> Boolean
|
6385
|
+
#
|
6386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBProxyEndpoint AWS API Documentation
|
6387
|
+
#
|
6388
|
+
# @overload delete_db_proxy_endpoint(params = {})
|
6389
|
+
# @param [Hash] params ({})
|
6390
|
+
def delete_db_proxy_endpoint(params = {}, options = {})
|
6391
|
+
req = build_request(:delete_db_proxy_endpoint, params)
|
6392
|
+
req.send_request(options)
|
6393
|
+
end
|
6394
|
+
|
6270
6395
|
# Deletes a DB security group.
|
6271
6396
|
#
|
6272
6397
|
# <note markdown="1"> The specified DB security group must not be associated with any DB
|
@@ -7526,6 +7651,7 @@ module Aws::RDS
|
|
7526
7651
|
# resp.db_cluster_snapshots[0].db_cluster_identifier #=> String
|
7527
7652
|
# resp.db_cluster_snapshots[0].snapshot_create_time #=> Time
|
7528
7653
|
# resp.db_cluster_snapshots[0].engine #=> String
|
7654
|
+
# resp.db_cluster_snapshots[0].engine_mode #=> String
|
7529
7655
|
# resp.db_cluster_snapshots[0].allocated_storage #=> Integer
|
7530
7656
|
# resp.db_cluster_snapshots[0].status #=> String
|
7531
7657
|
# resp.db_cluster_snapshots[0].port #=> Integer
|
@@ -7914,6 +8040,10 @@ module Aws::RDS
|
|
7914
8040
|
# resp.db_engine_versions[0].valid_upgrade_target[0].description #=> String
|
7915
8041
|
# resp.db_engine_versions[0].valid_upgrade_target[0].auto_upgrade #=> Boolean
|
7916
8042
|
# resp.db_engine_versions[0].valid_upgrade_target[0].is_major_version_upgrade #=> Boolean
|
8043
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supported_engine_modes #=> Array
|
8044
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supported_engine_modes[0] #=> String
|
8045
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
8046
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
|
7917
8047
|
# resp.db_engine_versions[0].supported_timezones #=> Array
|
7918
8048
|
# resp.db_engine_versions[0].supported_timezones[0].timezone_name #=> String
|
7919
8049
|
# resp.db_engine_versions[0].exportable_log_types #=> Array
|
@@ -8284,6 +8414,7 @@ module Aws::RDS
|
|
8284
8414
|
# resp.db_instances[0].db_instance_automated_backups_replications #=> Array
|
8285
8415
|
# resp.db_instances[0].db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
8286
8416
|
# resp.db_instances[0].customer_owned_ip_enabled #=> Boolean
|
8417
|
+
# resp.db_instances[0].aws_backup_recovery_point_arn #=> String
|
8287
8418
|
#
|
8288
8419
|
#
|
8289
8420
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -8585,7 +8716,9 @@ module Aws::RDS
|
|
8585
8716
|
# Returns information about DB proxies.
|
8586
8717
|
#
|
8587
8718
|
# @option params [String] :db_proxy_name
|
8588
|
-
# The name of the DB proxy.
|
8719
|
+
# The name of the DB proxy. If you omit this parameter, the output
|
8720
|
+
# includes information about all DB proxies owned by your AWS account
|
8721
|
+
# ID.
|
8589
8722
|
#
|
8590
8723
|
# @option params [Array<Types::Filter>] :filters
|
8591
8724
|
# This parameter is not currently supported.
|
@@ -8633,6 +8766,7 @@ module Aws::RDS
|
|
8633
8766
|
# resp.db_proxies[0].db_proxy_arn #=> String
|
8634
8767
|
# resp.db_proxies[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
8635
8768
|
# resp.db_proxies[0].engine_family #=> String
|
8769
|
+
# resp.db_proxies[0].vpc_id #=> String
|
8636
8770
|
# resp.db_proxies[0].vpc_security_group_ids #=> Array
|
8637
8771
|
# resp.db_proxies[0].vpc_security_group_ids[0] #=> String
|
8638
8772
|
# resp.db_proxies[0].vpc_subnet_ids #=> Array
|
@@ -8661,6 +8795,85 @@ module Aws::RDS
|
|
8661
8795
|
req.send_request(options)
|
8662
8796
|
end
|
8663
8797
|
|
8798
|
+
# Returns information about DB proxy endpoints.
|
8799
|
+
#
|
8800
|
+
# @option params [String] :db_proxy_name
|
8801
|
+
# The name of the DB proxy whose endpoints you want to describe. If you
|
8802
|
+
# omit this parameter, the output includes information about all DB
|
8803
|
+
# proxy endpoints associated with all your DB proxies.
|
8804
|
+
#
|
8805
|
+
# @option params [String] :db_proxy_endpoint_name
|
8806
|
+
# The name of a DB proxy endpoint to describe. If you omit this
|
8807
|
+
# parameter, the output includes information about all DB proxy
|
8808
|
+
# endpoints associated with the specified proxy.
|
8809
|
+
#
|
8810
|
+
# @option params [Array<Types::Filter>] :filters
|
8811
|
+
# This parameter is not currently supported.
|
8812
|
+
#
|
8813
|
+
# @option params [String] :marker
|
8814
|
+
# An optional pagination token provided by a previous request. If this
|
8815
|
+
# parameter is specified, the response includes only records beyond the
|
8816
|
+
# marker, up to the value specified by `MaxRecords`.
|
8817
|
+
#
|
8818
|
+
# @option params [Integer] :max_records
|
8819
|
+
# The maximum number of records to include in the response. If more
|
8820
|
+
# records exist than the specified `MaxRecords` value, a pagination
|
8821
|
+
# token called a marker is included in the response so that the
|
8822
|
+
# remaining results can be retrieved.
|
8823
|
+
#
|
8824
|
+
# Default: 100
|
8825
|
+
#
|
8826
|
+
# Constraints: Minimum 20, maximum 100.
|
8827
|
+
#
|
8828
|
+
# @return [Types::DescribeDBProxyEndpointsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8829
|
+
#
|
8830
|
+
# * {Types::DescribeDBProxyEndpointsResponse#db_proxy_endpoints #db_proxy_endpoints} => Array<Types::DBProxyEndpoint>
|
8831
|
+
# * {Types::DescribeDBProxyEndpointsResponse#marker #marker} => String
|
8832
|
+
#
|
8833
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
8834
|
+
#
|
8835
|
+
# @example Request syntax with placeholder values
|
8836
|
+
#
|
8837
|
+
# resp = client.describe_db_proxy_endpoints({
|
8838
|
+
# db_proxy_name: "DBProxyName",
|
8839
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName",
|
8840
|
+
# filters: [
|
8841
|
+
# {
|
8842
|
+
# name: "String", # required
|
8843
|
+
# values: ["String"], # required
|
8844
|
+
# },
|
8845
|
+
# ],
|
8846
|
+
# marker: "String",
|
8847
|
+
# max_records: 1,
|
8848
|
+
# })
|
8849
|
+
#
|
8850
|
+
# @example Response structure
|
8851
|
+
#
|
8852
|
+
# resp.db_proxy_endpoints #=> Array
|
8853
|
+
# resp.db_proxy_endpoints[0].db_proxy_endpoint_name #=> String
|
8854
|
+
# resp.db_proxy_endpoints[0].db_proxy_endpoint_arn #=> String
|
8855
|
+
# resp.db_proxy_endpoints[0].db_proxy_name #=> String
|
8856
|
+
# resp.db_proxy_endpoints[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
8857
|
+
# resp.db_proxy_endpoints[0].vpc_id #=> String
|
8858
|
+
# resp.db_proxy_endpoints[0].vpc_security_group_ids #=> Array
|
8859
|
+
# resp.db_proxy_endpoints[0].vpc_security_group_ids[0] #=> String
|
8860
|
+
# resp.db_proxy_endpoints[0].vpc_subnet_ids #=> Array
|
8861
|
+
# resp.db_proxy_endpoints[0].vpc_subnet_ids[0] #=> String
|
8862
|
+
# resp.db_proxy_endpoints[0].endpoint #=> String
|
8863
|
+
# resp.db_proxy_endpoints[0].created_date #=> Time
|
8864
|
+
# resp.db_proxy_endpoints[0].target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
8865
|
+
# resp.db_proxy_endpoints[0].is_default #=> Boolean
|
8866
|
+
# resp.marker #=> String
|
8867
|
+
#
|
8868
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyEndpoints AWS API Documentation
|
8869
|
+
#
|
8870
|
+
# @overload describe_db_proxy_endpoints(params = {})
|
8871
|
+
# @param [Hash] params ({})
|
8872
|
+
def describe_db_proxy_endpoints(params = {}, options = {})
|
8873
|
+
req = build_request(:describe_db_proxy_endpoints, params)
|
8874
|
+
req.send_request(options)
|
8875
|
+
end
|
8876
|
+
|
8664
8877
|
# Returns information about DB proxy target groups, represented by
|
8665
8878
|
# `DBProxyTargetGroup` data structures.
|
8666
8879
|
#
|
@@ -8795,8 +9008,9 @@ module Aws::RDS
|
|
8795
9008
|
# resp.targets[0].rds_resource_id #=> String
|
8796
9009
|
# resp.targets[0].port #=> Integer
|
8797
9010
|
# resp.targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
|
9011
|
+
# resp.targets[0].role #=> String, one of "READ_WRITE", "READ_ONLY", "UNKNOWN"
|
8798
9012
|
# resp.targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
8799
|
-
# resp.targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY"
|
9013
|
+
# resp.targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY", "INVALID_REPLICATION_STATE"
|
8800
9014
|
# resp.targets[0].target_health.description #=> String
|
8801
9015
|
# resp.marker #=> String
|
8802
9016
|
#
|
@@ -11295,7 +11509,7 @@ module Aws::RDS
|
|
11295
11509
|
#
|
11296
11510
|
#
|
11297
11511
|
#
|
11298
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.managed-failover
|
11512
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-global-database-disaster-recovery.html#aurora-global-database-disaster-recovery.managed-failover
|
11299
11513
|
#
|
11300
11514
|
# @option params [required, String] :global_cluster_identifier
|
11301
11515
|
# Identifier of the Aurora global database (GlobalCluster) that should
|
@@ -11808,9 +12022,8 @@ module Aws::RDS
|
|
11808
12022
|
# parameter.
|
11809
12023
|
#
|
11810
12024
|
# The default is a 30-minute window selected at random from an 8-hour
|
11811
|
-
# block of time for each AWS Region. To
|
11812
|
-
# see [
|
11813
|
-
# *Amazon Aurora User Guide.*
|
12025
|
+
# block of time for each AWS Region. To view the time blocks available,
|
12026
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
11814
12027
|
#
|
11815
12028
|
# Constraints:
|
11816
12029
|
#
|
@@ -11824,7 +12037,7 @@ module Aws::RDS
|
|
11824
12037
|
#
|
11825
12038
|
#
|
11826
12039
|
#
|
11827
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
12040
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
11828
12041
|
#
|
11829
12042
|
# @option params [String] :preferred_maintenance_window
|
11830
12043
|
# The weekly time range during which system maintenance can occur, in
|
@@ -12621,10 +12834,14 @@ module Aws::RDS
|
|
12621
12834
|
# to a positive number enables backups. Setting this parameter to 0
|
12622
12835
|
# disables automated backups.
|
12623
12836
|
#
|
12624
|
-
#
|
12625
|
-
#
|
12626
|
-
#
|
12627
|
-
#
|
12837
|
+
# <note markdown="1"> Enabling and disabling backups can result in a brief I/O suspension
|
12838
|
+
# that lasts from a few seconds to a few minutes, depending on the size
|
12839
|
+
# and class of your DB instance.
|
12840
|
+
#
|
12841
|
+
# </note>
|
12842
|
+
#
|
12843
|
+
# These changes are applied during the next maintenance window unless
|
12844
|
+
# the `ApplyImmediately` parameter is enabled for this request. If you
|
12628
12845
|
# change the parameter from one non-zero value to another non-zero
|
12629
12846
|
# value, the change is asynchronously applied as soon as possible.
|
12630
12847
|
#
|
@@ -12652,7 +12869,9 @@ module Aws::RDS
|
|
12652
12869
|
# automated backups are enabled, as determined by the
|
12653
12870
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
12654
12871
|
# result in an outage and the change is asynchronously applied as soon
|
12655
|
-
# as possible.
|
12872
|
+
# as possible. The default is a 30-minute window selected at random from
|
12873
|
+
# an 8-hour block of time for each AWS Region. For more information, see
|
12874
|
+
# [Backup window][1] in the *Amazon RDS User Guide.*
|
12656
12875
|
#
|
12657
12876
|
# **Amazon Aurora**
|
12658
12877
|
#
|
@@ -12670,6 +12889,10 @@ module Aws::RDS
|
|
12670
12889
|
#
|
12671
12890
|
# * Must be at least 30 minutes
|
12672
12891
|
#
|
12892
|
+
#
|
12893
|
+
#
|
12894
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
12895
|
+
#
|
12673
12896
|
# @option params [String] :preferred_maintenance_window
|
12674
12897
|
# The weekly time range (in UTC) during which system maintenance can
|
12675
12898
|
# occur, which might result in an outage. Changing this parameter
|
@@ -12681,6 +12904,9 @@ module Aws::RDS
|
|
12681
12904
|
# current time, there must be at least 30 minutes between the current
|
12682
12905
|
# time and end of the window to ensure pending changes are applied.
|
12683
12906
|
#
|
12907
|
+
# For more information, see [Amazon RDS Maintenance Window][1] in the
|
12908
|
+
# *Amazon RDS User Guide.*
|
12909
|
+
#
|
12684
12910
|
# Default: Uses existing setting
|
12685
12911
|
#
|
12686
12912
|
# Format: ddd:hh24:mi-ddd:hh24:mi
|
@@ -12689,6 +12915,10 @@ module Aws::RDS
|
|
12689
12915
|
#
|
12690
12916
|
# Constraints: Must be at least 30 minutes
|
12691
12917
|
#
|
12918
|
+
#
|
12919
|
+
#
|
12920
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
12921
|
+
#
|
12692
12922
|
# @option params [Boolean] :multi_az
|
12693
12923
|
# A value that indicates whether the DB instance is a Multi-AZ
|
12694
12924
|
# deployment. Changing this parameter doesn't result in an outage and
|
@@ -13121,6 +13351,9 @@ module Aws::RDS
|
|
13121
13351
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-on-outposts.html
|
13122
13352
|
# [2]: https://docs.aws.amazon.com/outposts/latest/userguide/outposts-networking-components.html#ip-addressing
|
13123
13353
|
#
|
13354
|
+
# @option params [String] :aws_backup_recovery_point_arn
|
13355
|
+
# The Amazon Resource Name (ARN) of the recovery point in AWS Backup.
|
13356
|
+
#
|
13124
13357
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13125
13358
|
#
|
13126
13359
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -13202,6 +13435,7 @@ module Aws::RDS
|
|
13202
13435
|
# certificate_rotation_restart: false,
|
13203
13436
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
13204
13437
|
# enable_customer_owned_ip: false,
|
13438
|
+
# aws_backup_recovery_point_arn: "AwsBackupRecoveryPointArn",
|
13205
13439
|
# })
|
13206
13440
|
#
|
13207
13441
|
# @example Response structure
|
@@ -13329,6 +13563,7 @@ module Aws::RDS
|
|
13329
13563
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
13330
13564
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
13331
13565
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
13566
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
13332
13567
|
#
|
13333
13568
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
13334
13569
|
#
|
@@ -13520,6 +13755,7 @@ module Aws::RDS
|
|
13520
13755
|
# resp.db_proxy.db_proxy_arn #=> String
|
13521
13756
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
13522
13757
|
# resp.db_proxy.engine_family #=> String
|
13758
|
+
# resp.db_proxy.vpc_id #=> String
|
13523
13759
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
13524
13760
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
13525
13761
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -13547,6 +13783,61 @@ module Aws::RDS
|
|
13547
13783
|
req.send_request(options)
|
13548
13784
|
end
|
13549
13785
|
|
13786
|
+
# Changes the settings for an existing DB proxy endpoint.
|
13787
|
+
#
|
13788
|
+
# @option params [required, String] :db_proxy_endpoint_name
|
13789
|
+
# The name of the DB proxy sociated with the DB proxy endpoint that you
|
13790
|
+
# want to modify.
|
13791
|
+
#
|
13792
|
+
# @option params [String] :new_db_proxy_endpoint_name
|
13793
|
+
# The new identifier for the `DBProxyEndpoint`. An identifier must begin
|
13794
|
+
# with a letter and must contain only ASCII letters, digits, and
|
13795
|
+
# hyphens; it can't end with a hyphen or contain two consecutive
|
13796
|
+
# hyphens.
|
13797
|
+
#
|
13798
|
+
# @option params [Array<String>] :vpc_security_group_ids
|
13799
|
+
# The VPC security group IDs for the DB proxy endpoint. When the DB
|
13800
|
+
# proxy endpoint uses a different VPC than the original proxy, you also
|
13801
|
+
# specify a different set of security group IDs than for the original
|
13802
|
+
# proxy.
|
13803
|
+
#
|
13804
|
+
# @return [Types::ModifyDBProxyEndpointResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
13805
|
+
#
|
13806
|
+
# * {Types::ModifyDBProxyEndpointResponse#db_proxy_endpoint #db_proxy_endpoint} => Types::DBProxyEndpoint
|
13807
|
+
#
|
13808
|
+
# @example Request syntax with placeholder values
|
13809
|
+
#
|
13810
|
+
# resp = client.modify_db_proxy_endpoint({
|
13811
|
+
# db_proxy_endpoint_name: "DBProxyEndpointName", # required
|
13812
|
+
# new_db_proxy_endpoint_name: "DBProxyEndpointName",
|
13813
|
+
# vpc_security_group_ids: ["String"],
|
13814
|
+
# })
|
13815
|
+
#
|
13816
|
+
# @example Response structure
|
13817
|
+
#
|
13818
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_name #=> String
|
13819
|
+
# resp.db_proxy_endpoint.db_proxy_endpoint_arn #=> String
|
13820
|
+
# resp.db_proxy_endpoint.db_proxy_name #=> String
|
13821
|
+
# resp.db_proxy_endpoint.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
13822
|
+
# resp.db_proxy_endpoint.vpc_id #=> String
|
13823
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids #=> Array
|
13824
|
+
# resp.db_proxy_endpoint.vpc_security_group_ids[0] #=> String
|
13825
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids #=> Array
|
13826
|
+
# resp.db_proxy_endpoint.vpc_subnet_ids[0] #=> String
|
13827
|
+
# resp.db_proxy_endpoint.endpoint #=> String
|
13828
|
+
# resp.db_proxy_endpoint.created_date #=> Time
|
13829
|
+
# resp.db_proxy_endpoint.target_role #=> String, one of "READ_WRITE", "READ_ONLY"
|
13830
|
+
# resp.db_proxy_endpoint.is_default #=> Boolean
|
13831
|
+
#
|
13832
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBProxyEndpoint AWS API Documentation
|
13833
|
+
#
|
13834
|
+
# @overload modify_db_proxy_endpoint(params = {})
|
13835
|
+
# @param [Hash] params ({})
|
13836
|
+
def modify_db_proxy_endpoint(params = {}, options = {})
|
13837
|
+
req = build_request(:modify_db_proxy_endpoint, params)
|
13838
|
+
req.send_request(options)
|
13839
|
+
end
|
13840
|
+
|
13550
13841
|
# Modifies the properties of a `DBProxyTargetGroup`.
|
13551
13842
|
#
|
13552
13843
|
# @option params [required, String] :target_group_name
|
@@ -14465,6 +14756,7 @@ module Aws::RDS
|
|
14465
14756
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14466
14757
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14467
14758
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
14759
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
14468
14760
|
#
|
14469
14761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
14470
14762
|
#
|
@@ -14877,6 +15169,7 @@ module Aws::RDS
|
|
14877
15169
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
14878
15170
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
14879
15171
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
15172
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
14880
15173
|
#
|
14881
15174
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
14882
15175
|
#
|
@@ -14925,8 +15218,9 @@ module Aws::RDS
|
|
14925
15218
|
# resp.db_proxy_targets[0].rds_resource_id #=> String
|
14926
15219
|
# resp.db_proxy_targets[0].port #=> Integer
|
14927
15220
|
# resp.db_proxy_targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
|
15221
|
+
# resp.db_proxy_targets[0].role #=> String, one of "READ_WRITE", "READ_ONLY", "UNKNOWN"
|
14928
15222
|
# resp.db_proxy_targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
14929
|
-
# resp.db_proxy_targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY"
|
15223
|
+
# resp.db_proxy_targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY", "INVALID_REPLICATION_STATE"
|
14930
15224
|
# resp.db_proxy_targets[0].target_health.description #=> String
|
14931
15225
|
#
|
14932
15226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets AWS API Documentation
|
@@ -15547,9 +15841,8 @@ module Aws::RDS
|
|
15547
15841
|
# parameter.
|
15548
15842
|
#
|
15549
15843
|
# The default is a 30-minute window selected at random from an 8-hour
|
15550
|
-
# block of time for each AWS Region. To
|
15551
|
-
# see [
|
15552
|
-
# Aurora User Guide.*
|
15844
|
+
# block of time for each AWS Region. To view the time blocks available,
|
15845
|
+
# see [ Backup window][1] in the *Amazon Aurora User Guide.*
|
15553
15846
|
#
|
15554
15847
|
# Constraints:
|
15555
15848
|
#
|
@@ -15563,7 +15856,7 @@ module Aws::RDS
|
|
15563
15856
|
#
|
15564
15857
|
#
|
15565
15858
|
#
|
15566
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/
|
15859
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/Aurora.Managing.Backups.html#Aurora.Managing.Backups.BackupWindow
|
15567
15860
|
#
|
15568
15861
|
# @option params [String] :preferred_maintenance_window
|
15569
15862
|
# The weekly time range during which system maintenance can occur, in
|
@@ -17217,6 +17510,7 @@ module Aws::RDS
|
|
17217
17510
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17218
17511
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17219
17512
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
17513
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
17220
17514
|
#
|
17221
17515
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
17222
17516
|
#
|
@@ -17365,8 +17659,8 @@ module Aws::RDS
|
|
17365
17659
|
#
|
17366
17660
|
# @option params [String] :preferred_backup_window
|
17367
17661
|
# The time range each day during which automated backups are created if
|
17368
|
-
# automated backups are enabled. For more information, see [
|
17369
|
-
#
|
17662
|
+
# automated backups are enabled. For more information, see [Backup
|
17663
|
+
# window][1] in the *Amazon RDS User Guide.*
|
17370
17664
|
#
|
17371
17665
|
# Constraints:
|
17372
17666
|
#
|
@@ -17795,6 +18089,7 @@ module Aws::RDS
|
|
17795
18089
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
17796
18090
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
17797
18091
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18092
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
17798
18093
|
#
|
17799
18094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
|
17800
18095
|
#
|
@@ -18421,6 +18716,7 @@ module Aws::RDS
|
|
18421
18716
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18422
18717
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18423
18718
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
18719
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
18424
18720
|
#
|
18425
18721
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
18426
18722
|
#
|
@@ -18432,7 +18728,7 @@ module Aws::RDS
|
|
18432
18728
|
end
|
18433
18729
|
|
18434
18730
|
# Revokes ingress from a DBSecurityGroup for previously authorized IP
|
18435
|
-
# ranges or EC2 or VPC
|
18731
|
+
# ranges or EC2 or VPC security groups. Required parameters for this API
|
18436
18732
|
# are one of CIDRIP, EC2SecurityGroupId for VPC, or
|
18437
18733
|
# (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or
|
18438
18734
|
# EC2SecurityGroupId).
|
@@ -18865,6 +19161,7 @@ module Aws::RDS
|
|
18865
19161
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
18866
19162
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
18867
19163
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
19164
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
18868
19165
|
#
|
18869
19166
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
|
18870
19167
|
#
|
@@ -19428,6 +19725,7 @@ module Aws::RDS
|
|
19428
19725
|
# resp.db_instance.db_instance_automated_backups_replications #=> Array
|
19429
19726
|
# resp.db_instance.db_instance_automated_backups_replications[0].db_instance_automated_backups_arn #=> String
|
19430
19727
|
# resp.db_instance.customer_owned_ip_enabled #=> Boolean
|
19728
|
+
# resp.db_instance.aws_backup_recovery_point_arn #=> String
|
19431
19729
|
#
|
19432
19730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
|
19433
19731
|
#
|
@@ -19515,7 +19813,7 @@ module Aws::RDS
|
|
19515
19813
|
params: params,
|
19516
19814
|
config: config)
|
19517
19815
|
context[:gem_name] = 'aws-sdk-rds'
|
19518
|
-
context[:gem_version] = '1.
|
19816
|
+
context[:gem_version] = '1.118.0'
|
19519
19817
|
Seahorse::Client::Request.new(handlers, context)
|
19520
19818
|
end
|
19521
19819
|
|