aws-sdk-rds 1.97.0 → 1.102.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/lib/aws-sdk-rds.rb +2 -1
- data/lib/aws-sdk-rds/client.rb +60 -9
- data/lib/aws-sdk-rds/client_api.rb +7 -0
- data/lib/aws-sdk-rds/db_cluster.rb +9 -2
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/db_engine_version.rb +8 -1
- data/lib/aws-sdk-rds/db_instance.rb +32 -2
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -2
- data/lib/aws-sdk-rds/errors.rb +11 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +6 -3
- data/lib/aws-sdk-rds/resource.rb +31 -0
- data/lib/aws-sdk-rds/types.rb +94 -25
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '069ff23d51bf7de7f86cbf581675915c8ecbf0297f26c57ecbcf16976cc8e8fa'
|
|
4
|
+
data.tar.gz: '048b891ac64dcf4be4e9e118c16aefb1c688df7968bc9d0fb34a22c53b7a93e8'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d5738e0c140b09e4af5cf6523e56cf861b6dfed01c18bf1823e61ab31f4ae6f31c2f5817c58128f3f6dab93ea7743b320c0c1d7dcc71df7e0d5599e687800737
|
|
7
|
+
data.tar.gz: 1ceb4c99c540dc27ba68beec7966deb951ff817cb377989f17fdbf8cfdb162c4d052eedb5378b8f495951fef46cbc9ce456f411f90881f2560fee5a3c3eaee4b
|
data/lib/aws-sdk-rds.rb
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
#
|
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
|
9
9
|
|
|
10
|
+
|
|
10
11
|
require 'aws-sigv4'
|
|
11
12
|
require 'aws-sdk-core'
|
|
12
13
|
|
|
@@ -73,6 +74,6 @@ require_relative 'aws-sdk-rds/customizations'
|
|
|
73
74
|
# @!group service
|
|
74
75
|
module Aws::RDS
|
|
75
76
|
|
|
76
|
-
GEM_VERSION = '1.
|
|
77
|
+
GEM_VERSION = '1.102.0'
|
|
77
78
|
|
|
78
79
|
end
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -1387,7 +1387,7 @@ module Aws::RDS
|
|
|
1387
1387
|
end
|
|
1388
1388
|
|
|
1389
1389
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
|
1390
|
-
# the
|
|
1390
|
+
# the `available` or `storage-optimization` state.
|
|
1391
1391
|
#
|
|
1392
1392
|
# You can copy a snapshot from one AWS Region to another. In that case,
|
|
1393
1393
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
|
@@ -2144,6 +2144,14 @@ module Aws::RDS
|
|
|
2144
2144
|
# used. For more information, see [Publishing Database Logs to Amazon
|
|
2145
2145
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
|
2146
2146
|
#
|
|
2147
|
+
# **Aurora MySQL**
|
|
2148
|
+
#
|
|
2149
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
2150
|
+
#
|
|
2151
|
+
# **Aurora PostgreSQL**
|
|
2152
|
+
#
|
|
2153
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
2154
|
+
#
|
|
2147
2155
|
#
|
|
2148
2156
|
#
|
|
2149
2157
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -3324,6 +3332,9 @@ module Aws::RDS
|
|
|
3324
3332
|
# Not applicable. The character set is managed by the DB cluster. For
|
|
3325
3333
|
# more information, see `CreateDBCluster`.
|
|
3326
3334
|
#
|
|
3335
|
+
# @option params [String] :nchar_character_set_name
|
|
3336
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
|
3337
|
+
#
|
|
3327
3338
|
# @option params [Boolean] :publicly_accessible
|
|
3328
3339
|
# A value that indicates whether the DB instance is publicly accessible.
|
|
3329
3340
|
#
|
|
@@ -3551,6 +3562,26 @@ module Aws::RDS
|
|
|
3551
3562
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
|
3552
3563
|
# Guide*.
|
|
3553
3564
|
#
|
|
3565
|
+
# **MariaDB**
|
|
3566
|
+
#
|
|
3567
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
3568
|
+
#
|
|
3569
|
+
# **Microsoft SQL Server**
|
|
3570
|
+
#
|
|
3571
|
+
# Possible values are `agent` and `error`.
|
|
3572
|
+
#
|
|
3573
|
+
# **MySQL**
|
|
3574
|
+
#
|
|
3575
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
3576
|
+
#
|
|
3577
|
+
# **Oracle**
|
|
3578
|
+
#
|
|
3579
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
|
3580
|
+
#
|
|
3581
|
+
# **PostgreSQL**
|
|
3582
|
+
#
|
|
3583
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
3584
|
+
#
|
|
3554
3585
|
#
|
|
3555
3586
|
#
|
|
3556
3587
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -3630,6 +3661,7 @@ module Aws::RDS
|
|
|
3630
3661
|
# iops: 1,
|
|
3631
3662
|
# option_group_name: "String",
|
|
3632
3663
|
# character_set_name: "String",
|
|
3664
|
+
# nchar_character_set_name: "String",
|
|
3633
3665
|
# publicly_accessible: false,
|
|
3634
3666
|
# tags: [
|
|
3635
3667
|
# {
|
|
@@ -3737,6 +3769,7 @@ module Aws::RDS
|
|
|
3737
3769
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
3738
3770
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
3739
3771
|
# resp.db_instance.character_set_name #=> String
|
|
3772
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
3740
3773
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
3741
3774
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
3742
3775
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -4371,6 +4404,7 @@ module Aws::RDS
|
|
|
4371
4404
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
4372
4405
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
4373
4406
|
# resp.db_instance.character_set_name #=> String
|
|
4407
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
4374
4408
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
4375
4409
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
4376
4410
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -5108,8 +5142,8 @@ module Aws::RDS
|
|
|
5108
5142
|
req.send_request(options)
|
|
5109
5143
|
end
|
|
5110
5144
|
|
|
5111
|
-
# Creates an Aurora global database spread across multiple
|
|
5112
|
-
# global database contains a single primary cluster with read-write
|
|
5145
|
+
# Creates an Aurora global database spread across multiple AWS Regions.
|
|
5146
|
+
# The global database contains a single primary cluster with read-write
|
|
5113
5147
|
# capability, and a read-only secondary cluster that receives data from
|
|
5114
5148
|
# the primary cluster through high-speed replication performed by the
|
|
5115
5149
|
# Aurora storage subsystem.
|
|
@@ -5131,8 +5165,7 @@ module Aws::RDS
|
|
|
5131
5165
|
# global database. This parameter is optional.
|
|
5132
5166
|
#
|
|
5133
5167
|
# @option params [String] :engine
|
|
5134
|
-
#
|
|
5135
|
-
# cluster.
|
|
5168
|
+
# The name of the database engine to be used for this DB cluster.
|
|
5136
5169
|
#
|
|
5137
5170
|
# @option params [String] :engine_version
|
|
5138
5171
|
# The engine version of the Aurora global database.
|
|
@@ -5896,6 +5929,7 @@ module Aws::RDS
|
|
|
5896
5929
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
5897
5930
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
5898
5931
|
# resp.db_instance.character_set_name #=> String
|
|
5932
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
5899
5933
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
5900
5934
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
5901
5935
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -7680,6 +7714,9 @@ module Aws::RDS
|
|
|
7680
7714
|
# resp.db_engine_versions[0].supported_character_sets #=> Array
|
|
7681
7715
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_name #=> String
|
|
7682
7716
|
# resp.db_engine_versions[0].supported_character_sets[0].character_set_description #=> String
|
|
7717
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets #=> Array
|
|
7718
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets[0].character_set_name #=> String
|
|
7719
|
+
# resp.db_engine_versions[0].supported_nchar_character_sets[0].character_set_description #=> String
|
|
7683
7720
|
# resp.db_engine_versions[0].valid_upgrade_target #=> Array
|
|
7684
7721
|
# resp.db_engine_versions[0].valid_upgrade_target[0].engine #=> String
|
|
7685
7722
|
# resp.db_engine_versions[0].valid_upgrade_target[0].engine_version #=> String
|
|
@@ -7994,6 +8031,7 @@ module Aws::RDS
|
|
|
7994
8031
|
# resp.db_instances[0].option_group_memberships[0].option_group_name #=> String
|
|
7995
8032
|
# resp.db_instances[0].option_group_memberships[0].status #=> String
|
|
7996
8033
|
# resp.db_instances[0].character_set_name #=> String
|
|
8034
|
+
# resp.db_instances[0].nchar_character_set_name #=> String
|
|
7997
8035
|
# resp.db_instances[0].secondary_availability_zone #=> String
|
|
7998
8036
|
# resp.db_instances[0].publicly_accessible #=> Boolean
|
|
7999
8037
|
# resp.db_instances[0].status_infos #=> Array
|
|
@@ -9350,7 +9388,11 @@ module Aws::RDS
|
|
|
9350
9388
|
# the past 14 days. Events specific to a particular DB instances, DB
|
|
9351
9389
|
# clusters, DB parameter groups, DB security groups, DB snapshots, and
|
|
9352
9390
|
# DB cluster snapshots group can be obtained by providing the name as a
|
|
9353
|
-
# parameter.
|
|
9391
|
+
# parameter.
|
|
9392
|
+
#
|
|
9393
|
+
# <note markdown="1"> By default, the past hour of events are returned.
|
|
9394
|
+
#
|
|
9395
|
+
# </note>
|
|
9354
9396
|
#
|
|
9355
9397
|
# @option params [String] :source_identifier
|
|
9356
9398
|
# The identifier of the event source for which events are returned. If
|
|
@@ -9512,7 +9554,7 @@ module Aws::RDS
|
|
|
9512
9554
|
# @option params [Array<Types::Filter>] :filters
|
|
9513
9555
|
# Filters specify one or more snapshot exports to describe. The filters
|
|
9514
9556
|
# are specified as name-value pairs that define what to include in the
|
|
9515
|
-
# output.
|
|
9557
|
+
# output. Filter names and values are case-sensitive.
|
|
9516
9558
|
#
|
|
9517
9559
|
# Supported filters include the following:
|
|
9518
9560
|
#
|
|
@@ -9524,7 +9566,8 @@ module Aws::RDS
|
|
|
9524
9566
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
|
9525
9567
|
# exported to Amazon S3
|
|
9526
9568
|
#
|
|
9527
|
-
# * `status` - The status of the export task.
|
|
9569
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
|
9570
|
+
# example, `complete`.
|
|
9528
9571
|
#
|
|
9529
9572
|
# @option params [String] :marker
|
|
9530
9573
|
# An optional pagination token provided by a previous
|
|
@@ -12790,6 +12833,7 @@ module Aws::RDS
|
|
|
12790
12833
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
12791
12834
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
12792
12835
|
# resp.db_instance.character_set_name #=> String
|
|
12836
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
12793
12837
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
12794
12838
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
12795
12839
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -13874,6 +13918,7 @@ module Aws::RDS
|
|
|
13874
13918
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
13875
13919
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
13876
13920
|
# resp.db_instance.character_set_name #=> String
|
|
13921
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
13877
13922
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
13878
13923
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
13879
13924
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -14267,6 +14312,7 @@ module Aws::RDS
|
|
|
14267
14312
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
14268
14313
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
14269
14314
|
# resp.db_instance.character_set_name #=> String
|
|
14315
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
14270
14316
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
14271
14317
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
14272
14318
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -16543,6 +16589,7 @@ module Aws::RDS
|
|
|
16543
16589
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
16544
16590
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
16545
16591
|
# resp.db_instance.character_set_name #=> String
|
|
16592
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
16546
16593
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
16547
16594
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
16548
16595
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -17102,6 +17149,7 @@ module Aws::RDS
|
|
|
17102
17149
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
17103
17150
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
17104
17151
|
# resp.db_instance.character_set_name #=> String
|
|
17152
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
17105
17153
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
17106
17154
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
17107
17155
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -17681,6 +17729,7 @@ module Aws::RDS
|
|
|
17681
17729
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
17682
17730
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
17683
17731
|
# resp.db_instance.character_set_name #=> String
|
|
17732
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
17684
17733
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
17685
17734
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
17686
17735
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -18106,6 +18155,7 @@ module Aws::RDS
|
|
|
18106
18155
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
18107
18156
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
18108
18157
|
# resp.db_instance.character_set_name #=> String
|
|
18158
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
18109
18159
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
18110
18160
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
18111
18161
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -18561,6 +18611,7 @@ module Aws::RDS
|
|
|
18561
18611
|
# resp.db_instance.option_group_memberships[0].option_group_name #=> String
|
|
18562
18612
|
# resp.db_instance.option_group_memberships[0].status #=> String
|
|
18563
18613
|
# resp.db_instance.character_set_name #=> String
|
|
18614
|
+
# resp.db_instance.nchar_character_set_name #=> String
|
|
18564
18615
|
# resp.db_instance.secondary_availability_zone #=> String
|
|
18565
18616
|
# resp.db_instance.publicly_accessible #=> Boolean
|
|
18566
18617
|
# resp.db_instance.status_infos #=> Array
|
|
@@ -18629,7 +18680,7 @@ module Aws::RDS
|
|
|
18629
18680
|
params: params,
|
|
18630
18681
|
config: config)
|
|
18631
18682
|
context[:gem_name] = 'aws-sdk-rds'
|
|
18632
|
-
context[:gem_version] = '1.
|
|
18683
|
+
context[:gem_version] = '1.102.0'
|
|
18633
18684
|
Seahorse::Client::Request.new(handlers, context)
|
|
18634
18685
|
end
|
|
18635
18686
|
|
|
@@ -341,6 +341,7 @@ module Aws::RDS
|
|
|
341
341
|
InstallationMediaMessage = Shapes::StructureShape.new(name: 'InstallationMediaMessage')
|
|
342
342
|
InstallationMediaNotFoundFault = Shapes::StructureShape.new(name: 'InstallationMediaNotFoundFault')
|
|
343
343
|
InstanceQuotaExceededFault = Shapes::StructureShape.new(name: 'InstanceQuotaExceededFault')
|
|
344
|
+
InsufficientAvailableIPsInSubnetFault = Shapes::StructureShape.new(name: 'InsufficientAvailableIPsInSubnetFault')
|
|
344
345
|
InsufficientDBClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBClusterCapacityFault')
|
|
345
346
|
InsufficientDBInstanceCapacityFault = Shapes::StructureShape.new(name: 'InsufficientDBInstanceCapacityFault')
|
|
346
347
|
InsufficientStorageClusterCapacityFault = Shapes::StructureShape.new(name: 'InsufficientStorageClusterCapacityFault')
|
|
@@ -841,6 +842,7 @@ module Aws::RDS
|
|
|
841
842
|
CreateDBInstanceMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
842
843
|
CreateDBInstanceMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
|
|
843
844
|
CreateDBInstanceMessage.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
|
845
|
+
CreateDBInstanceMessage.add_member(:nchar_character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "NcharCharacterSetName"))
|
|
844
846
|
CreateDBInstanceMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
|
845
847
|
CreateDBInstanceMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
|
846
848
|
CreateDBInstanceMessage.add_member(:db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "DBClusterIdentifier"))
|
|
@@ -1220,6 +1222,7 @@ module Aws::RDS
|
|
|
1220
1222
|
DBEngineVersion.add_member(:db_engine_version_description, Shapes::ShapeRef.new(shape: String, location_name: "DBEngineVersionDescription"))
|
|
1221
1223
|
DBEngineVersion.add_member(:default_character_set, Shapes::ShapeRef.new(shape: CharacterSet, location_name: "DefaultCharacterSet"))
|
|
1222
1224
|
DBEngineVersion.add_member(:supported_character_sets, Shapes::ShapeRef.new(shape: SupportedCharacterSetsList, location_name: "SupportedCharacterSets"))
|
|
1225
|
+
DBEngineVersion.add_member(:supported_nchar_character_sets, Shapes::ShapeRef.new(shape: SupportedCharacterSetsList, location_name: "SupportedNcharCharacterSets"))
|
|
1223
1226
|
DBEngineVersion.add_member(:valid_upgrade_target, Shapes::ShapeRef.new(shape: ValidUpgradeTargetList, location_name: "ValidUpgradeTarget"))
|
|
1224
1227
|
DBEngineVersion.add_member(:supported_timezones, Shapes::ShapeRef.new(shape: SupportedTimezonesList, location_name: "SupportedTimezones"))
|
|
1225
1228
|
DBEngineVersion.add_member(:exportable_log_types, Shapes::ShapeRef.new(shape: LogTypeList, location_name: "ExportableLogTypes"))
|
|
@@ -1268,6 +1271,7 @@ module Aws::RDS
|
|
|
1268
1271
|
DBInstance.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
1269
1272
|
DBInstance.add_member(:option_group_memberships, Shapes::ShapeRef.new(shape: OptionGroupMembershipList, location_name: "OptionGroupMemberships"))
|
|
1270
1273
|
DBInstance.add_member(:character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "CharacterSetName"))
|
|
1274
|
+
DBInstance.add_member(:nchar_character_set_name, Shapes::ShapeRef.new(shape: String, location_name: "NcharCharacterSetName"))
|
|
1271
1275
|
DBInstance.add_member(:secondary_availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "SecondaryAvailabilityZone"))
|
|
1272
1276
|
DBInstance.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "PubliclyAccessible"))
|
|
1273
1277
|
DBInstance.add_member(:status_infos, Shapes::ShapeRef.new(shape: DBInstanceStatusInfoList, location_name: "StatusInfos"))
|
|
@@ -2163,6 +2167,8 @@ module Aws::RDS
|
|
|
2163
2167
|
|
|
2164
2168
|
InstanceQuotaExceededFault.struct_class = Types::InstanceQuotaExceededFault
|
|
2165
2169
|
|
|
2170
|
+
InsufficientAvailableIPsInSubnetFault.struct_class = Types::InsufficientAvailableIPsInSubnetFault
|
|
2171
|
+
|
|
2166
2172
|
InsufficientDBClusterCapacityFault.struct_class = Types::InsufficientDBClusterCapacityFault
|
|
2167
2173
|
|
|
2168
2174
|
InsufficientDBInstanceCapacityFault.struct_class = Types::InsufficientDBInstanceCapacityFault
|
|
@@ -4627,6 +4633,7 @@ module Aws::RDS
|
|
|
4627
4633
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
|
4628
4634
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
|
4629
4635
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
|
4636
|
+
o.errors << Shapes::ShapeRef.new(shape: InsufficientAvailableIPsInSubnetFault)
|
|
4630
4637
|
end)
|
|
4631
4638
|
|
|
4632
4639
|
api.add_operation(:remove_from_global_cluster, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -143,8 +143,7 @@ module Aws::RDS
|
|
|
143
143
|
data[:multi_az]
|
|
144
144
|
end
|
|
145
145
|
|
|
146
|
-
#
|
|
147
|
-
# cluster.
|
|
146
|
+
# The name of the database engine to be used for this DB cluster.
|
|
148
147
|
# @return [String]
|
|
149
148
|
def engine
|
|
150
149
|
data[:engine]
|
|
@@ -905,6 +904,14 @@ module Aws::RDS
|
|
|
905
904
|
# used. For more information, see [Publishing Database Logs to Amazon
|
|
906
905
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
|
907
906
|
#
|
|
907
|
+
# **Aurora MySQL**
|
|
908
|
+
#
|
|
909
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
910
|
+
#
|
|
911
|
+
# **Aurora PostgreSQL**
|
|
912
|
+
#
|
|
913
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
914
|
+
#
|
|
908
915
|
#
|
|
909
916
|
#
|
|
910
917
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -35,8 +35,8 @@ module Aws::RDS
|
|
|
35
35
|
end
|
|
36
36
|
alias :db_cluster_parameter_group_name :name
|
|
37
37
|
|
|
38
|
-
#
|
|
39
|
-
#
|
|
38
|
+
# The name of the DB parameter group family that this DB cluster
|
|
39
|
+
# parameter group is compatible with.
|
|
40
40
|
# @return [String]
|
|
41
41
|
def db_parameter_group_family
|
|
42
42
|
data[:db_parameter_group_family]
|
|
@@ -71,12 +71,19 @@ module Aws::RDS
|
|
|
71
71
|
end
|
|
72
72
|
|
|
73
73
|
# A list of the character sets supported by this engine for the
|
|
74
|
-
# `CharacterSetName` parameter of the `CreateDBInstance`
|
|
74
|
+
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
75
75
|
# @return [Array<Types::CharacterSet>]
|
|
76
76
|
def supported_character_sets
|
|
77
77
|
data[:supported_character_sets]
|
|
78
78
|
end
|
|
79
79
|
|
|
80
|
+
# A list of the character sets supported by the Oracle DB engine for the
|
|
81
|
+
# `NcharCharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
82
|
+
# @return [Array<Types::CharacterSet>]
|
|
83
|
+
def supported_nchar_character_sets
|
|
84
|
+
data[:supported_nchar_character_sets]
|
|
85
|
+
end
|
|
86
|
+
|
|
80
87
|
# A list of engine versions that this database engine version can be
|
|
81
88
|
# upgraded to.
|
|
82
89
|
# @return [Array<Types::UpgradeTarget>]
|
|
@@ -42,8 +42,7 @@ module Aws::RDS
|
|
|
42
42
|
data[:db_instance_class]
|
|
43
43
|
end
|
|
44
44
|
|
|
45
|
-
#
|
|
46
|
-
# instance.
|
|
45
|
+
# The name of the database engine to be used for this DB instance.
|
|
47
46
|
# @return [String]
|
|
48
47
|
def engine
|
|
49
48
|
data[:engine]
|
|
@@ -266,6 +265,14 @@ module Aws::RDS
|
|
|
266
265
|
data[:character_set_name]
|
|
267
266
|
end
|
|
268
267
|
|
|
268
|
+
# The name of the NCHAR character set for the Oracle DB instance. This
|
|
269
|
+
# character set specifies the Unicode encoding for data stored in table
|
|
270
|
+
# columns of type NCHAR, NCLOB, or NVARCHAR2.
|
|
271
|
+
# @return [String]
|
|
272
|
+
def nchar_character_set_name
|
|
273
|
+
data[:nchar_character_set_name]
|
|
274
|
+
end
|
|
275
|
+
|
|
269
276
|
# If present, specifies the name of the secondary Availability Zone for
|
|
270
277
|
# a DB instance with multi-AZ support.
|
|
271
278
|
# @return [String]
|
|
@@ -674,6 +681,7 @@ module Aws::RDS
|
|
|
674
681
|
# iops: 1,
|
|
675
682
|
# option_group_name: "String",
|
|
676
683
|
# character_set_name: "String",
|
|
684
|
+
# nchar_character_set_name: "String",
|
|
677
685
|
# publicly_accessible: false,
|
|
678
686
|
# tags: [
|
|
679
687
|
# {
|
|
@@ -1271,6 +1279,8 @@ module Aws::RDS
|
|
|
1271
1279
|
#
|
|
1272
1280
|
# Not applicable. The character set is managed by the DB cluster. For
|
|
1273
1281
|
# more information, see `CreateDBCluster`.
|
|
1282
|
+
# @option options [String] :nchar_character_set_name
|
|
1283
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
|
1274
1284
|
# @option options [Boolean] :publicly_accessible
|
|
1275
1285
|
# A value that indicates whether the DB instance is publicly accessible.
|
|
1276
1286
|
#
|
|
@@ -1479,6 +1489,26 @@ module Aws::RDS
|
|
|
1479
1489
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
|
1480
1490
|
# Guide*.
|
|
1481
1491
|
#
|
|
1492
|
+
# **MariaDB**
|
|
1493
|
+
#
|
|
1494
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
1495
|
+
#
|
|
1496
|
+
# **Microsoft SQL Server**
|
|
1497
|
+
#
|
|
1498
|
+
# Possible values are `agent` and `error`.
|
|
1499
|
+
#
|
|
1500
|
+
# **MySQL**
|
|
1501
|
+
#
|
|
1502
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
1503
|
+
#
|
|
1504
|
+
# **Oracle**
|
|
1505
|
+
#
|
|
1506
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
|
1507
|
+
#
|
|
1508
|
+
# **PostgreSQL**
|
|
1509
|
+
#
|
|
1510
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
1511
|
+
#
|
|
1482
1512
|
#
|
|
1483
1513
|
#
|
|
1484
1514
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -35,8 +35,8 @@ module Aws::RDS
|
|
|
35
35
|
end
|
|
36
36
|
alias :db_parameter_group_name :name
|
|
37
37
|
|
|
38
|
-
#
|
|
39
|
-
#
|
|
38
|
+
# The name of the DB parameter group family that this DB parameter group
|
|
39
|
+
# is compatible with.
|
|
40
40
|
# @return [String]
|
|
41
41
|
def db_parameter_group_family
|
|
42
42
|
data[:db_parameter_group_family]
|
data/lib/aws-sdk-rds/errors.rb
CHANGED
|
@@ -90,6 +90,7 @@ module Aws::RDS
|
|
|
90
90
|
# * {InstallationMediaAlreadyExistsFault}
|
|
91
91
|
# * {InstallationMediaNotFoundFault}
|
|
92
92
|
# * {InstanceQuotaExceededFault}
|
|
93
|
+
# * {InsufficientAvailableIPsInSubnetFault}
|
|
93
94
|
# * {InsufficientDBClusterCapacityFault}
|
|
94
95
|
# * {InsufficientDBInstanceCapacityFault}
|
|
95
96
|
# * {InsufficientStorageClusterCapacityFault}
|
|
@@ -776,6 +777,16 @@ module Aws::RDS
|
|
|
776
777
|
end
|
|
777
778
|
end
|
|
778
779
|
|
|
780
|
+
class InsufficientAvailableIPsInSubnetFault < ServiceError
|
|
781
|
+
|
|
782
|
+
# @param [Seahorse::Client::RequestContext] context
|
|
783
|
+
# @param [String] message
|
|
784
|
+
# @param [Aws::RDS::Types::InsufficientAvailableIPsInSubnetFault] data
|
|
785
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
|
786
|
+
super(context, message, data)
|
|
787
|
+
end
|
|
788
|
+
end
|
|
789
|
+
|
|
779
790
|
class InsufficientDBClusterCapacityFault < ServiceError
|
|
780
791
|
|
|
781
792
|
# @param [Seahorse::Client::RequestContext] context
|
|
@@ -51,9 +51,12 @@ module Aws::RDS
|
|
|
51
51
|
data[:auto_applied_after_date]
|
|
52
52
|
end
|
|
53
53
|
|
|
54
|
-
# The date when the maintenance action is automatically applied.
|
|
55
|
-
#
|
|
56
|
-
#
|
|
54
|
+
# The date when the maintenance action is automatically applied.
|
|
55
|
+
#
|
|
56
|
+
# On this date, the maintenance action is applied to the resource as
|
|
57
|
+
# soon as possible, regardless of the maintenance window for the
|
|
58
|
+
# resource. There might be a delay of one or more days from this date
|
|
59
|
+
# before the maintenance action is applied.
|
|
57
60
|
# @return [Time]
|
|
58
61
|
def forced_apply_date
|
|
59
62
|
data[:forced_apply_date]
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -362,6 +362,14 @@ module Aws::RDS
|
|
|
362
362
|
# used. For more information, see [Publishing Database Logs to Amazon
|
|
363
363
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
|
364
364
|
#
|
|
365
|
+
# **Aurora MySQL**
|
|
366
|
+
#
|
|
367
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
368
|
+
#
|
|
369
|
+
# **Aurora PostgreSQL**
|
|
370
|
+
#
|
|
371
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
372
|
+
#
|
|
365
373
|
#
|
|
366
374
|
#
|
|
367
375
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -537,6 +545,7 @@ module Aws::RDS
|
|
|
537
545
|
# iops: 1,
|
|
538
546
|
# option_group_name: "String",
|
|
539
547
|
# character_set_name: "String",
|
|
548
|
+
# nchar_character_set_name: "String",
|
|
540
549
|
# publicly_accessible: false,
|
|
541
550
|
# tags: [
|
|
542
551
|
# {
|
|
@@ -1147,6 +1156,8 @@ module Aws::RDS
|
|
|
1147
1156
|
#
|
|
1148
1157
|
# Not applicable. The character set is managed by the DB cluster. For
|
|
1149
1158
|
# more information, see `CreateDBCluster`.
|
|
1159
|
+
# @option options [String] :nchar_character_set_name
|
|
1160
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
|
1150
1161
|
# @option options [Boolean] :publicly_accessible
|
|
1151
1162
|
# A value that indicates whether the DB instance is publicly accessible.
|
|
1152
1163
|
#
|
|
@@ -1355,6 +1366,26 @@ module Aws::RDS
|
|
|
1355
1366
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
|
1356
1367
|
# Guide*.
|
|
1357
1368
|
#
|
|
1369
|
+
# **MariaDB**
|
|
1370
|
+
#
|
|
1371
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
1372
|
+
#
|
|
1373
|
+
# **Microsoft SQL Server**
|
|
1374
|
+
#
|
|
1375
|
+
# Possible values are `agent` and `error`.
|
|
1376
|
+
#
|
|
1377
|
+
# **MySQL**
|
|
1378
|
+
#
|
|
1379
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
1380
|
+
#
|
|
1381
|
+
# **Oracle**
|
|
1382
|
+
#
|
|
1383
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
|
1384
|
+
#
|
|
1385
|
+
# **PostgreSQL**
|
|
1386
|
+
#
|
|
1387
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
1388
|
+
#
|
|
1358
1389
|
#
|
|
1359
1390
|
#
|
|
1360
1391
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -2063,6 +2063,14 @@ module Aws::RDS
|
|
|
2063
2063
|
# being used. For more information, see [Publishing Database Logs to
|
|
2064
2064
|
# Amazon CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
|
2065
2065
|
#
|
|
2066
|
+
# **Aurora MySQL**
|
|
2067
|
+
#
|
|
2068
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
2069
|
+
#
|
|
2070
|
+
# **Aurora PostgreSQL**
|
|
2071
|
+
#
|
|
2072
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
2073
|
+
#
|
|
2066
2074
|
#
|
|
2067
2075
|
#
|
|
2068
2076
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -2407,6 +2415,7 @@ module Aws::RDS
|
|
|
2407
2415
|
# iops: 1,
|
|
2408
2416
|
# option_group_name: "String",
|
|
2409
2417
|
# character_set_name: "String",
|
|
2418
|
+
# nchar_character_set_name: "String",
|
|
2410
2419
|
# publicly_accessible: false,
|
|
2411
2420
|
# tags: [
|
|
2412
2421
|
# {
|
|
@@ -3065,6 +3074,10 @@ module Aws::RDS
|
|
|
3065
3074
|
# more information, see `CreateDBCluster`.
|
|
3066
3075
|
# @return [String]
|
|
3067
3076
|
#
|
|
3077
|
+
# @!attribute [rw] nchar_character_set_name
|
|
3078
|
+
# The name of the NCHAR character set for the Oracle DB instance.
|
|
3079
|
+
# @return [String]
|
|
3080
|
+
#
|
|
3068
3081
|
# @!attribute [rw] publicly_accessible
|
|
3069
3082
|
# A value that indicates whether the DB instance is publicly
|
|
3070
3083
|
# accessible.
|
|
@@ -3312,6 +3325,26 @@ module Aws::RDS
|
|
|
3312
3325
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
|
3313
3326
|
# Service User Guide*.
|
|
3314
3327
|
#
|
|
3328
|
+
# **MariaDB**
|
|
3329
|
+
#
|
|
3330
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
3331
|
+
#
|
|
3332
|
+
# **Microsoft SQL Server**
|
|
3333
|
+
#
|
|
3334
|
+
# Possible values are `agent` and `error`.
|
|
3335
|
+
#
|
|
3336
|
+
# **MySQL**
|
|
3337
|
+
#
|
|
3338
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
|
3339
|
+
#
|
|
3340
|
+
# **Oracle**
|
|
3341
|
+
#
|
|
3342
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
|
3343
|
+
#
|
|
3344
|
+
# **PostgreSQL**
|
|
3345
|
+
#
|
|
3346
|
+
# Possible values are `postgresql` and `upgrade`.
|
|
3347
|
+
#
|
|
3315
3348
|
#
|
|
3316
3349
|
#
|
|
3317
3350
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
|
@@ -3371,6 +3404,7 @@ module Aws::RDS
|
|
|
3371
3404
|
:iops,
|
|
3372
3405
|
:option_group_name,
|
|
3373
3406
|
:character_set_name,
|
|
3407
|
+
:nchar_character_set_name,
|
|
3374
3408
|
:publicly_accessible,
|
|
3375
3409
|
:tags,
|
|
3376
3410
|
:db_cluster_identifier,
|
|
@@ -4516,8 +4550,7 @@ module Aws::RDS
|
|
|
4516
4550
|
# @return [String]
|
|
4517
4551
|
#
|
|
4518
4552
|
# @!attribute [rw] engine
|
|
4519
|
-
#
|
|
4520
|
-
# cluster.
|
|
4553
|
+
# The name of the database engine to be used for this DB cluster.
|
|
4521
4554
|
# @return [String]
|
|
4522
4555
|
#
|
|
4523
4556
|
# @!attribute [rw] engine_version
|
|
@@ -4813,8 +4846,7 @@ module Aws::RDS
|
|
|
4813
4846
|
# @return [Boolean]
|
|
4814
4847
|
#
|
|
4815
4848
|
# @!attribute [rw] engine
|
|
4816
|
-
#
|
|
4817
|
-
# cluster.
|
|
4849
|
+
# The name of the database engine to be used for this DB cluster.
|
|
4818
4850
|
# @return [String]
|
|
4819
4851
|
#
|
|
4820
4852
|
# @!attribute [rw] engine_version
|
|
@@ -5449,12 +5481,12 @@ module Aws::RDS
|
|
|
5449
5481
|
# `DescribeDBClusterParameterGroups` action.
|
|
5450
5482
|
#
|
|
5451
5483
|
# @!attribute [rw] db_cluster_parameter_group_name
|
|
5452
|
-
#
|
|
5484
|
+
# The name of the DB cluster parameter group.
|
|
5453
5485
|
# @return [String]
|
|
5454
5486
|
#
|
|
5455
5487
|
# @!attribute [rw] db_parameter_group_family
|
|
5456
|
-
#
|
|
5457
|
-
#
|
|
5488
|
+
# The name of the DB parameter group family that this DB cluster
|
|
5489
|
+
# parameter group is compatible with.
|
|
5458
5490
|
# @return [String]
|
|
5459
5491
|
#
|
|
5460
5492
|
# @!attribute [rw] description
|
|
@@ -5869,7 +5901,13 @@ module Aws::RDS
|
|
|
5869
5901
|
#
|
|
5870
5902
|
# @!attribute [rw] supported_character_sets
|
|
5871
5903
|
# A list of the character sets supported by this engine for the
|
|
5872
|
-
# `CharacterSetName` parameter of the `CreateDBInstance`
|
|
5904
|
+
# `CharacterSetName` parameter of the `CreateDBInstance` operation.
|
|
5905
|
+
# @return [Array<Types::CharacterSet>]
|
|
5906
|
+
#
|
|
5907
|
+
# @!attribute [rw] supported_nchar_character_sets
|
|
5908
|
+
# A list of the character sets supported by the Oracle DB engine for
|
|
5909
|
+
# the `NcharCharacterSetName` parameter of the `CreateDBInstance`
|
|
5910
|
+
# operation.
|
|
5873
5911
|
# @return [Array<Types::CharacterSet>]
|
|
5874
5912
|
#
|
|
5875
5913
|
# @!attribute [rw] valid_upgrade_target
|
|
@@ -5942,6 +5980,7 @@ module Aws::RDS
|
|
|
5942
5980
|
:db_engine_version_description,
|
|
5943
5981
|
:default_character_set,
|
|
5944
5982
|
:supported_character_sets,
|
|
5983
|
+
:supported_nchar_character_sets,
|
|
5945
5984
|
:valid_upgrade_target,
|
|
5946
5985
|
:supported_timezones,
|
|
5947
5986
|
:exportable_log_types,
|
|
@@ -5994,8 +6033,7 @@ module Aws::RDS
|
|
|
5994
6033
|
# @return [String]
|
|
5995
6034
|
#
|
|
5996
6035
|
# @!attribute [rw] engine
|
|
5997
|
-
#
|
|
5998
|
-
# instance.
|
|
6036
|
+
# The name of the database engine to be used for this DB instance.
|
|
5999
6037
|
# @return [String]
|
|
6000
6038
|
#
|
|
6001
6039
|
# @!attribute [rw] db_instance_status
|
|
@@ -6165,6 +6203,12 @@ module Aws::RDS
|
|
|
6165
6203
|
# instance is associated with.
|
|
6166
6204
|
# @return [String]
|
|
6167
6205
|
#
|
|
6206
|
+
# @!attribute [rw] nchar_character_set_name
|
|
6207
|
+
# The name of the NCHAR character set for the Oracle DB instance. This
|
|
6208
|
+
# character set specifies the Unicode encoding for data stored in
|
|
6209
|
+
# table columns of type NCHAR, NCLOB, or NVARCHAR2.
|
|
6210
|
+
# @return [String]
|
|
6211
|
+
#
|
|
6168
6212
|
# @!attribute [rw] secondary_availability_zone
|
|
6169
6213
|
# If present, specifies the name of the secondary Availability Zone
|
|
6170
6214
|
# for a DB instance with multi-AZ support.
|
|
@@ -6389,6 +6433,7 @@ module Aws::RDS
|
|
|
6389
6433
|
:iops,
|
|
6390
6434
|
:option_group_memberships,
|
|
6391
6435
|
:character_set_name,
|
|
6436
|
+
:nchar_character_set_name,
|
|
6392
6437
|
:secondary_availability_zone,
|
|
6393
6438
|
:publicly_accessible,
|
|
6394
6439
|
:status_infos,
|
|
@@ -6749,12 +6794,12 @@ module Aws::RDS
|
|
|
6749
6794
|
# `DescribeDBParameterGroups` action.
|
|
6750
6795
|
#
|
|
6751
6796
|
# @!attribute [rw] db_parameter_group_name
|
|
6752
|
-
#
|
|
6797
|
+
# The name of the DB parameter group.
|
|
6753
6798
|
# @return [String]
|
|
6754
6799
|
#
|
|
6755
6800
|
# @!attribute [rw] db_parameter_group_family
|
|
6756
|
-
#
|
|
6757
|
-
#
|
|
6801
|
+
# The name of the DB parameter group family that this DB parameter
|
|
6802
|
+
# group is compatible with.
|
|
6758
6803
|
# @return [String]
|
|
6759
6804
|
#
|
|
6760
6805
|
# @!attribute [rw] description
|
|
@@ -6809,7 +6854,7 @@ module Aws::RDS
|
|
|
6809
6854
|
# `ModifyDBParameterGroup` or `ResetDBParameterGroup` action.
|
|
6810
6855
|
#
|
|
6811
6856
|
# @!attribute [rw] db_parameter_group_name
|
|
6812
|
-
#
|
|
6857
|
+
# The name of the DB parameter group.
|
|
6813
6858
|
# @return [String]
|
|
6814
6859
|
#
|
|
6815
6860
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBParameterGroupNameMessage AWS API Documentation
|
|
@@ -10390,7 +10435,7 @@ module Aws::RDS
|
|
|
10390
10435
|
# @!attribute [rw] filters
|
|
10391
10436
|
# Filters specify one or more snapshot exports to describe. The
|
|
10392
10437
|
# filters are specified as name-value pairs that define what to
|
|
10393
|
-
# include in the output.
|
|
10438
|
+
# include in the output. Filter names and values are case-sensitive.
|
|
10394
10439
|
#
|
|
10395
10440
|
# Supported filters include the following:
|
|
10396
10441
|
#
|
|
@@ -10402,7 +10447,8 @@ module Aws::RDS
|
|
|
10402
10447
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
|
10403
10448
|
# exported to Amazon S3
|
|
10404
10449
|
#
|
|
10405
|
-
# * `status` - The status of the export task.
|
|
10450
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
|
10451
|
+
# example, `complete`.
|
|
10406
10452
|
# @return [Array<Types::Filter>]
|
|
10407
10453
|
#
|
|
10408
10454
|
# @!attribute [rw] marker
|
|
@@ -12192,6 +12238,15 @@ module Aws::RDS
|
|
|
12192
12238
|
#
|
|
12193
12239
|
class InstanceQuotaExceededFault < Aws::EmptyStructure; end
|
|
12194
12240
|
|
|
12241
|
+
# The requested operation can't be performed because there aren't
|
|
12242
|
+
# enough available IP addresses in the proxy's subnets. Add more CIDR
|
|
12243
|
+
# blocks to the VPC or remove IP address that aren't required from the
|
|
12244
|
+
# subnets.
|
|
12245
|
+
#
|
|
12246
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InsufficientAvailableIPsInSubnetFault AWS API Documentation
|
|
12247
|
+
#
|
|
12248
|
+
class InsufficientAvailableIPsInSubnetFault < Aws::EmptyStructure; end
|
|
12249
|
+
|
|
12195
12250
|
# The DB cluster doesn't have enough capacity for the current
|
|
12196
12251
|
# operation.
|
|
12197
12252
|
#
|
|
@@ -15373,9 +15428,12 @@ module Aws::RDS
|
|
|
15373
15428
|
# @return [Time]
|
|
15374
15429
|
#
|
|
15375
15430
|
# @!attribute [rw] forced_apply_date
|
|
15376
|
-
# The date when the maintenance action is automatically applied.
|
|
15377
|
-
#
|
|
15378
|
-
#
|
|
15431
|
+
# The date when the maintenance action is automatically applied.
|
|
15432
|
+
#
|
|
15433
|
+
# On this date, the maintenance action is applied to the resource as
|
|
15434
|
+
# soon as possible, regardless of the maintenance window for the
|
|
15435
|
+
# resource. There might be a delay of one or more days from this date
|
|
15436
|
+
# before the maintenance action is applied.
|
|
15379
15437
|
# @return [Time]
|
|
15380
15438
|
#
|
|
15381
15439
|
# @!attribute [rw] opt_in_status
|
|
@@ -15568,6 +15626,17 @@ module Aws::RDS
|
|
|
15568
15626
|
#
|
|
15569
15627
|
# * `DescribeValidDBInstanceModifications`
|
|
15570
15628
|
#
|
|
15629
|
+
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
|
15630
|
+
# values only if the following conditions are met:
|
|
15631
|
+
#
|
|
15632
|
+
# * You are accessing an Oracle DB instance.
|
|
15633
|
+
#
|
|
15634
|
+
# * Your Oracle DB instance class supports configuring the number of CPU
|
|
15635
|
+
# cores and threads per core.
|
|
15636
|
+
#
|
|
15637
|
+
# * The current number CPU cores and threads is set to a non-default
|
|
15638
|
+
# value.
|
|
15639
|
+
#
|
|
15571
15640
|
# For more information, see [Configuring the Processor of the DB
|
|
15572
15641
|
# Instance Class][1] in the <i>Amazon RDS User Guide. </i>
|
|
15573
15642
|
#
|
|
@@ -19698,18 +19767,18 @@ module Aws::RDS
|
|
|
19698
19767
|
# A key is the required name of the tag. The string value can be from
|
|
19699
19768
|
# 1 to 128 Unicode characters in length and can't be prefixed with
|
|
19700
19769
|
# "aws:" or "rds:". The string can only contain only the set of
|
|
19701
|
-
# Unicode letters, digits, white-space, '\_', '.', '
|
|
19702
|
-
# '+', '-' (Java regex:
|
|
19703
|
-
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_
|
|
19770
|
+
# Unicode letters, digits, white-space, '\_', '.', ':', '/',
|
|
19771
|
+
# '=', '+', '-', '@' (Java regex:
|
|
19772
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
|
19704
19773
|
# @return [String]
|
|
19705
19774
|
#
|
|
19706
19775
|
# @!attribute [rw] value
|
|
19707
19776
|
# A value is the optional value of the tag. The string value can be
|
|
19708
19777
|
# from 1 to 256 Unicode characters in length and can't be prefixed
|
|
19709
19778
|
# with "aws:" or "rds:". The string can only contain only the set
|
|
19710
|
-
# of Unicode letters, digits, white-space, '\_', '.', '
|
|
19711
|
-
# '=', '+', '-' (Java regex:
|
|
19712
|
-
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_
|
|
19779
|
+
# of Unicode letters, digits, white-space, '\_', '.', ':',
|
|
19780
|
+
# '/', '=', '+', '-', '@' (Java regex:
|
|
19781
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
|
19713
19782
|
# @return [String]
|
|
19714
19783
|
#
|
|
19715
19784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/Tag AWS API Documentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rds
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.102.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-10-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|
|
@@ -33,7 +33,7 @@ dependencies:
|
|
|
33
33
|
version: '3'
|
|
34
34
|
- - ">="
|
|
35
35
|
- !ruby/object:Gem::Version
|
|
36
|
-
version: 3.
|
|
36
|
+
version: 3.109.0
|
|
37
37
|
type: :runtime
|
|
38
38
|
prerelease: false
|
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -43,7 +43,7 @@ dependencies:
|
|
|
43
43
|
version: '3'
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 3.
|
|
46
|
+
version: 3.109.0
|
|
47
47
|
description: Official AWS Ruby gem for Amazon Relational Database Service (Amazon
|
|
48
48
|
RDS). This gem is part of the AWS SDK for Ruby.
|
|
49
49
|
email:
|