aws-sdk-rds 1.115.0 → 1.120.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 +712 -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 +331 -37
- data/lib/aws-sdk-rds/client_api.rb +134 -1
- data/lib/aws-sdk-rds/db_cluster.rb +25 -9
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -1
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- 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 +26 -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 +8 -15
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +438 -35
- data/lib/aws-sdk-rds/waiters.rb +1 -1
- metadata +9 -7
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.120.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.120.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
|
|
@@ -1981,9 +1981,8 @@ module Aws::RDS
|
|
1981
1981
|
# parameter.
|
1982
1982
|
#
|
1983
1983
|
# The default is a 30-minute window selected at random from an 8-hour
|
1984
|
-
# block of time for each AWS Region. To
|
1985
|
-
# see [
|
1986
|
-
# *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.*
|
1987
1986
|
#
|
1988
1987
|
# Constraints:
|
1989
1988
|
#
|
@@ -1997,7 +1996,7 @@ module Aws::RDS
|
|
1997
1996
|
#
|
1998
1997
|
#
|
1999
1998
|
#
|
2000
|
-
# [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
|
2001
2000
|
#
|
2002
2001
|
# @option params [String] :preferred_maintenance_window
|
2003
2002
|
# The weekly time range during which system maintenance can occur, in
|
@@ -3200,19 +3199,15 @@ module Aws::RDS
|
|
3200
3199
|
# @option params [String] :preferred_backup_window
|
3201
3200
|
# The daily time range during which automated backups are created if
|
3202
3201
|
# automated backups are enabled, using the `BackupRetentionPeriod`
|
3203
|
-
# parameter.
|
3204
|
-
#
|
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*.
|
3205
3205
|
#
|
3206
3206
|
# **Amazon Aurora**
|
3207
3207
|
#
|
3208
3208
|
# Not applicable. The daily time range for creating automated backups is
|
3209
3209
|
# managed by the DB cluster.
|
3210
3210
|
#
|
3211
|
-
# The default is a 30-minute window selected at random from an 8-hour
|
3212
|
-
# block of time for each AWS Region. To see the time blocks available,
|
3213
|
-
# see [ Adjusting the Preferred DB Instance Maintenance Window][2] in
|
3214
|
-
# the *Amazon RDS User Guide*.
|
3215
|
-
#
|
3216
3211
|
# Constraints:
|
3217
3212
|
#
|
3218
3213
|
# * Must be in the format `hh24:mi-hh24:mi`.
|
@@ -3226,7 +3221,6 @@ module Aws::RDS
|
|
3226
3221
|
#
|
3227
3222
|
#
|
3228
3223
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
3229
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
3230
3224
|
#
|
3231
3225
|
# @option params [Integer] :port
|
3232
3226
|
# The port number on which the database accepts connections.
|
@@ -4748,6 +4742,7 @@ module Aws::RDS
|
|
4748
4742
|
# resp.db_proxy.db_proxy_arn #=> String
|
4749
4743
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
4750
4744
|
# resp.db_proxy.engine_family #=> String
|
4745
|
+
# resp.db_proxy.vpc_id #=> String
|
4751
4746
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
4752
4747
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
4753
4748
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -4775,6 +4770,86 @@ module Aws::RDS
|
|
4775
4770
|
req.send_request(options)
|
4776
4771
|
end
|
4777
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
|
+
|
4778
4853
|
# Creates a new DB security group. DB security groups control access to
|
4779
4854
|
# a DB instance.
|
4780
4855
|
#
|
@@ -5125,8 +5200,7 @@ module Aws::RDS
|
|
5125
5200
|
#
|
5126
5201
|
# Constraints:
|
5127
5202
|
#
|
5128
|
-
# * If
|
5129
|
-
# provided.
|
5203
|
+
# * If `SourceIds` are supplied, `SourceType` must also be provided.
|
5130
5204
|
#
|
5131
5205
|
# * If the source type is a DB instance, a `DBInstanceIdentifier` value
|
5132
5206
|
# must be supplied.
|
@@ -6225,7 +6299,7 @@ module Aws::RDS
|
|
6225
6299
|
req.send_request(options)
|
6226
6300
|
end
|
6227
6301
|
|
6228
|
-
# Deletes an existing proxy.
|
6302
|
+
# Deletes an existing DB proxy.
|
6229
6303
|
#
|
6230
6304
|
# @option params [required, String] :db_proxy_name
|
6231
6305
|
# The name of the DB proxy to delete.
|
@@ -6246,6 +6320,7 @@ module Aws::RDS
|
|
6246
6320
|
# resp.db_proxy.db_proxy_arn #=> String
|
6247
6321
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
6248
6322
|
# resp.db_proxy.engine_family #=> String
|
6323
|
+
# resp.db_proxy.vpc_id #=> String
|
6249
6324
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
6250
6325
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
6251
6326
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -6273,6 +6348,50 @@ module Aws::RDS
|
|
6273
6348
|
req.send_request(options)
|
6274
6349
|
end
|
6275
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
|
+
|
6276
6395
|
# Deletes a DB security group.
|
6277
6396
|
#
|
6278
6397
|
# <note markdown="1"> The specified DB security group must not be associated with any DB
|
@@ -8597,7 +8716,9 @@ module Aws::RDS
|
|
8597
8716
|
# Returns information about DB proxies.
|
8598
8717
|
#
|
8599
8718
|
# @option params [String] :db_proxy_name
|
8600
|
-
# 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.
|
8601
8722
|
#
|
8602
8723
|
# @option params [Array<Types::Filter>] :filters
|
8603
8724
|
# This parameter is not currently supported.
|
@@ -8645,6 +8766,7 @@ module Aws::RDS
|
|
8645
8766
|
# resp.db_proxies[0].db_proxy_arn #=> String
|
8646
8767
|
# resp.db_proxies[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
8647
8768
|
# resp.db_proxies[0].engine_family #=> String
|
8769
|
+
# resp.db_proxies[0].vpc_id #=> String
|
8648
8770
|
# resp.db_proxies[0].vpc_security_group_ids #=> Array
|
8649
8771
|
# resp.db_proxies[0].vpc_security_group_ids[0] #=> String
|
8650
8772
|
# resp.db_proxies[0].vpc_subnet_ids #=> Array
|
@@ -8673,6 +8795,85 @@ module Aws::RDS
|
|
8673
8795
|
req.send_request(options)
|
8674
8796
|
end
|
8675
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
|
+
|
8676
8877
|
# Returns information about DB proxy target groups, represented by
|
8677
8878
|
# `DBProxyTargetGroup` data structures.
|
8678
8879
|
#
|
@@ -8807,8 +9008,9 @@ module Aws::RDS
|
|
8807
9008
|
# resp.targets[0].rds_resource_id #=> String
|
8808
9009
|
# resp.targets[0].port #=> Integer
|
8809
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"
|
8810
9012
|
# resp.targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
8811
|
-
# 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"
|
8812
9014
|
# resp.targets[0].target_health.description #=> String
|
8813
9015
|
# resp.marker #=> String
|
8814
9016
|
#
|
@@ -11307,7 +11509,7 @@ module Aws::RDS
|
|
11307
11509
|
#
|
11308
11510
|
#
|
11309
11511
|
#
|
11310
|
-
# [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
|
11311
11513
|
#
|
11312
11514
|
# @option params [required, String] :global_cluster_identifier
|
11313
11515
|
# Identifier of the Aurora global database (GlobalCluster) that should
|
@@ -11820,9 +12022,8 @@ module Aws::RDS
|
|
11820
12022
|
# parameter.
|
11821
12023
|
#
|
11822
12024
|
# The default is a 30-minute window selected at random from an 8-hour
|
11823
|
-
# block of time for each AWS Region. To
|
11824
|
-
# see [
|
11825
|
-
# *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.*
|
11826
12027
|
#
|
11827
12028
|
# Constraints:
|
11828
12029
|
#
|
@@ -11836,7 +12037,7 @@ module Aws::RDS
|
|
11836
12037
|
#
|
11837
12038
|
#
|
11838
12039
|
#
|
11839
|
-
# [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
|
11840
12041
|
#
|
11841
12042
|
# @option params [String] :preferred_maintenance_window
|
11842
12043
|
# The weekly time range during which system maintenance can occur, in
|
@@ -12633,10 +12834,14 @@ module Aws::RDS
|
|
12633
12834
|
# to a positive number enables backups. Setting this parameter to 0
|
12634
12835
|
# disables automated backups.
|
12635
12836
|
#
|
12636
|
-
#
|
12637
|
-
#
|
12638
|
-
#
|
12639
|
-
#
|
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
|
12640
12845
|
# change the parameter from one non-zero value to another non-zero
|
12641
12846
|
# value, the change is asynchronously applied as soon as possible.
|
12642
12847
|
#
|
@@ -12664,7 +12869,9 @@ module Aws::RDS
|
|
12664
12869
|
# automated backups are enabled, as determined by the
|
12665
12870
|
# `BackupRetentionPeriod` parameter. Changing this parameter doesn't
|
12666
12871
|
# result in an outage and the change is asynchronously applied as soon
|
12667
|
-
# 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.*
|
12668
12875
|
#
|
12669
12876
|
# **Amazon Aurora**
|
12670
12877
|
#
|
@@ -12682,6 +12889,10 @@ module Aws::RDS
|
|
12682
12889
|
#
|
12683
12890
|
# * Must be at least 30 minutes
|
12684
12891
|
#
|
12892
|
+
#
|
12893
|
+
#
|
12894
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_WorkingWithAutomatedBackups.html#USER_WorkingWithAutomatedBackups.BackupWindow
|
12895
|
+
#
|
12685
12896
|
# @option params [String] :preferred_maintenance_window
|
12686
12897
|
# The weekly time range (in UTC) during which system maintenance can
|
12687
12898
|
# occur, which might result in an outage. Changing this parameter
|
@@ -12693,6 +12904,9 @@ module Aws::RDS
|
|
12693
12904
|
# current time, there must be at least 30 minutes between the current
|
12694
12905
|
# time and end of the window to ensure pending changes are applied.
|
12695
12906
|
#
|
12907
|
+
# For more information, see [Amazon RDS Maintenance Window][1] in the
|
12908
|
+
# *Amazon RDS User Guide.*
|
12909
|
+
#
|
12696
12910
|
# Default: Uses existing setting
|
12697
12911
|
#
|
12698
12912
|
# Format: ddd:hh24:mi-ddd:hh24:mi
|
@@ -12701,6 +12915,10 @@ module Aws::RDS
|
|
12701
12915
|
#
|
12702
12916
|
# Constraints: Must be at least 30 minutes
|
12703
12917
|
#
|
12918
|
+
#
|
12919
|
+
#
|
12920
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#Concepts.DBMaintenance
|
12921
|
+
#
|
12704
12922
|
# @option params [Boolean] :multi_az
|
12705
12923
|
# A value that indicates whether the DB instance is a Multi-AZ
|
12706
12924
|
# deployment. Changing this parameter doesn't result in an outage and
|
@@ -13537,6 +13755,7 @@ module Aws::RDS
|
|
13537
13755
|
# resp.db_proxy.db_proxy_arn #=> String
|
13538
13756
|
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
13539
13757
|
# resp.db_proxy.engine_family #=> String
|
13758
|
+
# resp.db_proxy.vpc_id #=> String
|
13540
13759
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
13541
13760
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
13542
13761
|
# resp.db_proxy.vpc_subnet_ids #=> Array
|
@@ -13564,6 +13783,61 @@ module Aws::RDS
|
|
13564
13783
|
req.send_request(options)
|
13565
13784
|
end
|
13566
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
|
+
|
13567
13841
|
# Modifies the properties of a `DBProxyTargetGroup`.
|
13568
13842
|
#
|
13569
13843
|
# @option params [required, String] :target_group_name
|
@@ -14944,8 +15218,9 @@ module Aws::RDS
|
|
14944
15218
|
# resp.db_proxy_targets[0].rds_resource_id #=> String
|
14945
15219
|
# resp.db_proxy_targets[0].port #=> Integer
|
14946
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"
|
14947
15222
|
# resp.db_proxy_targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
14948
|
-
# 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"
|
14949
15224
|
# resp.db_proxy_targets[0].target_health.description #=> String
|
14950
15225
|
#
|
14951
15226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets AWS API Documentation
|
@@ -15566,9 +15841,8 @@ module Aws::RDS
|
|
15566
15841
|
# parameter.
|
15567
15842
|
#
|
15568
15843
|
# The default is a 30-minute window selected at random from an 8-hour
|
15569
|
-
# block of time for each AWS Region. To
|
15570
|
-
# see [
|
15571
|
-
# 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.*
|
15572
15846
|
#
|
15573
15847
|
# Constraints:
|
15574
15848
|
#
|
@@ -15582,7 +15856,7 @@ module Aws::RDS
|
|
15582
15856
|
#
|
15583
15857
|
#
|
15584
15858
|
#
|
15585
|
-
# [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
|
15586
15860
|
#
|
15587
15861
|
# @option params [String] :preferred_maintenance_window
|
15588
15862
|
# The weekly time range during which system maintenance can occur, in
|
@@ -16496,6 +16770,18 @@ module Aws::RDS
|
|
16496
16770
|
# Specify the name of the IAM role to be used when making API calls to
|
16497
16771
|
# the Directory Service.
|
16498
16772
|
#
|
16773
|
+
# @option params [Types::ScalingConfiguration] :scaling_configuration
|
16774
|
+
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
16775
|
+
# of the DB cluster.
|
16776
|
+
#
|
16777
|
+
# @option params [String] :engine_mode
|
16778
|
+
# The engine mode of the new cluster. Specify `provisioned` or
|
16779
|
+
# `serverless`, depending on the type of the cluster you are creating.
|
16780
|
+
# You can create an Aurora Serverless clone from a provisioned cluster,
|
16781
|
+
# or a provisioned clone from an Aurora Serverless cluster. To create a
|
16782
|
+
# clone that is an Aurora Serverless cluster, the original cluster must
|
16783
|
+
# be an Aurora Serverless cluster or an encrypted provisioned cluster.
|
16784
|
+
#
|
16499
16785
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
16500
16786
|
#
|
16501
16787
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -16544,6 +16830,14 @@ module Aws::RDS
|
|
16544
16830
|
# copy_tags_to_snapshot: false,
|
16545
16831
|
# domain: "String",
|
16546
16832
|
# domain_iam_role_name: "String",
|
16833
|
+
# scaling_configuration: {
|
16834
|
+
# min_capacity: 1,
|
16835
|
+
# max_capacity: 1,
|
16836
|
+
# auto_pause: false,
|
16837
|
+
# seconds_until_auto_pause: 1,
|
16838
|
+
# timeout_action: "String",
|
16839
|
+
# },
|
16840
|
+
# engine_mode: "String",
|
16547
16841
|
# })
|
16548
16842
|
#
|
16549
16843
|
# @example Response structure
|
@@ -17385,8 +17679,8 @@ module Aws::RDS
|
|
17385
17679
|
#
|
17386
17680
|
# @option params [String] :preferred_backup_window
|
17387
17681
|
# The time range each day during which automated backups are created if
|
17388
|
-
# automated backups are enabled. For more information, see [
|
17389
|
-
#
|
17682
|
+
# automated backups are enabled. For more information, see [Backup
|
17683
|
+
# window][1] in the *Amazon RDS User Guide.*
|
17390
17684
|
#
|
17391
17685
|
# Constraints:
|
17392
17686
|
#
|
@@ -18454,7 +18748,7 @@ module Aws::RDS
|
|
18454
18748
|
end
|
18455
18749
|
|
18456
18750
|
# Revokes ingress from a DBSecurityGroup for previously authorized IP
|
18457
|
-
# ranges or EC2 or VPC
|
18751
|
+
# ranges or EC2 or VPC security groups. Required parameters for this API
|
18458
18752
|
# are one of CIDRIP, EC2SecurityGroupId for VPC, or
|
18459
18753
|
# (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or
|
18460
18754
|
# EC2SecurityGroupId).
|
@@ -19539,7 +19833,7 @@ module Aws::RDS
|
|
19539
19833
|
params: params,
|
19540
19834
|
config: config)
|
19541
19835
|
context[:gem_name] = 'aws-sdk-rds'
|
19542
|
-
context[:gem_version] = '1.
|
19836
|
+
context[:gem_version] = '1.120.0'
|
19543
19837
|
Seahorse::Client::Request.new(handlers, context)
|
19544
19838
|
end
|
19545
19839
|
|