aws-sdk-rds 1.78.0 → 1.79.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +7 -4
- data/lib/aws-sdk-rds/account_quota.rb +1 -0
- data/lib/aws-sdk-rds/certificate.rb +1 -0
- data/lib/aws-sdk-rds/client.rb +61 -10
- data/lib/aws-sdk-rds/client_api.rb +224 -0
- data/lib/aws-sdk-rds/db_cluster.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +1 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -0
- data/lib/aws-sdk-rds/db_engine.rb +1 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +1 -0
- data/lib/aws-sdk-rds/db_instance.rb +1 -0
- data/lib/aws-sdk-rds/db_log_file.rb +1 -0
- data/lib/aws-sdk-rds/db_parameter_group.rb +1 -0
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +1 -0
- data/lib/aws-sdk-rds/db_security_group.rb +1 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -0
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +1 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +1 -0
- data/lib/aws-sdk-rds/errors.rb +1254 -0
- data/lib/aws-sdk-rds/event.rb +1 -0
- data/lib/aws-sdk-rds/event_category_map.rb +1 -0
- data/lib/aws-sdk-rds/event_subscription.rb +1 -0
- data/lib/aws-sdk-rds/option_group.rb +1 -0
- data/lib/aws-sdk-rds/option_group_option.rb +1 -0
- data/lib/aws-sdk-rds/parameter.rb +1 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +1 -0
- data/lib/aws-sdk-rds/reserved_db_instance.rb +1 -0
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +1 -0
- data/lib/aws-sdk-rds/resource.rb +7 -0
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +1 -0
- data/lib/aws-sdk-rds/types.rb +724 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 44d63c4221f1878492e675a3a7f54d5b18c36d1d
|
4
|
+
data.tar.gz: 60b0da522b11b2a5bf64e0d0f751bec23f1280ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e3d654dc87b4f603dc7a6fc3ec8fbe53e62ad8fdca8fbdd1eb002ec476151fc53ef2b9102a31d936285ff921a241aa4661841e8a7f2f1411154c277d945be78d
|
7
|
+
data.tar.gz: 94dc4e027de986d824f56f0801b0f25f49eb1aacbd770ad4f5a99021c5494ab5d1dec4f363062e5b092b882dabb5365fdeafed169ad5b1c0d3608a0e4589eb87
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -50,17 +50,20 @@ require_relative 'aws-sdk-rds/customizations'
|
|
50
50
|
# methods each accept a hash of request parameters and return a response
|
51
51
|
# structure.
|
52
52
|
#
|
53
|
+
# rds = Aws::RDS::Client.new
|
54
|
+
# resp = rds.add_role_to_db_cluster(params)
|
55
|
+
#
|
53
56
|
# See {Client} for more information.
|
54
57
|
#
|
55
58
|
# # Errors
|
56
59
|
#
|
57
|
-
# Errors returned from Amazon Relational Database Service
|
58
|
-
# extend {Errors::ServiceError}.
|
60
|
+
# Errors returned from Amazon Relational Database Service are defined in the
|
61
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
59
62
|
#
|
60
63
|
# begin
|
61
64
|
# # do stuff
|
62
65
|
# rescue Aws::RDS::Errors::ServiceError
|
63
|
-
# # rescues all
|
66
|
+
# # rescues all Amazon Relational Database Service API errors
|
64
67
|
# end
|
65
68
|
#
|
66
69
|
# See {Errors} for more information.
|
@@ -68,6 +71,6 @@ require_relative 'aws-sdk-rds/customizations'
|
|
68
71
|
# @service
|
69
72
|
module Aws::RDS
|
70
73
|
|
71
|
-
GEM_VERSION = '1.
|
74
|
+
GEM_VERSION = '1.79.0'
|
72
75
|
|
73
76
|
end
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -31,6 +31,18 @@ require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
|
31
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:rds)
|
32
32
|
|
33
33
|
module Aws::RDS
|
34
|
+
# An API client for RDS. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
36
|
+
# client = Aws::RDS::Client.new(
|
37
|
+
# region: region_name,
|
38
|
+
# credentials: credentials,
|
39
|
+
# # ...
|
40
|
+
# )
|
41
|
+
#
|
42
|
+
# For details on configuring region and credentials see
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
44
|
+
#
|
45
|
+
# See {#initialize} for a full list of supported configuration options.
|
34
46
|
class Client < Seahorse::Client::Base
|
35
47
|
|
36
48
|
include Aws::ClientStubs
|
@@ -110,6 +122,12 @@ module Aws::RDS
|
|
110
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
111
123
|
# the background every 60 secs (default). Defaults to `false`.
|
112
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
113
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
114
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
115
133
|
# this client.
|
@@ -134,6 +152,10 @@ module Aws::RDS
|
|
134
152
|
# When `true`, an attempt is made to coerce request parameters into
|
135
153
|
# the required types.
|
136
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
137
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
138
160
|
# Set to true to disable SDK automatically adding host prefix
|
139
161
|
# to default service endpoint when available.
|
@@ -168,15 +190,29 @@ module Aws::RDS
|
|
168
190
|
# The Logger instance to send log messages to. If this option
|
169
191
|
# is not set, logging will be disabled.
|
170
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
171
199
|
# @option options [String] :profile ("default")
|
172
200
|
# Used when loading credentials from the shared credentials file
|
173
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
174
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
175
207
|
# @option options [Float] :retry_base_delay (0.3)
|
176
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
177
210
|
#
|
178
211
|
# @option options [Symbol] :retry_jitter (:none)
|
179
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
180
216
|
#
|
181
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
182
218
|
#
|
@@ -184,11 +220,26 @@ module Aws::RDS
|
|
184
220
|
# The maximum number of times to retry failed requests. Only
|
185
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
186
222
|
# are retried. Generally, these are throttling errors, data
|
187
|
-
# checksum errors, networking errors, timeout errors
|
188
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
189
226
|
#
|
190
227
|
# @option options [Integer] :retry_max_delay (0)
|
191
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
235
|
+
# no retry mode is provided.
|
236
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
237
|
+
# This includes support for retry quotas, which limit the number of
|
238
|
+
# unsuccessful retries a client can make.
|
239
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
240
|
+
# functionality of `standard` mode along with automatic client side
|
241
|
+
# throttling. This is a provisional mode that may change behavior
|
242
|
+
# in the future.
|
192
243
|
#
|
193
244
|
# @option options [String] :secret_access_key
|
194
245
|
#
|
@@ -211,16 +262,16 @@ module Aws::RDS
|
|
211
262
|
# requests through. Formatted like 'http://proxy.com:123'.
|
212
263
|
#
|
213
264
|
# @option options [Float] :http_open_timeout (15) The number of
|
214
|
-
# seconds to wait when opening a HTTP session before
|
265
|
+
# seconds to wait when opening a HTTP session before raising a
|
215
266
|
# `Timeout::Error`.
|
216
267
|
#
|
217
268
|
# @option options [Integer] :http_read_timeout (60) The default
|
218
269
|
# number of seconds to wait for response data. This value can
|
219
270
|
# safely be set
|
220
|
-
# per-request on the session
|
271
|
+
# per-request on the session yielded by {#session_for}.
|
221
272
|
#
|
222
273
|
# @option options [Float] :http_idle_timeout (5) The number of
|
223
|
-
# seconds a connection is allowed to sit
|
274
|
+
# seconds a connection is allowed to sit idle before it is
|
224
275
|
# considered stale. Stale connections are closed and removed
|
225
276
|
# from the pool before making a request.
|
226
277
|
#
|
@@ -229,7 +280,7 @@ module Aws::RDS
|
|
229
280
|
# request body. This option has no effect unless the request has
|
230
281
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
231
282
|
# disables this behaviour. This value can safely be set per
|
232
|
-
# request on the session
|
283
|
+
# request on the session yielded by {#session_for}.
|
233
284
|
#
|
234
285
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
235
286
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -18229,7 +18280,7 @@ module Aws::RDS
|
|
18229
18280
|
params: params,
|
18230
18281
|
config: config)
|
18231
18282
|
context[:gem_name] = 'aws-sdk-rds'
|
18232
|
-
context[:gem_version] = '1.
|
18283
|
+
context[:gem_version] = '1.79.0'
|
18233
18284
|
Seahorse::Client::Request.new(handlers, context)
|
18234
18285
|
end
|
18235
18286
|
|
@@ -601,6 +601,12 @@ module Aws::RDS
|
|
601
601
|
|
602
602
|
AttributeValueList.member = Shapes::ShapeRef.new(shape: String, location_name: "AttributeValue")
|
603
603
|
|
604
|
+
AuthorizationAlreadyExistsFault.struct_class = Types::AuthorizationAlreadyExistsFault
|
605
|
+
|
606
|
+
AuthorizationNotFoundFault.struct_class = Types::AuthorizationNotFoundFault
|
607
|
+
|
608
|
+
AuthorizationQuotaExceededFault.struct_class = Types::AuthorizationQuotaExceededFault
|
609
|
+
|
604
610
|
AuthorizeDBSecurityGroupIngressMessage.add_member(:db_security_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBSecurityGroupName"))
|
605
611
|
AuthorizeDBSecurityGroupIngressMessage.add_member(:cidrip, Shapes::ShapeRef.new(shape: String, location_name: "CIDRIP"))
|
606
612
|
AuthorizeDBSecurityGroupIngressMessage.add_member(:ec2_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "EC2SecurityGroupName"))
|
@@ -631,6 +637,8 @@ module Aws::RDS
|
|
631
637
|
BacktrackDBClusterMessage.add_member(:use_earliest_time_on_point_in_time_unavailable, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UseEarliestTimeOnPointInTimeUnavailable"))
|
632
638
|
BacktrackDBClusterMessage.struct_class = Types::BacktrackDBClusterMessage
|
633
639
|
|
640
|
+
BackupPolicyNotFoundFault.struct_class = Types::BackupPolicyNotFoundFault
|
641
|
+
|
634
642
|
CancelExportTaskMessage.add_member(:export_task_identifier, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ExportTaskIdentifier"))
|
635
643
|
CancelExportTaskMessage.struct_class = Types::CancelExportTaskMessage
|
636
644
|
|
@@ -650,6 +658,8 @@ module Aws::RDS
|
|
650
658
|
CertificateMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
651
659
|
CertificateMessage.struct_class = Types::CertificateMessage
|
652
660
|
|
661
|
+
CertificateNotFoundFault.struct_class = Types::CertificateNotFoundFault
|
662
|
+
|
653
663
|
CharacterSet.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
654
664
|
CharacterSet.add_member(:character_set_description, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetDescription"))
|
655
665
|
CharacterSet.struct_class = Types::CharacterSet
|
@@ -976,12 +986,18 @@ module Aws::RDS
|
|
976
986
|
CustomAvailabilityZone.add_member(:vpn_details, Shapes::ShapeRef.new(shape: VpnDetails, location_name: "VpnDetails"))
|
977
987
|
CustomAvailabilityZone.struct_class = Types::CustomAvailabilityZone
|
978
988
|
|
989
|
+
CustomAvailabilityZoneAlreadyExistsFault.struct_class = Types::CustomAvailabilityZoneAlreadyExistsFault
|
990
|
+
|
979
991
|
CustomAvailabilityZoneList.member = Shapes::ShapeRef.new(shape: CustomAvailabilityZone, location_name: "CustomAvailabilityZone")
|
980
992
|
|
981
993
|
CustomAvailabilityZoneMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
982
994
|
CustomAvailabilityZoneMessage.add_member(:custom_availability_zones, Shapes::ShapeRef.new(shape: CustomAvailabilityZoneList, location_name: "CustomAvailabilityZones"))
|
983
995
|
CustomAvailabilityZoneMessage.struct_class = Types::CustomAvailabilityZoneMessage
|
984
996
|
|
997
|
+
CustomAvailabilityZoneNotFoundFault.struct_class = Types::CustomAvailabilityZoneNotFoundFault
|
998
|
+
|
999
|
+
CustomAvailabilityZoneQuotaExceededFault.struct_class = Types::CustomAvailabilityZoneQuotaExceededFault
|
1000
|
+
|
985
1001
|
DBCluster.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
|
986
1002
|
DBCluster.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
987
1003
|
DBCluster.add_member(:backup_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "BackupRetentionPeriod"))
|
@@ -1036,6 +1052,8 @@ module Aws::RDS
|
|
1036
1052
|
DBCluster.add_member(:domain_memberships, Shapes::ShapeRef.new(shape: DomainMembershipList, location_name: "DomainMemberships"))
|
1037
1053
|
DBCluster.struct_class = Types::DBCluster
|
1038
1054
|
|
1055
|
+
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
1056
|
+
|
1039
1057
|
DBClusterBacktrack.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
1040
1058
|
DBClusterBacktrack.add_member(:backtrack_identifier, Shapes::ShapeRef.new(shape: String, location_name: "BacktrackIdentifier"))
|
1041
1059
|
DBClusterBacktrack.add_member(:backtrack_to, Shapes::ShapeRef.new(shape: TStamp, location_name: "BacktrackTo"))
|
@@ -1050,6 +1068,8 @@ module Aws::RDS
|
|
1050
1068
|
DBClusterBacktrackMessage.add_member(:db_cluster_backtracks, Shapes::ShapeRef.new(shape: DBClusterBacktrackList, location_name: "DBClusterBacktracks"))
|
1051
1069
|
DBClusterBacktrackMessage.struct_class = Types::DBClusterBacktrackMessage
|
1052
1070
|
|
1071
|
+
DBClusterBacktrackNotFoundFault.struct_class = Types::DBClusterBacktrackNotFoundFault
|
1072
|
+
|
1053
1073
|
DBClusterCapacityInfo.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
1054
1074
|
DBClusterCapacityInfo.add_member(:pending_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PendingCapacity"))
|
1055
1075
|
DBClusterCapacityInfo.add_member(:current_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "CurrentCapacity"))
|
@@ -1069,12 +1089,18 @@ module Aws::RDS
|
|
1069
1089
|
DBClusterEndpoint.add_member(:db_cluster_endpoint_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterEndpointArn"))
|
1070
1090
|
DBClusterEndpoint.struct_class = Types::DBClusterEndpoint
|
1071
1091
|
|
1092
|
+
DBClusterEndpointAlreadyExistsFault.struct_class = Types::DBClusterEndpointAlreadyExistsFault
|
1093
|
+
|
1072
1094
|
DBClusterEndpointList.member = Shapes::ShapeRef.new(shape: DBClusterEndpoint, location_name: "DBClusterEndpointList")
|
1073
1095
|
|
1074
1096
|
DBClusterEndpointMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1075
1097
|
DBClusterEndpointMessage.add_member(:db_cluster_endpoints, Shapes::ShapeRef.new(shape: DBClusterEndpointList, location_name: "DBClusterEndpoints"))
|
1076
1098
|
DBClusterEndpointMessage.struct_class = Types::DBClusterEndpointMessage
|
1077
1099
|
|
1100
|
+
DBClusterEndpointNotFoundFault.struct_class = Types::DBClusterEndpointNotFoundFault
|
1101
|
+
|
1102
|
+
DBClusterEndpointQuotaExceededFault.struct_class = Types::DBClusterEndpointQuotaExceededFault
|
1103
|
+
|
1078
1104
|
DBClusterList.member = Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster")
|
1079
1105
|
|
1080
1106
|
DBClusterMember.add_member(:db_instance_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceIdentifier"))
|
@@ -1089,6 +1115,8 @@ module Aws::RDS
|
|
1089
1115
|
DBClusterMessage.add_member(:db_clusters, Shapes::ShapeRef.new(shape: DBClusterList, location_name: "DBClusters"))
|
1090
1116
|
DBClusterMessage.struct_class = Types::DBClusterMessage
|
1091
1117
|
|
1118
|
+
DBClusterNotFoundFault.struct_class = Types::DBClusterNotFoundFault
|
1119
|
+
|
1092
1120
|
DBClusterOptionGroupMemberships.member = Shapes::ShapeRef.new(shape: DBClusterOptionGroupStatus, location_name: "DBClusterOptionGroup")
|
1093
1121
|
|
1094
1122
|
DBClusterOptionGroupStatus.add_member(:db_cluster_option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterOptionGroupName"))
|
@@ -1110,15 +1138,25 @@ module Aws::RDS
|
|
1110
1138
|
DBClusterParameterGroupNameMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterParameterGroupName"))
|
1111
1139
|
DBClusterParameterGroupNameMessage.struct_class = Types::DBClusterParameterGroupNameMessage
|
1112
1140
|
|
1141
|
+
DBClusterParameterGroupNotFoundFault.struct_class = Types::DBClusterParameterGroupNotFoundFault
|
1142
|
+
|
1113
1143
|
DBClusterParameterGroupsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1114
1144
|
DBClusterParameterGroupsMessage.add_member(:db_cluster_parameter_groups, Shapes::ShapeRef.new(shape: DBClusterParameterGroupList, location_name: "DBClusterParameterGroups"))
|
1115
1145
|
DBClusterParameterGroupsMessage.struct_class = Types::DBClusterParameterGroupsMessage
|
1116
1146
|
|
1147
|
+
DBClusterQuotaExceededFault.struct_class = Types::DBClusterQuotaExceededFault
|
1148
|
+
|
1117
1149
|
DBClusterRole.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
|
1118
1150
|
DBClusterRole.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
1119
1151
|
DBClusterRole.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
|
1120
1152
|
DBClusterRole.struct_class = Types::DBClusterRole
|
1121
1153
|
|
1154
|
+
DBClusterRoleAlreadyExistsFault.struct_class = Types::DBClusterRoleAlreadyExistsFault
|
1155
|
+
|
1156
|
+
DBClusterRoleNotFoundFault.struct_class = Types::DBClusterRoleNotFoundFault
|
1157
|
+
|
1158
|
+
DBClusterRoleQuotaExceededFault.struct_class = Types::DBClusterRoleQuotaExceededFault
|
1159
|
+
|
1122
1160
|
DBClusterRoles.member = Shapes::ShapeRef.new(shape: DBClusterRole, location_name: "DBClusterRole")
|
1123
1161
|
|
1124
1162
|
DBClusterSnapshot.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZones, location_name: "AvailabilityZones"))
|
@@ -1143,6 +1181,8 @@ module Aws::RDS
|
|
1143
1181
|
DBClusterSnapshot.add_member(:iam_database_authentication_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "IAMDatabaseAuthenticationEnabled"))
|
1144
1182
|
DBClusterSnapshot.struct_class = Types::DBClusterSnapshot
|
1145
1183
|
|
1184
|
+
DBClusterSnapshotAlreadyExistsFault.struct_class = Types::DBClusterSnapshotAlreadyExistsFault
|
1185
|
+
|
1146
1186
|
DBClusterSnapshotAttribute.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, location_name: "AttributeName"))
|
1147
1187
|
DBClusterSnapshotAttribute.add_member(:attribute_values, Shapes::ShapeRef.new(shape: AttributeValueList, location_name: "AttributeValues"))
|
1148
1188
|
DBClusterSnapshotAttribute.struct_class = Types::DBClusterSnapshotAttribute
|
@@ -1159,6 +1199,8 @@ module Aws::RDS
|
|
1159
1199
|
DBClusterSnapshotMessage.add_member(:db_cluster_snapshots, Shapes::ShapeRef.new(shape: DBClusterSnapshotList, location_name: "DBClusterSnapshots"))
|
1160
1200
|
DBClusterSnapshotMessage.struct_class = Types::DBClusterSnapshotMessage
|
1161
1201
|
|
1202
|
+
DBClusterSnapshotNotFoundFault.struct_class = Types::DBClusterSnapshotNotFoundFault
|
1203
|
+
|
1162
1204
|
DBEngineVersion.add_member(:engine, Shapes::ShapeRef.new(shape: String, location_name: "Engine"))
|
1163
1205
|
DBEngineVersion.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1164
1206
|
DBEngineVersion.add_member(:db_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupFamily"))
|
@@ -1242,6 +1284,8 @@ module Aws::RDS
|
|
1242
1284
|
DBInstance.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
1243
1285
|
DBInstance.struct_class = Types::DBInstance
|
1244
1286
|
|
1287
|
+
DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
|
1288
|
+
|
1245
1289
|
DBInstanceAutomatedBackup.add_member(:db_instance_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceArn"))
|
1246
1290
|
DBInstanceAutomatedBackup.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1247
1291
|
DBInstanceAutomatedBackup.add_member(:region, Shapes::ShapeRef.new(shape: String, location_name: "Region"))
|
@@ -1273,17 +1317,29 @@ module Aws::RDS
|
|
1273
1317
|
DBInstanceAutomatedBackupMessage.add_member(:db_instance_automated_backups, Shapes::ShapeRef.new(shape: DBInstanceAutomatedBackupList, location_name: "DBInstanceAutomatedBackups"))
|
1274
1318
|
DBInstanceAutomatedBackupMessage.struct_class = Types::DBInstanceAutomatedBackupMessage
|
1275
1319
|
|
1320
|
+
DBInstanceAutomatedBackupNotFoundFault.struct_class = Types::DBInstanceAutomatedBackupNotFoundFault
|
1321
|
+
|
1322
|
+
DBInstanceAutomatedBackupQuotaExceededFault.struct_class = Types::DBInstanceAutomatedBackupQuotaExceededFault
|
1323
|
+
|
1276
1324
|
DBInstanceList.member = Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance")
|
1277
1325
|
|
1278
1326
|
DBInstanceMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1279
1327
|
DBInstanceMessage.add_member(:db_instances, Shapes::ShapeRef.new(shape: DBInstanceList, location_name: "DBInstances"))
|
1280
1328
|
DBInstanceMessage.struct_class = Types::DBInstanceMessage
|
1281
1329
|
|
1330
|
+
DBInstanceNotFoundFault.struct_class = Types::DBInstanceNotFoundFault
|
1331
|
+
|
1282
1332
|
DBInstanceRole.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, location_name: "RoleArn"))
|
1283
1333
|
DBInstanceRole.add_member(:feature_name, Shapes::ShapeRef.new(shape: String, location_name: "FeatureName"))
|
1284
1334
|
DBInstanceRole.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
1285
1335
|
DBInstanceRole.struct_class = Types::DBInstanceRole
|
1286
1336
|
|
1337
|
+
DBInstanceRoleAlreadyExistsFault.struct_class = Types::DBInstanceRoleAlreadyExistsFault
|
1338
|
+
|
1339
|
+
DBInstanceRoleNotFoundFault.struct_class = Types::DBInstanceRoleNotFoundFault
|
1340
|
+
|
1341
|
+
DBInstanceRoleQuotaExceededFault.struct_class = Types::DBInstanceRoleQuotaExceededFault
|
1342
|
+
|
1287
1343
|
DBInstanceRoles.member = Shapes::ShapeRef.new(shape: DBInstanceRole, location_name: "DBInstanceRole")
|
1288
1344
|
|
1289
1345
|
DBInstanceStatusInfo.add_member(:status_type, Shapes::ShapeRef.new(shape: String, location_name: "StatusType"))
|
@@ -1294,12 +1350,16 @@ module Aws::RDS
|
|
1294
1350
|
|
1295
1351
|
DBInstanceStatusInfoList.member = Shapes::ShapeRef.new(shape: DBInstanceStatusInfo, location_name: "DBInstanceStatusInfo")
|
1296
1352
|
|
1353
|
+
DBLogFileNotFoundFault.struct_class = Types::DBLogFileNotFoundFault
|
1354
|
+
|
1297
1355
|
DBParameterGroup.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
1298
1356
|
DBParameterGroup.add_member(:db_parameter_group_family, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupFamily"))
|
1299
1357
|
DBParameterGroup.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
1300
1358
|
DBParameterGroup.add_member(:db_parameter_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupArn"))
|
1301
1359
|
DBParameterGroup.struct_class = Types::DBParameterGroup
|
1302
1360
|
|
1361
|
+
DBParameterGroupAlreadyExistsFault.struct_class = Types::DBParameterGroupAlreadyExistsFault
|
1362
|
+
|
1303
1363
|
DBParameterGroupDetails.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
|
1304
1364
|
DBParameterGroupDetails.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1305
1365
|
DBParameterGroupDetails.struct_class = Types::DBParameterGroupDetails
|
@@ -1309,6 +1369,10 @@ module Aws::RDS
|
|
1309
1369
|
DBParameterGroupNameMessage.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
1310
1370
|
DBParameterGroupNameMessage.struct_class = Types::DBParameterGroupNameMessage
|
1311
1371
|
|
1372
|
+
DBParameterGroupNotFoundFault.struct_class = Types::DBParameterGroupNotFoundFault
|
1373
|
+
|
1374
|
+
DBParameterGroupQuotaExceededFault.struct_class = Types::DBParameterGroupQuotaExceededFault
|
1375
|
+
|
1312
1376
|
DBParameterGroupStatus.add_member(:db_parameter_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBParameterGroupName"))
|
1313
1377
|
DBParameterGroupStatus.add_member(:parameter_apply_status, Shapes::ShapeRef.new(shape: String, location_name: "ParameterApplyStatus"))
|
1314
1378
|
DBParameterGroupStatus.struct_class = Types::DBParameterGroupStatus
|
@@ -1335,8 +1399,14 @@ module Aws::RDS
|
|
1335
1399
|
DBProxy.add_member(:updated_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "UpdatedDate"))
|
1336
1400
|
DBProxy.struct_class = Types::DBProxy
|
1337
1401
|
|
1402
|
+
DBProxyAlreadyExistsFault.struct_class = Types::DBProxyAlreadyExistsFault
|
1403
|
+
|
1338
1404
|
DBProxyList.member = Shapes::ShapeRef.new(shape: DBProxy)
|
1339
1405
|
|
1406
|
+
DBProxyNotFoundFault.struct_class = Types::DBProxyNotFoundFault
|
1407
|
+
|
1408
|
+
DBProxyQuotaExceededFault.struct_class = Types::DBProxyQuotaExceededFault
|
1409
|
+
|
1340
1410
|
DBProxyTarget.add_member(:target_arn, Shapes::ShapeRef.new(shape: String, location_name: "TargetArn"))
|
1341
1411
|
DBProxyTarget.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
1342
1412
|
DBProxyTarget.add_member(:tracked_cluster_id, Shapes::ShapeRef.new(shape: String, location_name: "TrackedClusterId"))
|
@@ -1345,6 +1415,8 @@ module Aws::RDS
|
|
1345
1415
|
DBProxyTarget.add_member(:type, Shapes::ShapeRef.new(shape: TargetType, location_name: "Type"))
|
1346
1416
|
DBProxyTarget.struct_class = Types::DBProxyTarget
|
1347
1417
|
|
1418
|
+
DBProxyTargetAlreadyRegisteredFault.struct_class = Types::DBProxyTargetAlreadyRegisteredFault
|
1419
|
+
|
1348
1420
|
DBProxyTargetGroup.add_member(:db_proxy_name, Shapes::ShapeRef.new(shape: String, location_name: "DBProxyName"))
|
1349
1421
|
DBProxyTargetGroup.add_member(:target_group_name, Shapes::ShapeRef.new(shape: String, location_name: "TargetGroupName"))
|
1350
1422
|
DBProxyTargetGroup.add_member(:target_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "TargetGroupArn"))
|
@@ -1355,6 +1427,10 @@ module Aws::RDS
|
|
1355
1427
|
DBProxyTargetGroup.add_member(:updated_date, Shapes::ShapeRef.new(shape: TStamp, location_name: "UpdatedDate"))
|
1356
1428
|
DBProxyTargetGroup.struct_class = Types::DBProxyTargetGroup
|
1357
1429
|
|
1430
|
+
DBProxyTargetGroupNotFoundFault.struct_class = Types::DBProxyTargetGroupNotFoundFault
|
1431
|
+
|
1432
|
+
DBProxyTargetNotFoundFault.struct_class = Types::DBProxyTargetNotFoundFault
|
1433
|
+
|
1358
1434
|
DBSecurityGroup.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "OwnerId"))
|
1359
1435
|
DBSecurityGroup.add_member(:db_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupName"))
|
1360
1436
|
DBSecurityGroup.add_member(:db_security_group_description, Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupDescription"))
|
@@ -1364,6 +1440,8 @@ module Aws::RDS
|
|
1364
1440
|
DBSecurityGroup.add_member(:db_security_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupArn"))
|
1365
1441
|
DBSecurityGroup.struct_class = Types::DBSecurityGroup
|
1366
1442
|
|
1443
|
+
DBSecurityGroupAlreadyExistsFault.struct_class = Types::DBSecurityGroupAlreadyExistsFault
|
1444
|
+
|
1367
1445
|
DBSecurityGroupMembership.add_member(:db_security_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupName"))
|
1368
1446
|
DBSecurityGroupMembership.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
1369
1447
|
DBSecurityGroupMembership.struct_class = Types::DBSecurityGroupMembership
|
@@ -1376,6 +1454,12 @@ module Aws::RDS
|
|
1376
1454
|
|
1377
1455
|
DBSecurityGroupNameList.member = Shapes::ShapeRef.new(shape: String, location_name: "DBSecurityGroupName")
|
1378
1456
|
|
1457
|
+
DBSecurityGroupNotFoundFault.struct_class = Types::DBSecurityGroupNotFoundFault
|
1458
|
+
|
1459
|
+
DBSecurityGroupNotSupportedFault.struct_class = Types::DBSecurityGroupNotSupportedFault
|
1460
|
+
|
1461
|
+
DBSecurityGroupQuotaExceededFault.struct_class = Types::DBSecurityGroupQuotaExceededFault
|
1462
|
+
|
1379
1463
|
DBSecurityGroups.member = Shapes::ShapeRef.new(shape: DBSecurityGroup, location_name: "DBSecurityGroup")
|
1380
1464
|
|
1381
1465
|
DBSnapshot.add_member(:db_snapshot_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBSnapshotIdentifier"))
|
@@ -1408,6 +1492,8 @@ module Aws::RDS
|
|
1408
1492
|
DBSnapshot.add_member(:dbi_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "DbiResourceId"))
|
1409
1493
|
DBSnapshot.struct_class = Types::DBSnapshot
|
1410
1494
|
|
1495
|
+
DBSnapshotAlreadyExistsFault.struct_class = Types::DBSnapshotAlreadyExistsFault
|
1496
|
+
|
1411
1497
|
DBSnapshotAttribute.add_member(:attribute_name, Shapes::ShapeRef.new(shape: String, location_name: "AttributeName"))
|
1412
1498
|
DBSnapshotAttribute.add_member(:attribute_values, Shapes::ShapeRef.new(shape: AttributeValueList, location_name: "AttributeValues"))
|
1413
1499
|
DBSnapshotAttribute.struct_class = Types::DBSnapshotAttribute
|
@@ -1424,6 +1510,8 @@ module Aws::RDS
|
|
1424
1510
|
DBSnapshotMessage.add_member(:db_snapshots, Shapes::ShapeRef.new(shape: DBSnapshotList, location_name: "DBSnapshots"))
|
1425
1511
|
DBSnapshotMessage.struct_class = Types::DBSnapshotMessage
|
1426
1512
|
|
1513
|
+
DBSnapshotNotFoundFault.struct_class = Types::DBSnapshotNotFoundFault
|
1514
|
+
|
1427
1515
|
DBSubnetGroup.add_member(:db_subnet_group_name, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupName"))
|
1428
1516
|
DBSubnetGroup.add_member(:db_subnet_group_description, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupDescription"))
|
1429
1517
|
DBSubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
@@ -1432,12 +1520,26 @@ module Aws::RDS
|
|
1432
1520
|
DBSubnetGroup.add_member(:db_subnet_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBSubnetGroupArn"))
|
1433
1521
|
DBSubnetGroup.struct_class = Types::DBSubnetGroup
|
1434
1522
|
|
1523
|
+
DBSubnetGroupAlreadyExistsFault.struct_class = Types::DBSubnetGroupAlreadyExistsFault
|
1524
|
+
|
1525
|
+
DBSubnetGroupDoesNotCoverEnoughAZs.struct_class = Types::DBSubnetGroupDoesNotCoverEnoughAZs
|
1526
|
+
|
1435
1527
|
DBSubnetGroupMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1436
1528
|
DBSubnetGroupMessage.add_member(:db_subnet_groups, Shapes::ShapeRef.new(shape: DBSubnetGroups, location_name: "DBSubnetGroups"))
|
1437
1529
|
DBSubnetGroupMessage.struct_class = Types::DBSubnetGroupMessage
|
1438
1530
|
|
1531
|
+
DBSubnetGroupNotAllowedFault.struct_class = Types::DBSubnetGroupNotAllowedFault
|
1532
|
+
|
1533
|
+
DBSubnetGroupNotFoundFault.struct_class = Types::DBSubnetGroupNotFoundFault
|
1534
|
+
|
1535
|
+
DBSubnetGroupQuotaExceededFault.struct_class = Types::DBSubnetGroupQuotaExceededFault
|
1536
|
+
|
1439
1537
|
DBSubnetGroups.member = Shapes::ShapeRef.new(shape: DBSubnetGroup, location_name: "DBSubnetGroup")
|
1440
1538
|
|
1539
|
+
DBSubnetQuotaExceededFault.struct_class = Types::DBSubnetQuotaExceededFault
|
1540
|
+
|
1541
|
+
DBUpgradeDependencyFailureFault.struct_class = Types::DBUpgradeDependencyFailureFault
|
1542
|
+
|
1441
1543
|
DeleteCustomAvailabilityZoneMessage.add_member(:custom_availability_zone_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CustomAvailabilityZoneId"))
|
1442
1544
|
DeleteCustomAvailabilityZoneMessage.struct_class = Types::DeleteCustomAvailabilityZoneMessage
|
1443
1545
|
|
@@ -1842,6 +1944,8 @@ module Aws::RDS
|
|
1842
1944
|
|
1843
1945
|
DomainMembershipList.member = Shapes::ShapeRef.new(shape: DomainMembership, location_name: "DomainMembership")
|
1844
1946
|
|
1947
|
+
DomainNotFoundFault.struct_class = Types::DomainNotFoundFault
|
1948
|
+
|
1845
1949
|
DoubleRange.add_member(:from, Shapes::ShapeRef.new(shape: Double, location_name: "From"))
|
1846
1950
|
DoubleRange.add_member(:to, Shapes::ShapeRef.new(shape: Double, location_name: "To"))
|
1847
1951
|
DoubleRange.struct_class = Types::DoubleRange
|
@@ -1912,6 +2016,8 @@ module Aws::RDS
|
|
1912
2016
|
EventSubscription.add_member(:event_subscription_arn, Shapes::ShapeRef.new(shape: String, location_name: "EventSubscriptionArn"))
|
1913
2017
|
EventSubscription.struct_class = Types::EventSubscription
|
1914
2018
|
|
2019
|
+
EventSubscriptionQuotaExceededFault.struct_class = Types::EventSubscriptionQuotaExceededFault
|
2020
|
+
|
1915
2021
|
EventSubscriptionsList.member = Shapes::ShapeRef.new(shape: EventSubscription, location_name: "EventSubscription")
|
1916
2022
|
|
1917
2023
|
EventSubscriptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -1939,6 +2045,10 @@ module Aws::RDS
|
|
1939
2045
|
ExportTask.add_member(:warning_message, Shapes::ShapeRef.new(shape: String, location_name: "WarningMessage"))
|
1940
2046
|
ExportTask.struct_class = Types::ExportTask
|
1941
2047
|
|
2048
|
+
ExportTaskAlreadyExistsFault.struct_class = Types::ExportTaskAlreadyExistsFault
|
2049
|
+
|
2050
|
+
ExportTaskNotFoundFault.struct_class = Types::ExportTaskNotFoundFault
|
2051
|
+
|
1942
2052
|
ExportTasksList.member = Shapes::ShapeRef.new(shape: ExportTask, location_name: "ExportTask")
|
1943
2053
|
|
1944
2054
|
ExportTasksMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
@@ -1974,6 +2084,8 @@ module Aws::RDS
|
|
1974
2084
|
GlobalCluster.add_member(:global_cluster_members, Shapes::ShapeRef.new(shape: GlobalClusterMemberList, location_name: "GlobalClusterMembers"))
|
1975
2085
|
GlobalCluster.struct_class = Types::GlobalCluster
|
1976
2086
|
|
2087
|
+
GlobalClusterAlreadyExistsFault.struct_class = Types::GlobalClusterAlreadyExistsFault
|
2088
|
+
|
1977
2089
|
GlobalClusterList.member = Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalClusterMember")
|
1978
2090
|
|
1979
2091
|
GlobalClusterMember.add_member(:db_cluster_arn, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterArn"))
|
@@ -1983,6 +2095,10 @@ module Aws::RDS
|
|
1983
2095
|
|
1984
2096
|
GlobalClusterMemberList.member = Shapes::ShapeRef.new(shape: GlobalClusterMember, location_name: "GlobalClusterMember")
|
1985
2097
|
|
2098
|
+
GlobalClusterNotFoundFault.struct_class = Types::GlobalClusterNotFoundFault
|
2099
|
+
|
2100
|
+
GlobalClusterQuotaExceededFault.struct_class = Types::GlobalClusterQuotaExceededFault
|
2101
|
+
|
1986
2102
|
GlobalClustersMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
1987
2103
|
GlobalClustersMessage.add_member(:global_clusters, Shapes::ShapeRef.new(shape: GlobalClusterList, location_name: "GlobalClusters"))
|
1988
2104
|
GlobalClustersMessage.struct_class = Types::GlobalClustersMessage
|
@@ -1993,6 +2109,10 @@ module Aws::RDS
|
|
1993
2109
|
|
1994
2110
|
IPRangeList.member = Shapes::ShapeRef.new(shape: IPRange, location_name: "IPRange")
|
1995
2111
|
|
2112
|
+
IamRoleMissingPermissionsFault.struct_class = Types::IamRoleMissingPermissionsFault
|
2113
|
+
|
2114
|
+
IamRoleNotFoundFault.struct_class = Types::IamRoleNotFoundFault
|
2115
|
+
|
1996
2116
|
ImportInstallationMediaMessage.add_member(:custom_availability_zone_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "CustomAvailabilityZoneId"))
|
1997
2117
|
ImportInstallationMediaMessage.add_member(:engine, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Engine"))
|
1998
2118
|
ImportInstallationMediaMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, required: true, location_name: "EngineVersion"))
|
@@ -2010,6 +2130,8 @@ module Aws::RDS
|
|
2010
2130
|
InstallationMedia.add_member(:failure_cause, Shapes::ShapeRef.new(shape: InstallationMediaFailureCause, location_name: "FailureCause"))
|
2011
2131
|
InstallationMedia.struct_class = Types::InstallationMedia
|
2012
2132
|
|
2133
|
+
InstallationMediaAlreadyExistsFault.struct_class = Types::InstallationMediaAlreadyExistsFault
|
2134
|
+
|
2013
2135
|
InstallationMediaFailureCause.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "Message"))
|
2014
2136
|
InstallationMediaFailureCause.struct_class = Types::InstallationMediaFailureCause
|
2015
2137
|
|
@@ -2019,6 +2141,64 @@ module Aws::RDS
|
|
2019
2141
|
InstallationMediaMessage.add_member(:installation_media, Shapes::ShapeRef.new(shape: InstallationMediaList, location_name: "InstallationMedia"))
|
2020
2142
|
InstallationMediaMessage.struct_class = Types::InstallationMediaMessage
|
2021
2143
|
|
2144
|
+
InstallationMediaNotFoundFault.struct_class = Types::InstallationMediaNotFoundFault
|
2145
|
+
|
2146
|
+
InstanceQuotaExceededFault.struct_class = Types::InstanceQuotaExceededFault
|
2147
|
+
|
2148
|
+
InsufficientDBClusterCapacityFault.struct_class = Types::InsufficientDBClusterCapacityFault
|
2149
|
+
|
2150
|
+
InsufficientDBInstanceCapacityFault.struct_class = Types::InsufficientDBInstanceCapacityFault
|
2151
|
+
|
2152
|
+
InsufficientStorageClusterCapacityFault.struct_class = Types::InsufficientStorageClusterCapacityFault
|
2153
|
+
|
2154
|
+
InvalidDBClusterCapacityFault.struct_class = Types::InvalidDBClusterCapacityFault
|
2155
|
+
|
2156
|
+
InvalidDBClusterEndpointStateFault.struct_class = Types::InvalidDBClusterEndpointStateFault
|
2157
|
+
|
2158
|
+
InvalidDBClusterSnapshotStateFault.struct_class = Types::InvalidDBClusterSnapshotStateFault
|
2159
|
+
|
2160
|
+
InvalidDBClusterStateFault.struct_class = Types::InvalidDBClusterStateFault
|
2161
|
+
|
2162
|
+
InvalidDBInstanceAutomatedBackupStateFault.struct_class = Types::InvalidDBInstanceAutomatedBackupStateFault
|
2163
|
+
|
2164
|
+
InvalidDBInstanceStateFault.struct_class = Types::InvalidDBInstanceStateFault
|
2165
|
+
|
2166
|
+
InvalidDBParameterGroupStateFault.struct_class = Types::InvalidDBParameterGroupStateFault
|
2167
|
+
|
2168
|
+
InvalidDBProxyStateFault.struct_class = Types::InvalidDBProxyStateFault
|
2169
|
+
|
2170
|
+
InvalidDBSecurityGroupStateFault.struct_class = Types::InvalidDBSecurityGroupStateFault
|
2171
|
+
|
2172
|
+
InvalidDBSnapshotStateFault.struct_class = Types::InvalidDBSnapshotStateFault
|
2173
|
+
|
2174
|
+
InvalidDBSubnetGroupFault.struct_class = Types::InvalidDBSubnetGroupFault
|
2175
|
+
|
2176
|
+
InvalidDBSubnetGroupStateFault.struct_class = Types::InvalidDBSubnetGroupStateFault
|
2177
|
+
|
2178
|
+
InvalidDBSubnetStateFault.struct_class = Types::InvalidDBSubnetStateFault
|
2179
|
+
|
2180
|
+
InvalidEventSubscriptionStateFault.struct_class = Types::InvalidEventSubscriptionStateFault
|
2181
|
+
|
2182
|
+
InvalidExportOnlyFault.struct_class = Types::InvalidExportOnlyFault
|
2183
|
+
|
2184
|
+
InvalidExportSourceStateFault.struct_class = Types::InvalidExportSourceStateFault
|
2185
|
+
|
2186
|
+
InvalidExportTaskStateFault.struct_class = Types::InvalidExportTaskStateFault
|
2187
|
+
|
2188
|
+
InvalidGlobalClusterStateFault.struct_class = Types::InvalidGlobalClusterStateFault
|
2189
|
+
|
2190
|
+
InvalidOptionGroupStateFault.struct_class = Types::InvalidOptionGroupStateFault
|
2191
|
+
|
2192
|
+
InvalidRestoreFault.struct_class = Types::InvalidRestoreFault
|
2193
|
+
|
2194
|
+
InvalidS3BucketFault.struct_class = Types::InvalidS3BucketFault
|
2195
|
+
|
2196
|
+
InvalidSubnet.struct_class = Types::InvalidSubnet
|
2197
|
+
|
2198
|
+
InvalidVPCNetworkStateFault.struct_class = Types::InvalidVPCNetworkStateFault
|
2199
|
+
|
2200
|
+
KMSKeyNotAccessibleFault.struct_class = Types::KMSKeyNotAccessibleFault
|
2201
|
+
|
2022
2202
|
KeyList.member = Shapes::ShapeRef.new(shape: String)
|
2023
2203
|
|
2024
2204
|
ListTagsForResourceMessage.add_member(:resource_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ResourceName"))
|
@@ -2249,12 +2429,16 @@ module Aws::RDS
|
|
2249
2429
|
OptionGroup.add_member(:option_group_arn, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupArn"))
|
2250
2430
|
OptionGroup.struct_class = Types::OptionGroup
|
2251
2431
|
|
2432
|
+
OptionGroupAlreadyExistsFault.struct_class = Types::OptionGroupAlreadyExistsFault
|
2433
|
+
|
2252
2434
|
OptionGroupMembership.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
2253
2435
|
OptionGroupMembership.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
2254
2436
|
OptionGroupMembership.struct_class = Types::OptionGroupMembership
|
2255
2437
|
|
2256
2438
|
OptionGroupMembershipList.member = Shapes::ShapeRef.new(shape: OptionGroupMembership, location_name: "OptionGroupMembership")
|
2257
2439
|
|
2440
|
+
OptionGroupNotFoundFault.struct_class = Types::OptionGroupNotFoundFault
|
2441
|
+
|
2258
2442
|
OptionGroupOption.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
2259
2443
|
OptionGroupOption.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
2260
2444
|
OptionGroupOption.add_member(:engine_name, Shapes::ShapeRef.new(shape: String, location_name: "EngineName"))
|
@@ -2293,6 +2477,8 @@ module Aws::RDS
|
|
2293
2477
|
OptionGroupOptionsMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2294
2478
|
OptionGroupOptionsMessage.struct_class = Types::OptionGroupOptionsMessage
|
2295
2479
|
|
2480
|
+
OptionGroupQuotaExceededFault.struct_class = Types::OptionGroupQuotaExceededFault
|
2481
|
+
|
2296
2482
|
OptionGroups.add_member(:option_groups_list, Shapes::ShapeRef.new(shape: OptionGroupsList, location_name: "OptionGroupsList"))
|
2297
2483
|
OptionGroups.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2298
2484
|
OptionGroups.struct_class = Types::OptionGroups
|
@@ -2410,6 +2596,8 @@ module Aws::RDS
|
|
2410
2596
|
PendingModifiedValues.add_member(:processor_features, Shapes::ShapeRef.new(shape: ProcessorFeatureList, location_name: "ProcessorFeatures"))
|
2411
2597
|
PendingModifiedValues.struct_class = Types::PendingModifiedValues
|
2412
2598
|
|
2599
|
+
PointInTimeRestoreNotEnabledFault.struct_class = Types::PointInTimeRestoreNotEnabledFault
|
2600
|
+
|
2413
2601
|
ProcessorFeature.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
2414
2602
|
ProcessorFeature.add_member(:value, Shapes::ShapeRef.new(shape: String, location_name: "Value"))
|
2415
2603
|
ProcessorFeature.struct_class = Types::ProcessorFeature
|
@@ -2430,6 +2618,8 @@ module Aws::RDS
|
|
2430
2618
|
PromoteReadReplicaResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
2431
2619
|
PromoteReadReplicaResult.struct_class = Types::PromoteReadReplicaResult
|
2432
2620
|
|
2621
|
+
ProvisionedIopsNotAvailableInAZFault.struct_class = Types::ProvisionedIopsNotAvailableInAZFault
|
2622
|
+
|
2433
2623
|
PurchaseReservedDBInstancesOfferingMessage.add_member(:reserved_db_instances_offering_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ReservedDBInstancesOfferingId"))
|
2434
2624
|
PurchaseReservedDBInstancesOfferingMessage.add_member(:reserved_db_instance_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedDBInstanceId"))
|
2435
2625
|
PurchaseReservedDBInstancesOfferingMessage.add_member(:db_instance_count, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "DBInstanceCount"))
|
@@ -2522,12 +2712,18 @@ module Aws::RDS
|
|
2522
2712
|
ReservedDBInstance.add_member(:lease_id, Shapes::ShapeRef.new(shape: String, location_name: "LeaseId"))
|
2523
2713
|
ReservedDBInstance.struct_class = Types::ReservedDBInstance
|
2524
2714
|
|
2715
|
+
ReservedDBInstanceAlreadyExistsFault.struct_class = Types::ReservedDBInstanceAlreadyExistsFault
|
2716
|
+
|
2525
2717
|
ReservedDBInstanceList.member = Shapes::ShapeRef.new(shape: ReservedDBInstance, location_name: "ReservedDBInstance")
|
2526
2718
|
|
2527
2719
|
ReservedDBInstanceMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
2528
2720
|
ReservedDBInstanceMessage.add_member(:reserved_db_instances, Shapes::ShapeRef.new(shape: ReservedDBInstanceList, location_name: "ReservedDBInstances"))
|
2529
2721
|
ReservedDBInstanceMessage.struct_class = Types::ReservedDBInstanceMessage
|
2530
2722
|
|
2723
|
+
ReservedDBInstanceNotFoundFault.struct_class = Types::ReservedDBInstanceNotFoundFault
|
2724
|
+
|
2725
|
+
ReservedDBInstanceQuotaExceededFault.struct_class = Types::ReservedDBInstanceQuotaExceededFault
|
2726
|
+
|
2531
2727
|
ReservedDBInstancesOffering.add_member(:reserved_db_instances_offering_id, Shapes::ShapeRef.new(shape: String, location_name: "ReservedDBInstancesOfferingId"))
|
2532
2728
|
ReservedDBInstancesOffering.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
|
2533
2729
|
ReservedDBInstancesOffering.add_member(:duration, Shapes::ShapeRef.new(shape: Integer, location_name: "Duration"))
|
@@ -2546,6 +2742,8 @@ module Aws::RDS
|
|
2546
2742
|
ReservedDBInstancesOfferingMessage.add_member(:reserved_db_instances_offerings, Shapes::ShapeRef.new(shape: ReservedDBInstancesOfferingList, location_name: "ReservedDBInstancesOfferings"))
|
2547
2743
|
ReservedDBInstancesOfferingMessage.struct_class = Types::ReservedDBInstancesOfferingMessage
|
2548
2744
|
|
2745
|
+
ReservedDBInstancesOfferingNotFoundFault.struct_class = Types::ReservedDBInstancesOfferingNotFoundFault
|
2746
|
+
|
2549
2747
|
ResetDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
2550
2748
|
ResetDBClusterParameterGroupMessage.add_member(:reset_all_parameters, Shapes::ShapeRef.new(shape: Boolean, location_name: "ResetAllParameters"))
|
2551
2749
|
ResetDBClusterParameterGroupMessage.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
|
@@ -2556,6 +2754,8 @@ module Aws::RDS
|
|
2556
2754
|
ResetDBParameterGroupMessage.add_member(:parameters, Shapes::ShapeRef.new(shape: ParametersList, location_name: "Parameters"))
|
2557
2755
|
ResetDBParameterGroupMessage.struct_class = Types::ResetDBParameterGroupMessage
|
2558
2756
|
|
2757
|
+
ResourceNotFoundFault.struct_class = Types::ResourceNotFoundFault
|
2758
|
+
|
2559
2759
|
ResourcePendingMaintenanceActions.add_member(:resource_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ResourceIdentifier"))
|
2560
2760
|
ResourcePendingMaintenanceActions.add_member(:pending_maintenance_action_details, Shapes::ShapeRef.new(shape: PendingMaintenanceActionDetails, location_name: "PendingMaintenanceActionDetails"))
|
2561
2761
|
ResourcePendingMaintenanceActions.struct_class = Types::ResourcePendingMaintenanceActions
|
@@ -2778,6 +2978,12 @@ module Aws::RDS
|
|
2778
2978
|
RevokeDBSecurityGroupIngressResult.add_member(:db_security_group, Shapes::ShapeRef.new(shape: DBSecurityGroup, location_name: "DBSecurityGroup"))
|
2779
2979
|
RevokeDBSecurityGroupIngressResult.struct_class = Types::RevokeDBSecurityGroupIngressResult
|
2780
2980
|
|
2981
|
+
SNSInvalidTopicFault.struct_class = Types::SNSInvalidTopicFault
|
2982
|
+
|
2983
|
+
SNSNoAuthorizationFault.struct_class = Types::SNSNoAuthorizationFault
|
2984
|
+
|
2985
|
+
SNSTopicArnNotFoundFault.struct_class = Types::SNSTopicArnNotFoundFault
|
2986
|
+
|
2781
2987
|
ScalingConfiguration.add_member(:min_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MinCapacity"))
|
2782
2988
|
ScalingConfiguration.add_member(:max_capacity, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxCapacity"))
|
2783
2989
|
ScalingConfiguration.add_member(:auto_pause, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoPause"))
|
@@ -2792,8 +2998,14 @@ module Aws::RDS
|
|
2792
2998
|
ScalingConfigurationInfo.add_member(:timeout_action, Shapes::ShapeRef.new(shape: String, location_name: "TimeoutAction"))
|
2793
2999
|
ScalingConfigurationInfo.struct_class = Types::ScalingConfigurationInfo
|
2794
3000
|
|
3001
|
+
SharedSnapshotQuotaExceededFault.struct_class = Types::SharedSnapshotQuotaExceededFault
|
3002
|
+
|
3003
|
+
SnapshotQuotaExceededFault.struct_class = Types::SnapshotQuotaExceededFault
|
3004
|
+
|
2795
3005
|
SourceIdsList.member = Shapes::ShapeRef.new(shape: String, location_name: "SourceId")
|
2796
3006
|
|
3007
|
+
SourceNotFoundFault.struct_class = Types::SourceNotFoundFault
|
3008
|
+
|
2797
3009
|
SourceRegion.add_member(:region_name, Shapes::ShapeRef.new(shape: String, location_name: "RegionName"))
|
2798
3010
|
SourceRegion.add_member(:endpoint, Shapes::ShapeRef.new(shape: String, location_name: "Endpoint"))
|
2799
3011
|
SourceRegion.add_member(:status, Shapes::ShapeRef.new(shape: String, location_name: "Status"))
|
@@ -2861,6 +3073,10 @@ module Aws::RDS
|
|
2861
3073
|
StopDBInstanceResult.add_member(:db_instance, Shapes::ShapeRef.new(shape: DBInstance, location_name: "DBInstance"))
|
2862
3074
|
StopDBInstanceResult.struct_class = Types::StopDBInstanceResult
|
2863
3075
|
|
3076
|
+
StorageQuotaExceededFault.struct_class = Types::StorageQuotaExceededFault
|
3077
|
+
|
3078
|
+
StorageTypeNotSupportedFault.struct_class = Types::StorageTypeNotSupportedFault
|
3079
|
+
|
2864
3080
|
StringList.member = Shapes::ShapeRef.new(shape: String)
|
2865
3081
|
|
2866
3082
|
Subnet.add_member(:subnet_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier"))
|
@@ -2868,10 +3084,18 @@ module Aws::RDS
|
|
2868
3084
|
Subnet.add_member(:subnet_status, Shapes::ShapeRef.new(shape: String, location_name: "SubnetStatus"))
|
2869
3085
|
Subnet.struct_class = Types::Subnet
|
2870
3086
|
|
3087
|
+
SubnetAlreadyInUse.struct_class = Types::SubnetAlreadyInUse
|
3088
|
+
|
2871
3089
|
SubnetIdentifierList.member = Shapes::ShapeRef.new(shape: String, location_name: "SubnetIdentifier")
|
2872
3090
|
|
2873
3091
|
SubnetList.member = Shapes::ShapeRef.new(shape: Subnet, location_name: "Subnet")
|
2874
3092
|
|
3093
|
+
SubscriptionAlreadyExistFault.struct_class = Types::SubscriptionAlreadyExistFault
|
3094
|
+
|
3095
|
+
SubscriptionCategoryNotFoundFault.struct_class = Types::SubscriptionCategoryNotFoundFault
|
3096
|
+
|
3097
|
+
SubscriptionNotFoundFault.struct_class = Types::SubscriptionNotFoundFault
|
3098
|
+
|
2875
3099
|
SupportedCharacterSetsList.member = Shapes::ShapeRef.new(shape: CharacterSet, location_name: "CharacterSet")
|
2876
3100
|
|
2877
3101
|
SupportedTimezonesList.member = Shapes::ShapeRef.new(shape: Timezone, location_name: "Timezone")
|