aws-sdk-rds 1.96.0 → 1.101.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 +3 -2
- data/lib/aws-sdk-rds/client.rb +63 -16
- data/lib/aws-sdk-rds/client_api.rb +4 -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_instance.rb +21 -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 +28 -0
- data/lib/aws-sdk-rds/types.rb +73 -24
- 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: b5bd1a3aa461ba52181de2b6f941076007f5e60e8057f375ed90fe6b407e8e84
|
4
|
+
data.tar.gz: 51fb0f11cfcdd6946c6ccd1b9dcc6c3729fb852a3a1aa2587c6ae55dfd76109c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8598d885dae4c646f112f05a9293946e1bb9aa476c7cb7500f03841b8344fc57ed3a1c136b13b894bfed449e11d257e8eee733c64eb340f26649ed5a68f2bfae
|
7
|
+
data.tar.gz: c16f8e774f50d9525c0731d80ec84dd66bfa2a204b22fbb13ec6e99dc6c9f71a5b6ae0b8fa5f6df3b6ba8d0e3b2f67bdbc54a2196c3680081c898a69a77dbf17
|
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
|
|
@@ -70,9 +71,9 @@ require_relative 'aws-sdk-rds/customizations'
|
|
70
71
|
#
|
71
72
|
# See {Errors} for more information.
|
72
73
|
#
|
73
|
-
#
|
74
|
+
# @!group service
|
74
75
|
module Aws::RDS
|
75
76
|
|
76
|
-
GEM_VERSION = '1.
|
77
|
+
GEM_VERSION = '1.101.0'
|
77
78
|
|
78
79
|
end
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -87,13 +87,28 @@ module Aws::RDS
|
|
87
87
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
88
88
|
# credentials.
|
89
89
|
#
|
90
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
91
|
+
# shared file, such as `~/.aws/config`.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
94
|
+
#
|
95
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
96
|
+
# assume a role after providing credentials via the web.
|
97
|
+
#
|
98
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
99
|
+
# access token generated from `aws login`.
|
100
|
+
#
|
101
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
102
|
+
# process that outputs to stdout.
|
103
|
+
#
|
90
104
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
91
105
|
# from an EC2 IMDS on an EC2 instance.
|
92
106
|
#
|
93
|
-
# * `Aws::
|
94
|
-
#
|
107
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
108
|
+
# instances running in ECS.
|
95
109
|
#
|
96
|
-
# * `Aws::
|
110
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
111
|
+
# from the Cognito Identity service.
|
97
112
|
#
|
98
113
|
# When `:credentials` are not configured directly, the following
|
99
114
|
# locations will be searched for credentials:
|
@@ -103,10 +118,10 @@ module Aws::RDS
|
|
103
118
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
104
119
|
# * `~/.aws/credentials`
|
105
120
|
# * `~/.aws/config`
|
106
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
107
|
-
# very aggressive. Construct and pass an instance of
|
108
|
-
# `Aws::InstanceProfileCredentails`
|
109
|
-
# timeouts.
|
121
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
122
|
+
# are very aggressive. Construct and pass an instance of
|
123
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
124
|
+
# enable retries and extended timeouts.
|
110
125
|
#
|
111
126
|
# @option options [required, String] :region
|
112
127
|
# The AWS region to connect to. The configured `:region` is
|
@@ -1372,7 +1387,7 @@ module Aws::RDS
|
|
1372
1387
|
end
|
1373
1388
|
|
1374
1389
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
1375
|
-
# the
|
1390
|
+
# the `available` or `storage-optimization` state.
|
1376
1391
|
#
|
1377
1392
|
# You can copy a snapshot from one AWS Region to another. In that case,
|
1378
1393
|
# the AWS Region where you call the `CopyDBSnapshot` action is the
|
@@ -2129,6 +2144,14 @@ module Aws::RDS
|
|
2129
2144
|
# used. For more information, see [Publishing Database Logs to Amazon
|
2130
2145
|
# CloudWatch Logs][1] in the *Amazon Aurora User Guide*.
|
2131
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
|
+
#
|
2132
2155
|
#
|
2133
2156
|
#
|
2134
2157
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -3536,6 +3559,26 @@ module Aws::RDS
|
|
3536
3559
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
3537
3560
|
# Guide*.
|
3538
3561
|
#
|
3562
|
+
# **MariaDB**
|
3563
|
+
#
|
3564
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3565
|
+
#
|
3566
|
+
# **Microsoft SQL Server**
|
3567
|
+
#
|
3568
|
+
# Possible values are `agent` and `error`.
|
3569
|
+
#
|
3570
|
+
# **MySQL**
|
3571
|
+
#
|
3572
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3573
|
+
#
|
3574
|
+
# **Oracle**
|
3575
|
+
#
|
3576
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
3577
|
+
#
|
3578
|
+
# **PostgreSQL**
|
3579
|
+
#
|
3580
|
+
# Possible values are `postgresql` and `upgrade`.
|
3581
|
+
#
|
3539
3582
|
#
|
3540
3583
|
#
|
3541
3584
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -5093,8 +5136,8 @@ module Aws::RDS
|
|
5093
5136
|
req.send_request(options)
|
5094
5137
|
end
|
5095
5138
|
|
5096
|
-
# Creates an Aurora global database spread across multiple
|
5097
|
-
# global database contains a single primary cluster with read-write
|
5139
|
+
# Creates an Aurora global database spread across multiple AWS Regions.
|
5140
|
+
# The global database contains a single primary cluster with read-write
|
5098
5141
|
# capability, and a read-only secondary cluster that receives data from
|
5099
5142
|
# the primary cluster through high-speed replication performed by the
|
5100
5143
|
# Aurora storage subsystem.
|
@@ -5116,8 +5159,7 @@ module Aws::RDS
|
|
5116
5159
|
# global database. This parameter is optional.
|
5117
5160
|
#
|
5118
5161
|
# @option params [String] :engine
|
5119
|
-
#
|
5120
|
-
# cluster.
|
5162
|
+
# The name of the database engine to be used for this DB cluster.
|
5121
5163
|
#
|
5122
5164
|
# @option params [String] :engine_version
|
5123
5165
|
# The engine version of the Aurora global database.
|
@@ -9335,7 +9377,11 @@ module Aws::RDS
|
|
9335
9377
|
# the past 14 days. Events specific to a particular DB instances, DB
|
9336
9378
|
# clusters, DB parameter groups, DB security groups, DB snapshots, and
|
9337
9379
|
# DB cluster snapshots group can be obtained by providing the name as a
|
9338
|
-
# parameter.
|
9380
|
+
# parameter.
|
9381
|
+
#
|
9382
|
+
# <note markdown="1"> By default, the past hour of events are returned.
|
9383
|
+
#
|
9384
|
+
# </note>
|
9339
9385
|
#
|
9340
9386
|
# @option params [String] :source_identifier
|
9341
9387
|
# The identifier of the event source for which events are returned. If
|
@@ -9497,7 +9543,7 @@ module Aws::RDS
|
|
9497
9543
|
# @option params [Array<Types::Filter>] :filters
|
9498
9544
|
# Filters specify one or more snapshot exports to describe. The filters
|
9499
9545
|
# are specified as name-value pairs that define what to include in the
|
9500
|
-
# output.
|
9546
|
+
# output. Filter names and values are case-sensitive.
|
9501
9547
|
#
|
9502
9548
|
# Supported filters include the following:
|
9503
9549
|
#
|
@@ -9509,7 +9555,8 @@ module Aws::RDS
|
|
9509
9555
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
9510
9556
|
# exported to Amazon S3
|
9511
9557
|
#
|
9512
|
-
# * `status` - The status of the export task.
|
9558
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
9559
|
+
# example, `complete`.
|
9513
9560
|
#
|
9514
9561
|
# @option params [String] :marker
|
9515
9562
|
# An optional pagination token provided by a previous
|
@@ -18614,7 +18661,7 @@ module Aws::RDS
|
|
18614
18661
|
params: params,
|
18615
18662
|
config: config)
|
18616
18663
|
context[:gem_name] = 'aws-sdk-rds'
|
18617
|
-
context[:gem_version] = '1.
|
18664
|
+
context[:gem_version] = '1.101.0'
|
18618
18665
|
Seahorse::Client::Request.new(handlers, context)
|
18619
18666
|
end
|
18620
18667
|
|
@@ -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')
|
@@ -2163,6 +2164,8 @@ module Aws::RDS
|
|
2163
2164
|
|
2164
2165
|
InstanceQuotaExceededFault.struct_class = Types::InstanceQuotaExceededFault
|
2165
2166
|
|
2167
|
+
InsufficientAvailableIPsInSubnetFault.struct_class = Types::InsufficientAvailableIPsInSubnetFault
|
2168
|
+
|
2166
2169
|
InsufficientDBClusterCapacityFault.struct_class = Types::InsufficientDBClusterCapacityFault
|
2167
2170
|
|
2168
2171
|
InsufficientDBInstanceCapacityFault.struct_class = Types::InsufficientDBInstanceCapacityFault
|
@@ -4627,6 +4630,7 @@ module Aws::RDS
|
|
4627
4630
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBInstanceStateFault)
|
4628
4631
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBClusterStateFault)
|
4629
4632
|
o.errors << Shapes::ShapeRef.new(shape: InvalidDBProxyStateFault)
|
4633
|
+
o.errors << Shapes::ShapeRef.new(shape: InsufficientAvailableIPsInSubnetFault)
|
4630
4634
|
end)
|
4631
4635
|
|
4632
4636
|
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]
|
@@ -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]
|
@@ -1479,6 +1478,26 @@ module Aws::RDS
|
|
1479
1478
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
1480
1479
|
# Guide*.
|
1481
1480
|
#
|
1481
|
+
# **MariaDB**
|
1482
|
+
#
|
1483
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1484
|
+
#
|
1485
|
+
# **Microsoft SQL Server**
|
1486
|
+
#
|
1487
|
+
# Possible values are `agent` and `error`.
|
1488
|
+
#
|
1489
|
+
# **MySQL**
|
1490
|
+
#
|
1491
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1492
|
+
#
|
1493
|
+
# **Oracle**
|
1494
|
+
#
|
1495
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
1496
|
+
#
|
1497
|
+
# **PostgreSQL**
|
1498
|
+
#
|
1499
|
+
# Possible values are `postgresql` and `upgrade`.
|
1500
|
+
#
|
1482
1501
|
#
|
1483
1502
|
#
|
1484
1503
|
# [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
|
@@ -1355,6 +1363,26 @@ module Aws::RDS
|
|
1355
1363
|
# CloudWatch Logs ][1] in the *Amazon Relational Database Service User
|
1356
1364
|
# Guide*.
|
1357
1365
|
#
|
1366
|
+
# **MariaDB**
|
1367
|
+
#
|
1368
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1369
|
+
#
|
1370
|
+
# **Microsoft SQL Server**
|
1371
|
+
#
|
1372
|
+
# Possible values are `agent` and `error`.
|
1373
|
+
#
|
1374
|
+
# **MySQL**
|
1375
|
+
#
|
1376
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
1377
|
+
#
|
1378
|
+
# **Oracle**
|
1379
|
+
#
|
1380
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
1381
|
+
#
|
1382
|
+
# **PostgreSQL**
|
1383
|
+
#
|
1384
|
+
# Possible values are `postgresql` and `upgrade`.
|
1385
|
+
#
|
1358
1386
|
#
|
1359
1387
|
#
|
1360
1388
|
# [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
|
@@ -3312,6 +3320,26 @@ module Aws::RDS
|
|
3312
3320
|
# Amazon CloudWatch Logs ][1] in the *Amazon Relational Database
|
3313
3321
|
# Service User Guide*.
|
3314
3322
|
#
|
3323
|
+
# **MariaDB**
|
3324
|
+
#
|
3325
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3326
|
+
#
|
3327
|
+
# **Microsoft SQL Server**
|
3328
|
+
#
|
3329
|
+
# Possible values are `agent` and `error`.
|
3330
|
+
#
|
3331
|
+
# **MySQL**
|
3332
|
+
#
|
3333
|
+
# Possible values are `audit`, `error`, `general`, and `slowquery`.
|
3334
|
+
#
|
3335
|
+
# **Oracle**
|
3336
|
+
#
|
3337
|
+
# Possible values are `alert`, `audit`, `listener`, and `trace`.
|
3338
|
+
#
|
3339
|
+
# **PostgreSQL**
|
3340
|
+
#
|
3341
|
+
# Possible values are `postgresql` and `upgrade`.
|
3342
|
+
#
|
3315
3343
|
#
|
3316
3344
|
#
|
3317
3345
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_LogAccess.html#USER_LogAccess.Procedural.UploadtoCloudWatch
|
@@ -4516,8 +4544,7 @@ module Aws::RDS
|
|
4516
4544
|
# @return [String]
|
4517
4545
|
#
|
4518
4546
|
# @!attribute [rw] engine
|
4519
|
-
#
|
4520
|
-
# cluster.
|
4547
|
+
# The name of the database engine to be used for this DB cluster.
|
4521
4548
|
# @return [String]
|
4522
4549
|
#
|
4523
4550
|
# @!attribute [rw] engine_version
|
@@ -4813,8 +4840,7 @@ module Aws::RDS
|
|
4813
4840
|
# @return [Boolean]
|
4814
4841
|
#
|
4815
4842
|
# @!attribute [rw] engine
|
4816
|
-
#
|
4817
|
-
# cluster.
|
4843
|
+
# The name of the database engine to be used for this DB cluster.
|
4818
4844
|
# @return [String]
|
4819
4845
|
#
|
4820
4846
|
# @!attribute [rw] engine_version
|
@@ -5449,12 +5475,12 @@ module Aws::RDS
|
|
5449
5475
|
# `DescribeDBClusterParameterGroups` action.
|
5450
5476
|
#
|
5451
5477
|
# @!attribute [rw] db_cluster_parameter_group_name
|
5452
|
-
#
|
5478
|
+
# The name of the DB cluster parameter group.
|
5453
5479
|
# @return [String]
|
5454
5480
|
#
|
5455
5481
|
# @!attribute [rw] db_parameter_group_family
|
5456
|
-
#
|
5457
|
-
#
|
5482
|
+
# The name of the DB parameter group family that this DB cluster
|
5483
|
+
# parameter group is compatible with.
|
5458
5484
|
# @return [String]
|
5459
5485
|
#
|
5460
5486
|
# @!attribute [rw] description
|
@@ -5994,8 +6020,7 @@ module Aws::RDS
|
|
5994
6020
|
# @return [String]
|
5995
6021
|
#
|
5996
6022
|
# @!attribute [rw] engine
|
5997
|
-
#
|
5998
|
-
# instance.
|
6023
|
+
# The name of the database engine to be used for this DB instance.
|
5999
6024
|
# @return [String]
|
6000
6025
|
#
|
6001
6026
|
# @!attribute [rw] db_instance_status
|
@@ -6749,12 +6774,12 @@ module Aws::RDS
|
|
6749
6774
|
# `DescribeDBParameterGroups` action.
|
6750
6775
|
#
|
6751
6776
|
# @!attribute [rw] db_parameter_group_name
|
6752
|
-
#
|
6777
|
+
# The name of the DB parameter group.
|
6753
6778
|
# @return [String]
|
6754
6779
|
#
|
6755
6780
|
# @!attribute [rw] db_parameter_group_family
|
6756
|
-
#
|
6757
|
-
#
|
6781
|
+
# The name of the DB parameter group family that this DB parameter
|
6782
|
+
# group is compatible with.
|
6758
6783
|
# @return [String]
|
6759
6784
|
#
|
6760
6785
|
# @!attribute [rw] description
|
@@ -6809,7 +6834,7 @@ module Aws::RDS
|
|
6809
6834
|
# `ModifyDBParameterGroup` or `ResetDBParameterGroup` action.
|
6810
6835
|
#
|
6811
6836
|
# @!attribute [rw] db_parameter_group_name
|
6812
|
-
#
|
6837
|
+
# The name of the DB parameter group.
|
6813
6838
|
# @return [String]
|
6814
6839
|
#
|
6815
6840
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBParameterGroupNameMessage AWS API Documentation
|
@@ -10390,7 +10415,7 @@ module Aws::RDS
|
|
10390
10415
|
# @!attribute [rw] filters
|
10391
10416
|
# Filters specify one or more snapshot exports to describe. The
|
10392
10417
|
# filters are specified as name-value pairs that define what to
|
10393
|
-
# include in the output.
|
10418
|
+
# include in the output. Filter names and values are case-sensitive.
|
10394
10419
|
#
|
10395
10420
|
# Supported filters include the following:
|
10396
10421
|
#
|
@@ -10402,7 +10427,8 @@ module Aws::RDS
|
|
10402
10427
|
# * `source-arn` - The Amazon Resource Name (ARN) of the snapshot
|
10403
10428
|
# exported to Amazon S3
|
10404
10429
|
#
|
10405
|
-
# * `status` - The status of the export task.
|
10430
|
+
# * `status` - The status of the export task. Must be lowercase, for
|
10431
|
+
# example, `complete`.
|
10406
10432
|
# @return [Array<Types::Filter>]
|
10407
10433
|
#
|
10408
10434
|
# @!attribute [rw] marker
|
@@ -12192,6 +12218,15 @@ module Aws::RDS
|
|
12192
12218
|
#
|
12193
12219
|
class InstanceQuotaExceededFault < Aws::EmptyStructure; end
|
12194
12220
|
|
12221
|
+
# The requested operation can't be performed because there aren't
|
12222
|
+
# enough available IP addresses in the proxy's subnets. Add more CIDR
|
12223
|
+
# blocks to the VPC or remove IP address that aren't required from the
|
12224
|
+
# subnets.
|
12225
|
+
#
|
12226
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/InsufficientAvailableIPsInSubnetFault AWS API Documentation
|
12227
|
+
#
|
12228
|
+
class InsufficientAvailableIPsInSubnetFault < Aws::EmptyStructure; end
|
12229
|
+
|
12195
12230
|
# The DB cluster doesn't have enough capacity for the current
|
12196
12231
|
# operation.
|
12197
12232
|
#
|
@@ -15373,9 +15408,12 @@ module Aws::RDS
|
|
15373
15408
|
# @return [Time]
|
15374
15409
|
#
|
15375
15410
|
# @!attribute [rw] forced_apply_date
|
15376
|
-
# The date when the maintenance action is automatically applied.
|
15377
|
-
#
|
15378
|
-
#
|
15411
|
+
# The date when the maintenance action is automatically applied.
|
15412
|
+
#
|
15413
|
+
# On this date, the maintenance action is applied to the resource as
|
15414
|
+
# soon as possible, regardless of the maintenance window for the
|
15415
|
+
# resource. There might be a delay of one or more days from this date
|
15416
|
+
# before the maintenance action is applied.
|
15379
15417
|
# @return [Time]
|
15380
15418
|
#
|
15381
15419
|
# @!attribute [rw] opt_in_status
|
@@ -15568,6 +15606,17 @@ module Aws::RDS
|
|
15568
15606
|
#
|
15569
15607
|
# * `DescribeValidDBInstanceModifications`
|
15570
15608
|
#
|
15609
|
+
# If you call `DescribeDBInstances`, `ProcessorFeature` returns non-null
|
15610
|
+
# values only if the following conditions are met:
|
15611
|
+
#
|
15612
|
+
# * You are accessing an Oracle DB instance.
|
15613
|
+
#
|
15614
|
+
# * Your Oracle DB instance class supports configuring the number of CPU
|
15615
|
+
# cores and threads per core.
|
15616
|
+
#
|
15617
|
+
# * The current number CPU cores and threads is set to a non-default
|
15618
|
+
# value.
|
15619
|
+
#
|
15571
15620
|
# For more information, see [Configuring the Processor of the DB
|
15572
15621
|
# Instance Class][1] in the <i>Amazon RDS User Guide. </i>
|
15573
15622
|
#
|
@@ -19698,18 +19747,18 @@ module Aws::RDS
|
|
19698
19747
|
# A key is the required name of the tag. The string value can be from
|
19699
19748
|
# 1 to 128 Unicode characters in length and can't be prefixed with
|
19700
19749
|
# "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\\}\_
|
19750
|
+
# Unicode letters, digits, white-space, '\_', '.', ':', '/',
|
19751
|
+
# '=', '+', '-', '@' (Java regex:
|
19752
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
19704
19753
|
# @return [String]
|
19705
19754
|
#
|
19706
19755
|
# @!attribute [rw] value
|
19707
19756
|
# A value is the optional value of the tag. The string value can be
|
19708
19757
|
# from 1 to 256 Unicode characters in length and can't be prefixed
|
19709
19758
|
# 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\\}\_
|
19759
|
+
# of Unicode letters, digits, white-space, '\_', '.', ':',
|
19760
|
+
# '/', '=', '+', '-', '@' (Java regex:
|
19761
|
+
# "^(\[\\\\p\\\{L\\}\\\\p\\\{Z\\}\\\\p\\\{N\\}\_.:/=+\\\\-@\]*)$").
|
19713
19762
|
# @return [String]
|
19714
19763
|
#
|
19715
19764
|
# @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.101.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-09-30 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:
|