aws-sdk-rds 1.81.0 → 1.86.1
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 +1 -1
- data/lib/aws-sdk-rds/client.rb +56 -20
- data/lib/aws-sdk-rds/client_api.rb +18 -1
- data/lib/aws-sdk-rds/types.rb +87 -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: 591a6ecf669758332ee4287c1ae02c9625b5a8fe7ab7eadd4f13d230b1ba4dc7
|
4
|
+
data.tar.gz: 22b46fb32bd5bf52f92d4f34e90c347c96252439806329a9615a447390fea9ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 316ec911713beec500297fdaeca407c59ba944cf6c822ae78751a0de5b82d2e918ffb4566386442eadd7c46996a6bf0e864f2edbc01da66339536e5a35f699ea
|
7
|
+
data.tar.gz: 37a06b696891052e704e4785a427e3980a6325b9523c8df3d6728bef7eeb95ce1d665e0bf842491bec108ecb322ae86c7cf181ea1e464f7b13f099c37e69433b
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -24,6 +24,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
30
|
require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
@@ -70,6 +71,7 @@ module Aws::RDS
|
|
70
71
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
71
72
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
72
73
|
add_plugin(Aws::Plugins::TransferEncoding)
|
74
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
73
75
|
add_plugin(Aws::Plugins::SignatureV4)
|
74
76
|
add_plugin(Aws::Plugins::Protocols::Query)
|
75
77
|
add_plugin(Aws::RDS::Plugins::CrossRegionCopying)
|
@@ -107,7 +109,7 @@ module Aws::RDS
|
|
107
109
|
# @option options [required, String] :region
|
108
110
|
# The AWS region to connect to. The configured `:region` is
|
109
111
|
# used to determine the service `:endpoint`. When not passed,
|
110
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
111
113
|
#
|
112
114
|
# * `Aws.config[:region]`
|
113
115
|
# * `ENV['AWS_REGION']`
|
@@ -163,7 +165,7 @@ module Aws::RDS
|
|
163
165
|
# @option options [String] :endpoint
|
164
166
|
# The client endpoint is normally constructed from the `:region`
|
165
167
|
# option. You should only configure an `:endpoint` when connecting
|
166
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
167
169
|
#
|
168
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
169
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -178,7 +180,7 @@ module Aws::RDS
|
|
178
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
179
181
|
#
|
180
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
181
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
182
184
|
#
|
183
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
184
186
|
# The log formatter.
|
@@ -4490,9 +4492,8 @@ module Aws::RDS
|
|
4490
4492
|
# @option params [required, String] :engine_family
|
4491
4493
|
# The kinds of databases that the proxy can connect to. This value
|
4492
4494
|
# determines which database network protocol the proxy recognizes when
|
4493
|
-
# it interprets network traffic to and from the database.
|
4494
|
-
#
|
4495
|
-
# MySQL and Aurora MySQL.
|
4495
|
+
# it interprets network traffic to and from the database. The engine
|
4496
|
+
# family applies to MySQL and PostgreSQL for both RDS and Aurora.
|
4496
4497
|
#
|
4497
4498
|
# @option params [required, Array<Types::UserAuthConfig>] :auth
|
4498
4499
|
# The authorization mechanism that the proxy uses.
|
@@ -4538,7 +4539,7 @@ module Aws::RDS
|
|
4538
4539
|
#
|
4539
4540
|
# resp = client.create_db_proxy({
|
4540
4541
|
# db_proxy_name: "String", # required
|
4541
|
-
# engine_family: "MYSQL", # required, accepts MYSQL
|
4542
|
+
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL
|
4542
4543
|
# auth: [ # required
|
4543
4544
|
# {
|
4544
4545
|
# description: "String",
|
@@ -4566,7 +4567,7 @@ module Aws::RDS
|
|
4566
4567
|
#
|
4567
4568
|
# resp.db_proxy.db_proxy_name #=> String
|
4568
4569
|
# resp.db_proxy.db_proxy_arn #=> String
|
4569
|
-
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
4570
|
+
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
4570
4571
|
# resp.db_proxy.engine_family #=> String
|
4571
4572
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
4572
4573
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
@@ -5991,7 +5992,7 @@ module Aws::RDS
|
|
5991
5992
|
#
|
5992
5993
|
# resp.db_proxy.db_proxy_name #=> String
|
5993
5994
|
# resp.db_proxy.db_proxy_arn #=> String
|
5994
|
-
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
5995
|
+
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
5995
5996
|
# resp.db_proxy.engine_family #=> String
|
5996
5997
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
5997
5998
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
@@ -8305,7 +8306,7 @@ module Aws::RDS
|
|
8305
8306
|
# resp.db_proxies #=> Array
|
8306
8307
|
# resp.db_proxies[0].db_proxy_name #=> String
|
8307
8308
|
# resp.db_proxies[0].db_proxy_arn #=> String
|
8308
|
-
# resp.db_proxies[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
8309
|
+
# resp.db_proxies[0].status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
8309
8310
|
# resp.db_proxies[0].engine_family #=> String
|
8310
8311
|
# resp.db_proxies[0].vpc_security_group_ids #=> Array
|
8311
8312
|
# resp.db_proxies[0].vpc_security_group_ids[0] #=> String
|
@@ -8479,6 +8480,9 @@ module Aws::RDS
|
|
8479
8480
|
# resp.targets[0].rds_resource_id #=> String
|
8480
8481
|
# resp.targets[0].port #=> Integer
|
8481
8482
|
# resp.targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
|
8483
|
+
# resp.targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
8484
|
+
# resp.targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY"
|
8485
|
+
# resp.targets[0].target_health.description #=> String
|
8482
8486
|
# resp.marker #=> String
|
8483
8487
|
#
|
8484
8488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBProxyTargets AWS API Documentation
|
@@ -9928,6 +9932,14 @@ module Aws::RDS
|
|
9928
9932
|
# The license model filter value. Specify this parameter to show only
|
9929
9933
|
# the available offerings matching the specified license model.
|
9930
9934
|
#
|
9935
|
+
# @option params [String] :availability_zone_group
|
9936
|
+
# The Availability Zone group associated with a Local Zone. Specify this
|
9937
|
+
# parameter to retrieve available offerings for the Local Zones in the
|
9938
|
+
# group.
|
9939
|
+
#
|
9940
|
+
# Omit this parameter to show the available offerings in the specified
|
9941
|
+
# AWS Region.
|
9942
|
+
#
|
9931
9943
|
# @option params [Boolean] :vpc
|
9932
9944
|
# A value that indicates whether to show only VPC or non-VPC offerings.
|
9933
9945
|
#
|
@@ -9982,6 +9994,7 @@ module Aws::RDS
|
|
9982
9994
|
# engine_version: "String",
|
9983
9995
|
# db_instance_class: "String",
|
9984
9996
|
# license_model: "String",
|
9997
|
+
# availability_zone_group: "String",
|
9985
9998
|
# vpc: false,
|
9986
9999
|
# filters: [
|
9987
10000
|
# {
|
@@ -10000,6 +10013,7 @@ module Aws::RDS
|
|
10000
10013
|
# resp.orderable_db_instance_options[0].engine_version #=> String
|
10001
10014
|
# resp.orderable_db_instance_options[0].db_instance_class #=> String
|
10002
10015
|
# resp.orderable_db_instance_options[0].license_model #=> String
|
10016
|
+
# resp.orderable_db_instance_options[0].availability_zone_group #=> String
|
10003
10017
|
# resp.orderable_db_instance_options[0].availability_zones #=> Array
|
10004
10018
|
# resp.orderable_db_instance_options[0].availability_zones[0].name #=> String
|
10005
10019
|
# resp.orderable_db_instance_options[0].multi_az_capable #=> Boolean
|
@@ -12873,7 +12887,7 @@ module Aws::RDS
|
|
12873
12887
|
#
|
12874
12888
|
# resp.db_proxy.db_proxy_name #=> String
|
12875
12889
|
# resp.db_proxy.db_proxy_arn #=> String
|
12876
|
-
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting"
|
12890
|
+
# resp.db_proxy.status #=> String, one of "available", "modifying", "incompatible-network", "insufficient-resource-limits", "creating", "deleting", "suspended", "suspending", "reactivating"
|
12877
12891
|
# resp.db_proxy.engine_family #=> String
|
12878
12892
|
# resp.db_proxy.vpc_security_group_ids #=> Array
|
12879
12893
|
# resp.db_proxy.vpc_security_group_ids[0] #=> String
|
@@ -14199,6 +14213,9 @@ module Aws::RDS
|
|
14199
14213
|
# resp.db_proxy_targets[0].rds_resource_id #=> String
|
14200
14214
|
# resp.db_proxy_targets[0].port #=> Integer
|
14201
14215
|
# resp.db_proxy_targets[0].type #=> String, one of "RDS_INSTANCE", "RDS_SERVERLESS_ENDPOINT", "TRACKED_CLUSTER"
|
14216
|
+
# resp.db_proxy_targets[0].target_health.state #=> String, one of "REGISTERING", "AVAILABLE", "UNAVAILABLE"
|
14217
|
+
# resp.db_proxy_targets[0].target_health.reason #=> String, one of "UNREACHABLE", "CONNECTION_FAILED", "AUTH_FAILURE", "PENDING_PROXY_CAPACITY"
|
14218
|
+
# resp.db_proxy_targets[0].target_health.description #=> String
|
14202
14219
|
#
|
14203
14220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RegisterDBProxyTargets AWS API Documentation
|
14204
14221
|
#
|
@@ -14657,6 +14674,18 @@ module Aws::RDS
|
|
14657
14674
|
# described in [ Migrating Data to an Amazon Aurora MySQL DB Cluster][1]
|
14658
14675
|
# in the *Amazon Aurora User Guide*.
|
14659
14676
|
#
|
14677
|
+
# <note markdown="1"> This action only restores the DB cluster, not the DB instances for
|
14678
|
+
# that DB cluster. You must invoke the `CreateDBInstance` action to
|
14679
|
+
# create DB instances for the restored DB cluster, specifying the
|
14680
|
+
# identifier of the restored DB cluster in `DBClusterIdentifier`. You
|
14681
|
+
# can create DB instances only after the `RestoreDBClusterFromS3` action
|
14682
|
+
# has completed and the DB cluster is available.
|
14683
|
+
#
|
14684
|
+
# </note>
|
14685
|
+
#
|
14686
|
+
# For more information on Amazon Aurora, see [ What Is Amazon
|
14687
|
+
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
14688
|
+
#
|
14660
14689
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
14661
14690
|
#
|
14662
14691
|
# </note>
|
@@ -14664,6 +14693,7 @@ module Aws::RDS
|
|
14664
14693
|
#
|
14665
14694
|
#
|
14666
14695
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.html
|
14696
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
14667
14697
|
#
|
14668
14698
|
# @option params [Array<String>] :availability_zones
|
14669
14699
|
# A list of Availability Zones (AZs) where instances in the restored DB
|
@@ -15103,6 +15133,10 @@ module Aws::RDS
|
|
15103
15133
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
15104
15134
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
15105
15135
|
#
|
15136
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15137
|
+
#
|
15138
|
+
# </note>
|
15139
|
+
#
|
15106
15140
|
#
|
15107
15141
|
#
|
15108
15142
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -17969,17 +18003,19 @@ module Aws::RDS
|
|
17969
18003
|
# provided, all the snapshot data is exported. Valid values are the
|
17970
18004
|
# following:
|
17971
18005
|
#
|
17972
|
-
# * `database` - Export all the data
|
18006
|
+
# * `database` - Export all the data from a specified database.
|
17973
18007
|
#
|
17974
|
-
# * `database.table
|
18008
|
+
# * `database.table` *table-name* - Export a table of the snapshot. This
|
18009
|
+
# format is valid only for RDS for MySQL, RDS for MariaDB, and Aurora
|
18010
|
+
# MySQL.
|
17975
18011
|
#
|
17976
|
-
# * `database.schema
|
17977
|
-
# snapshot. This
|
17978
|
-
#
|
18012
|
+
# * `database.schema` *schema-name* - Export a database schema of the
|
18013
|
+
# snapshot. This format is valid only for RDS for PostgreSQL and
|
18014
|
+
# Aurora PostgreSQL.
|
17979
18015
|
#
|
17980
|
-
# * `database.schema.table
|
17981
|
-
# database schema. This
|
17982
|
-
#
|
18016
|
+
# * `database.schema.table` *table-name* - Export a table of the
|
18017
|
+
# database schema. This format is valid only for RDS for PostgreSQL
|
18018
|
+
# and Aurora PostgreSQL.
|
17983
18019
|
#
|
17984
18020
|
# @return [Types::ExportTask] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
17985
18021
|
#
|
@@ -18379,7 +18415,7 @@ module Aws::RDS
|
|
18379
18415
|
params: params,
|
18380
18416
|
config: config)
|
18381
18417
|
context[:gem_name] = 'aws-sdk-rds'
|
18382
|
-
context[:gem_version] = '1.
|
18418
|
+
context[:gem_version] = '1.86.1'
|
18383
18419
|
Seahorse::Client::Request.new(handlers, context)
|
18384
18420
|
end
|
18385
18421
|
|
@@ -543,7 +543,10 @@ module Aws::RDS
|
|
543
543
|
TagList = Shapes::ListShape.new(name: 'TagList')
|
544
544
|
TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
|
545
545
|
TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
|
546
|
+
TargetHealth = Shapes::StructureShape.new(name: 'TargetHealth')
|
547
|
+
TargetHealthReason = Shapes::StringShape.new(name: 'TargetHealthReason')
|
546
548
|
TargetList = Shapes::ListShape.new(name: 'TargetList')
|
549
|
+
TargetState = Shapes::StringShape.new(name: 'TargetState')
|
547
550
|
TargetType = Shapes::StringShape.new(name: 'TargetType')
|
548
551
|
Timezone = Shapes::StructureShape.new(name: 'Timezone')
|
549
552
|
UpgradeTarget = Shapes::StructureShape.new(name: 'UpgradeTarget')
|
@@ -1413,6 +1416,7 @@ module Aws::RDS
|
|
1413
1416
|
DBProxyTarget.add_member(:rds_resource_id, Shapes::ShapeRef.new(shape: String, location_name: "RdsResourceId"))
|
1414
1417
|
DBProxyTarget.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "Port"))
|
1415
1418
|
DBProxyTarget.add_member(:type, Shapes::ShapeRef.new(shape: TargetType, location_name: "Type"))
|
1419
|
+
DBProxyTarget.add_member(:target_health, Shapes::ShapeRef.new(shape: TargetHealth, location_name: "TargetHealth"))
|
1416
1420
|
DBProxyTarget.struct_class = Types::DBProxyTarget
|
1417
1421
|
|
1418
1422
|
DBProxyTargetAlreadyRegisteredFault.struct_class = Types::DBProxyTargetAlreadyRegisteredFault
|
@@ -1888,6 +1892,7 @@ module Aws::RDS
|
|
1888
1892
|
DescribeOrderableDBInstanceOptionsMessage.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
1889
1893
|
DescribeOrderableDBInstanceOptionsMessage.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
|
1890
1894
|
DescribeOrderableDBInstanceOptionsMessage.add_member(:license_model, Shapes::ShapeRef.new(shape: String, location_name: "LicenseModel"))
|
1895
|
+
DescribeOrderableDBInstanceOptionsMessage.add_member(:availability_zone_group, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneGroup"))
|
1891
1896
|
DescribeOrderableDBInstanceOptionsMessage.add_member(:vpc, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "Vpc"))
|
1892
1897
|
DescribeOrderableDBInstanceOptionsMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
1893
1898
|
DescribeOrderableDBInstanceOptionsMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxRecords"))
|
@@ -2516,6 +2521,7 @@ module Aws::RDS
|
|
2516
2521
|
OrderableDBInstanceOption.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
2517
2522
|
OrderableDBInstanceOption.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
|
2518
2523
|
OrderableDBInstanceOption.add_member(:license_model, Shapes::ShapeRef.new(shape: String, location_name: "LicenseModel"))
|
2524
|
+
OrderableDBInstanceOption.add_member(:availability_zone_group, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZoneGroup"))
|
2519
2525
|
OrderableDBInstanceOption.add_member(:availability_zones, Shapes::ShapeRef.new(shape: AvailabilityZoneList, location_name: "AvailabilityZones"))
|
2520
2526
|
OrderableDBInstanceOption.add_member(:multi_az_capable, Shapes::ShapeRef.new(shape: Boolean, location_name: "MultiAZCapable"))
|
2521
2527
|
OrderableDBInstanceOption.add_member(:read_replica_capable, Shapes::ShapeRef.new(shape: Boolean, location_name: "ReadReplicaCapable"))
|
@@ -3111,6 +3117,11 @@ module Aws::RDS
|
|
3111
3117
|
|
3112
3118
|
TargetGroupList.member = Shapes::ShapeRef.new(shape: DBProxyTargetGroup)
|
3113
3119
|
|
3120
|
+
TargetHealth.add_member(:state, Shapes::ShapeRef.new(shape: TargetState, location_name: "State"))
|
3121
|
+
TargetHealth.add_member(:reason, Shapes::ShapeRef.new(shape: TargetHealthReason, location_name: "Reason"))
|
3122
|
+
TargetHealth.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
3123
|
+
TargetHealth.struct_class = Types::TargetHealth
|
3124
|
+
|
3114
3125
|
TargetList.member = Shapes::ShapeRef.new(shape: DBProxyTarget)
|
3115
3126
|
|
3116
3127
|
Timezone.add_member(:timezone_name, Shapes::ShapeRef.new(shape: String, location_name: "TimezoneName"))
|
@@ -3231,8 +3242,10 @@ module Aws::RDS
|
|
3231
3242
|
o.input = Shapes::ShapeRef.new(shape: AddTagsToResourceMessage)
|
3232
3243
|
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
3233
3244
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
3234
|
-
o.errors << Shapes::ShapeRef.new(shape: DBSnapshotNotFoundFault)
|
3235
3245
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
3246
|
+
o.errors << Shapes::ShapeRef.new(shape: DBSnapshotNotFoundFault)
|
3247
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
3248
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
|
3236
3249
|
end)
|
3237
3250
|
|
3238
3251
|
api.add_operation(:apply_pending_maintenance_action, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4286,6 +4299,8 @@ module Aws::RDS
|
|
4286
4299
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
4287
4300
|
o.errors << Shapes::ShapeRef.new(shape: DBSnapshotNotFoundFault)
|
4288
4301
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
4302
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
4303
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
|
4289
4304
|
end)
|
4290
4305
|
|
4291
4306
|
api.add_operation(:modify_certificates, Seahorse::Model::Operation.new.tap do |o|
|
@@ -4595,6 +4610,8 @@ module Aws::RDS
|
|
4595
4610
|
o.errors << Shapes::ShapeRef.new(shape: DBInstanceNotFoundFault)
|
4596
4611
|
o.errors << Shapes::ShapeRef.new(shape: DBSnapshotNotFoundFault)
|
4597
4612
|
o.errors << Shapes::ShapeRef.new(shape: DBClusterNotFoundFault)
|
4613
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyNotFoundFault)
|
4614
|
+
o.errors << Shapes::ShapeRef.new(shape: DBProxyTargetGroupNotFoundFault)
|
4598
4615
|
end)
|
4599
4616
|
|
4600
4617
|
api.add_operation(:reset_db_cluster_parameter_group, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -790,6 +790,8 @@ module Aws::RDS
|
|
790
790
|
# the separator. You can also include multiple variables in a single
|
791
791
|
# `SET` statement, such as `SET x=1, y=2`.
|
792
792
|
#
|
793
|
+
# `InitQuery` is not currently supported for PostgreSQL.
|
794
|
+
#
|
793
795
|
# Default: no initialization query
|
794
796
|
# @return [String]
|
795
797
|
#
|
@@ -853,6 +855,8 @@ module Aws::RDS
|
|
853
855
|
# multiple statements, use semicolons as the separator. You can also
|
854
856
|
# include multiple variables in a single `SET` statement, such as `SET
|
855
857
|
# x=1, y=2`.
|
858
|
+
#
|
859
|
+
# `InitQuery` is not currently supported for PostgreSQL.
|
856
860
|
# @return [String]
|
857
861
|
#
|
858
862
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ConnectionPoolConfigurationInfo AWS API Documentation
|
@@ -3961,7 +3965,7 @@ module Aws::RDS
|
|
3961
3965
|
#
|
3962
3966
|
# {
|
3963
3967
|
# db_proxy_name: "String", # required
|
3964
|
-
# engine_family: "MYSQL", # required, accepts MYSQL
|
3968
|
+
# engine_family: "MYSQL", # required, accepts MYSQL, POSTGRESQL
|
3965
3969
|
# auth: [ # required
|
3966
3970
|
# {
|
3967
3971
|
# description: "String",
|
@@ -3996,9 +4000,8 @@ module Aws::RDS
|
|
3996
4000
|
# @!attribute [rw] engine_family
|
3997
4001
|
# The kinds of databases that the proxy can connect to. This value
|
3998
4002
|
# determines which database network protocol the proxy recognizes when
|
3999
|
-
# it interprets network traffic to and from the database.
|
4000
|
-
#
|
4001
|
-
# MySQL and Aurora MySQL.
|
4003
|
+
# it interprets network traffic to and from the database. The engine
|
4004
|
+
# family applies to MySQL and PostgreSQL for both RDS and Aurora.
|
4002
4005
|
# @return [String]
|
4003
4006
|
#
|
4004
4007
|
# @!attribute [rw] auth
|
@@ -6716,8 +6719,8 @@ module Aws::RDS
|
|
6716
6719
|
# @return [String]
|
6717
6720
|
#
|
6718
6721
|
# @!attribute [rw] engine_family
|
6719
|
-
#
|
6720
|
-
#
|
6722
|
+
# The engine family applies to MySQL and PostgreSQL for both RDS and
|
6723
|
+
# Aurora.
|
6721
6724
|
# @return [String]
|
6722
6725
|
#
|
6723
6726
|
# @!attribute [rw] vpc_security_group_ids
|
@@ -6863,6 +6866,10 @@ module Aws::RDS
|
|
6863
6866
|
# Aurora DB cluster, that the target represents.
|
6864
6867
|
# @return [String]
|
6865
6868
|
#
|
6869
|
+
# @!attribute [rw] target_health
|
6870
|
+
# Information about the connection health of the RDS Proxy target.
|
6871
|
+
# @return [Types::TargetHealth]
|
6872
|
+
#
|
6866
6873
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyTarget AWS API Documentation
|
6867
6874
|
#
|
6868
6875
|
class DBProxyTarget < Struct.new(
|
@@ -6871,7 +6878,8 @@ module Aws::RDS
|
|
6871
6878
|
:tracked_cluster_id,
|
6872
6879
|
:rds_resource_id,
|
6873
6880
|
:port,
|
6874
|
-
:type
|
6881
|
+
:type,
|
6882
|
+
:target_health)
|
6875
6883
|
include Aws::Structure
|
6876
6884
|
end
|
6877
6885
|
|
@@ -10422,6 +10430,7 @@ module Aws::RDS
|
|
10422
10430
|
# engine_version: "String",
|
10423
10431
|
# db_instance_class: "String",
|
10424
10432
|
# license_model: "String",
|
10433
|
+
# availability_zone_group: "String",
|
10425
10434
|
# vpc: false,
|
10426
10435
|
# filters: [
|
10427
10436
|
# {
|
@@ -10453,6 +10462,15 @@ module Aws::RDS
|
|
10453
10462
|
# the available offerings matching the specified license model.
|
10454
10463
|
# @return [String]
|
10455
10464
|
#
|
10465
|
+
# @!attribute [rw] availability_zone_group
|
10466
|
+
# The Availability Zone group associated with a Local Zone. Specify
|
10467
|
+
# this parameter to retrieve available offerings for the Local Zones
|
10468
|
+
# in the group.
|
10469
|
+
#
|
10470
|
+
# Omit this parameter to show the available offerings in the specified
|
10471
|
+
# AWS Region.
|
10472
|
+
# @return [String]
|
10473
|
+
#
|
10456
10474
|
# @!attribute [rw] vpc
|
10457
10475
|
# A value that indicates whether to show only VPC or non-VPC
|
10458
10476
|
# offerings.
|
@@ -10487,6 +10505,7 @@ module Aws::RDS
|
|
10487
10505
|
:engine_version,
|
10488
10506
|
:db_instance_class,
|
10489
10507
|
:license_model,
|
10508
|
+
:availability_zone_group,
|
10490
10509
|
:vpc,
|
10491
10510
|
:filters,
|
10492
10511
|
:max_records,
|
@@ -11315,17 +11334,19 @@ module Aws::RDS
|
|
11315
11334
|
# @!attribute [rw] export_only
|
11316
11335
|
# The data exported from the snapshot. Valid values are the following:
|
11317
11336
|
#
|
11318
|
-
# * `database` - Export all the data
|
11337
|
+
# * `database` - Export all the data from a specified database.
|
11319
11338
|
#
|
11320
|
-
# * `database.table
|
11339
|
+
# * `database.table` *table-name* - Export a table of the snapshot.
|
11340
|
+
# This format is valid only for RDS for MySQL, RDS for MariaDB, and
|
11341
|
+
# Aurora MySQL.
|
11321
11342
|
#
|
11322
|
-
# * `database.schema
|
11323
|
-
# snapshot. This
|
11324
|
-
#
|
11343
|
+
# * `database.schema` *schema-name* - Export a database schema of the
|
11344
|
+
# snapshot. This format is valid only for RDS for PostgreSQL and
|
11345
|
+
# Aurora PostgreSQL.
|
11325
11346
|
#
|
11326
|
-
# * `database.schema.table
|
11327
|
-
# database schema. This
|
11328
|
-
#
|
11347
|
+
# * `database.schema.table` *table-name* - Export a table of the
|
11348
|
+
# database schema. This format is valid only for RDS for PostgreSQL
|
11349
|
+
# and Aurora PostgreSQL.
|
11329
11350
|
# @return [Array<String>]
|
11330
11351
|
#
|
11331
11352
|
# @!attribute [rw] snapshot_time
|
@@ -14634,6 +14655,10 @@ module Aws::RDS
|
|
14634
14655
|
# The license model for a DB instance.
|
14635
14656
|
# @return [String]
|
14636
14657
|
#
|
14658
|
+
# @!attribute [rw] availability_zone_group
|
14659
|
+
# The Availability Zone group for a DB instance.
|
14660
|
+
# @return [String]
|
14661
|
+
#
|
14637
14662
|
# @!attribute [rw] availability_zones
|
14638
14663
|
# A list of Availability Zones for a DB instance.
|
14639
14664
|
# @return [Array<Types::AvailabilityZone>]
|
@@ -14718,8 +14743,8 @@ module Aws::RDS
|
|
14718
14743
|
# @return [Array<String>]
|
14719
14744
|
#
|
14720
14745
|
# @!attribute [rw] supports_storage_autoscaling
|
14721
|
-
# Whether
|
14722
|
-
#
|
14746
|
+
# Whether Amazon RDS can automatically scale storage for DB instances
|
14747
|
+
# that use the specified DB instance class.
|
14723
14748
|
# @return [Boolean]
|
14724
14749
|
#
|
14725
14750
|
# @!attribute [rw] supports_kerberos_authentication
|
@@ -14733,6 +14758,7 @@ module Aws::RDS
|
|
14733
14758
|
:engine_version,
|
14734
14759
|
:db_instance_class,
|
14735
14760
|
:license_model,
|
14761
|
+
:availability_zone_group,
|
14736
14762
|
:availability_zones,
|
14737
14763
|
:multi_az_capable,
|
14738
14764
|
:read_replica_capable,
|
@@ -18877,17 +18903,19 @@ module Aws::RDS
|
|
18877
18903
|
# provided, all the snapshot data is exported. Valid values are the
|
18878
18904
|
# following:
|
18879
18905
|
#
|
18880
|
-
# * `database` - Export all the data
|
18906
|
+
# * `database` - Export all the data from a specified database.
|
18881
18907
|
#
|
18882
|
-
# * `database.table
|
18908
|
+
# * `database.table` *table-name* - Export a table of the snapshot.
|
18909
|
+
# This format is valid only for RDS for MySQL, RDS for MariaDB, and
|
18910
|
+
# Aurora MySQL.
|
18883
18911
|
#
|
18884
|
-
# * `database.schema
|
18885
|
-
# snapshot. This
|
18886
|
-
#
|
18912
|
+
# * `database.schema` *schema-name* - Export a database schema of the
|
18913
|
+
# snapshot. This format is valid only for RDS for PostgreSQL and
|
18914
|
+
# Aurora PostgreSQL.
|
18887
18915
|
#
|
18888
|
-
# * `database.schema.table
|
18889
|
-
# database schema. This
|
18890
|
-
#
|
18916
|
+
# * `database.schema.table` *table-name* - Export a table of the
|
18917
|
+
# database schema. This format is valid only for RDS for PostgreSQL
|
18918
|
+
# and Aurora PostgreSQL.
|
18891
18919
|
# @return [Array<String>]
|
18892
18920
|
#
|
18893
18921
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartExportTaskMessage AWS API Documentation
|
@@ -19139,6 +19167,40 @@ module Aws::RDS
|
|
19139
19167
|
include Aws::Structure
|
19140
19168
|
end
|
19141
19169
|
|
19170
|
+
# <note markdown="1"> This is prerelease documentation for the RDS Database Proxy feature in
|
19171
|
+
# preview release. It is subject to change.
|
19172
|
+
#
|
19173
|
+
# </note>
|
19174
|
+
#
|
19175
|
+
# Information about the connection health of an RDS Proxy target.
|
19176
|
+
#
|
19177
|
+
# @!attribute [rw] state
|
19178
|
+
# The current state of the connection health lifecycle for the RDS
|
19179
|
+
# Proxy target. The following is a typical lifecycle example for the
|
19180
|
+
# states of an RDS Proxy target:
|
19181
|
+
#
|
19182
|
+
# `registering` > `unavailable` > `available` > `unavailable`
|
19183
|
+
# > `available`
|
19184
|
+
# @return [String]
|
19185
|
+
#
|
19186
|
+
# @!attribute [rw] reason
|
19187
|
+
# The reason for the current health `State` of the RDS Proxy target.
|
19188
|
+
# @return [String]
|
19189
|
+
#
|
19190
|
+
# @!attribute [rw] description
|
19191
|
+
# A description of the health of the RDS Proxy target. If the `State`
|
19192
|
+
# is `AVAILABLE`, a description is not included.
|
19193
|
+
# @return [String]
|
19194
|
+
#
|
19195
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/TargetHealth AWS API Documentation
|
19196
|
+
#
|
19197
|
+
class TargetHealth < Struct.new(
|
19198
|
+
:state,
|
19199
|
+
:reason,
|
19200
|
+
:description)
|
19201
|
+
include Aws::Structure
|
19202
|
+
end
|
19203
|
+
|
19142
19204
|
# A time zone associated with a `DBInstance` or a `DBSnapshot`. This
|
19143
19205
|
# data type is an element in the response to the `DescribeDBInstances`,
|
19144
19206
|
# the `DescribeDBSnapshots`, and the `DescribeDBEngineVersions` actions.
|
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.86.1
|
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-06-11 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.99.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.99.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:
|