aws-sdk-rds 1.160.0 → 1.161.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +381 -6
- data/lib/aws-sdk-rds/client_api.rb +158 -0
- data/lib/aws-sdk-rds/db_instance.rb +1 -1
- data/lib/aws-sdk-rds/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-rds/endpoint_provider.rb +101 -101
- data/lib/aws-sdk-rds/endpoints.rb +56 -0
- data/lib/aws-sdk-rds/errors.rb +55 -0
- data/lib/aws-sdk-rds/plugins/endpoints.rb +8 -0
- data/lib/aws-sdk-rds/resource.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +553 -4
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-rds/errors.rb
CHANGED
@@ -31,6 +31,8 @@ module Aws::RDS
|
|
31
31
|
# * {AuthorizationNotFoundFault}
|
32
32
|
# * {AuthorizationQuotaExceededFault}
|
33
33
|
# * {BackupPolicyNotFoundFault}
|
34
|
+
# * {BlueGreenDeploymentAlreadyExistsFault}
|
35
|
+
# * {BlueGreenDeploymentNotFoundFault}
|
34
36
|
# * {CertificateNotFoundFault}
|
35
37
|
# * {CustomAvailabilityZoneNotFoundFault}
|
36
38
|
# * {CustomDBEngineVersionAlreadyExistsFault}
|
@@ -96,6 +98,7 @@ module Aws::RDS
|
|
96
98
|
# * {InsufficientDBClusterCapacityFault}
|
97
99
|
# * {InsufficientDBInstanceCapacityFault}
|
98
100
|
# * {InsufficientStorageClusterCapacityFault}
|
101
|
+
# * {InvalidBlueGreenDeploymentStateFault}
|
99
102
|
# * {InvalidCustomDBEngineVersionStateFault}
|
100
103
|
# * {InvalidDBClusterCapacityFault}
|
101
104
|
# * {InvalidDBClusterEndpointStateFault}
|
@@ -138,6 +141,8 @@ module Aws::RDS
|
|
138
141
|
# * {SNSTopicArnNotFoundFault}
|
139
142
|
# * {SharedSnapshotQuotaExceededFault}
|
140
143
|
# * {SnapshotQuotaExceededFault}
|
144
|
+
# * {SourceClusterNotSupportedFault}
|
145
|
+
# * {SourceDatabaseNotSupportedFault}
|
141
146
|
# * {SourceNotFoundFault}
|
142
147
|
# * {StorageQuotaExceededFault}
|
143
148
|
# * {StorageTypeNotSupportedFault}
|
@@ -192,6 +197,26 @@ module Aws::RDS
|
|
192
197
|
end
|
193
198
|
end
|
194
199
|
|
200
|
+
class BlueGreenDeploymentAlreadyExistsFault < ServiceError
|
201
|
+
|
202
|
+
# @param [Seahorse::Client::RequestContext] context
|
203
|
+
# @param [String] message
|
204
|
+
# @param [Aws::RDS::Types::BlueGreenDeploymentAlreadyExistsFault] data
|
205
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
206
|
+
super(context, message, data)
|
207
|
+
end
|
208
|
+
end
|
209
|
+
|
210
|
+
class BlueGreenDeploymentNotFoundFault < ServiceError
|
211
|
+
|
212
|
+
# @param [Seahorse::Client::RequestContext] context
|
213
|
+
# @param [String] message
|
214
|
+
# @param [Aws::RDS::Types::BlueGreenDeploymentNotFoundFault] data
|
215
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
216
|
+
super(context, message, data)
|
217
|
+
end
|
218
|
+
end
|
219
|
+
|
195
220
|
class CertificateNotFoundFault < ServiceError
|
196
221
|
|
197
222
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -842,6 +867,16 @@ module Aws::RDS
|
|
842
867
|
end
|
843
868
|
end
|
844
869
|
|
870
|
+
class InvalidBlueGreenDeploymentStateFault < ServiceError
|
871
|
+
|
872
|
+
# @param [Seahorse::Client::RequestContext] context
|
873
|
+
# @param [String] message
|
874
|
+
# @param [Aws::RDS::Types::InvalidBlueGreenDeploymentStateFault] data
|
875
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
876
|
+
super(context, message, data)
|
877
|
+
end
|
878
|
+
end
|
879
|
+
|
845
880
|
class InvalidCustomDBEngineVersionStateFault < ServiceError
|
846
881
|
|
847
882
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1262,6 +1297,26 @@ module Aws::RDS
|
|
1262
1297
|
end
|
1263
1298
|
end
|
1264
1299
|
|
1300
|
+
class SourceClusterNotSupportedFault < ServiceError
|
1301
|
+
|
1302
|
+
# @param [Seahorse::Client::RequestContext] context
|
1303
|
+
# @param [String] message
|
1304
|
+
# @param [Aws::RDS::Types::SourceClusterNotSupportedFault] data
|
1305
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1306
|
+
super(context, message, data)
|
1307
|
+
end
|
1308
|
+
end
|
1309
|
+
|
1310
|
+
class SourceDatabaseNotSupportedFault < ServiceError
|
1311
|
+
|
1312
|
+
# @param [Seahorse::Client::RequestContext] context
|
1313
|
+
# @param [String] message
|
1314
|
+
# @param [Aws::RDS::Types::SourceDatabaseNotSupportedFault] data
|
1315
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
1316
|
+
super(context, message, data)
|
1317
|
+
end
|
1318
|
+
end
|
1319
|
+
|
1265
1320
|
class SourceNotFoundFault < ServiceError
|
1266
1321
|
|
1267
1322
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -82,6 +82,8 @@ module Aws::RDS
|
|
82
82
|
Aws::RDS::Endpoints::CopyDBSnapshot.build(context)
|
83
83
|
when :copy_option_group
|
84
84
|
Aws::RDS::Endpoints::CopyOptionGroup.build(context)
|
85
|
+
when :create_blue_green_deployment
|
86
|
+
Aws::RDS::Endpoints::CreateBlueGreenDeployment.build(context)
|
85
87
|
when :create_custom_db_engine_version
|
86
88
|
Aws::RDS::Endpoints::CreateCustomDBEngineVersion.build(context)
|
87
89
|
when :create_db_cluster
|
@@ -114,6 +116,8 @@ module Aws::RDS
|
|
114
116
|
Aws::RDS::Endpoints::CreateGlobalCluster.build(context)
|
115
117
|
when :create_option_group
|
116
118
|
Aws::RDS::Endpoints::CreateOptionGroup.build(context)
|
119
|
+
when :delete_blue_green_deployment
|
120
|
+
Aws::RDS::Endpoints::DeleteBlueGreenDeployment.build(context)
|
117
121
|
when :delete_custom_db_engine_version
|
118
122
|
Aws::RDS::Endpoints::DeleteCustomDBEngineVersion.build(context)
|
119
123
|
when :delete_db_cluster
|
@@ -150,6 +154,8 @@ module Aws::RDS
|
|
150
154
|
Aws::RDS::Endpoints::DeregisterDBProxyTargets.build(context)
|
151
155
|
when :describe_account_attributes
|
152
156
|
Aws::RDS::Endpoints::DescribeAccountAttributes.build(context)
|
157
|
+
when :describe_blue_green_deployments
|
158
|
+
Aws::RDS::Endpoints::DescribeBlueGreenDeployments.build(context)
|
153
159
|
when :describe_certificates
|
154
160
|
Aws::RDS::Endpoints::DescribeCertificates.build(context)
|
155
161
|
when :describe_db_cluster_backtracks
|
@@ -328,6 +334,8 @@ module Aws::RDS
|
|
328
334
|
Aws::RDS::Endpoints::StopDBInstance.build(context)
|
329
335
|
when :stop_db_instance_automated_backups_replication
|
330
336
|
Aws::RDS::Endpoints::StopDBInstanceAutomatedBackupsReplication.build(context)
|
337
|
+
when :switchover_blue_green_deployment
|
338
|
+
Aws::RDS::Endpoints::SwitchoverBlueGreenDeployment.build(context)
|
331
339
|
when :switchover_read_replica
|
332
340
|
Aws::RDS::Endpoints::SwitchoverReadReplica.build(context)
|
333
341
|
end
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1532,7 +1532,7 @@ module Aws::RDS
|
|
1532
1532
|
#
|
1533
1533
|
# A custom engine version (CEV) that you have previously created. This
|
1534
1534
|
# setting is required for RDS Custom for Oracle. The CEV name has the
|
1535
|
-
# following format:
|
1535
|
+
# following format: 19.*customized\_string*. A valid CEV name is
|
1536
1536
|
# `19.my_cev1`. For more information, see [ Creating an RDS Custom for
|
1537
1537
|
# Oracle DB instance][1] in the *Amazon RDS User Guide*.
|
1538
1538
|
#
|