aws-sdk-rds 1.82.0 → 1.87.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +3 -1
- data/lib/aws-sdk-rds/account_quota.rb +2 -0
- data/lib/aws-sdk-rds/certificate.rb +2 -0
- data/lib/aws-sdk-rds/client.rb +209 -51
- data/lib/aws-sdk-rds/client_api.rb +10 -0
- data/lib/aws-sdk-rds/customizations.rb +2 -0
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +48 -0
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -0
- data/lib/aws-sdk-rds/db_engine.rb +2 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +2 -0
- data/lib/aws-sdk-rds/db_instance.rb +59 -25
- data/lib/aws-sdk-rds/db_log_file.rb +2 -0
- data/lib/aws-sdk-rds/db_parameter_group.rb +2 -0
- data/lib/aws-sdk-rds/db_parameter_group_family.rb +2 -0
- data/lib/aws-sdk-rds/db_security_group.rb +2 -0
- data/lib/aws-sdk-rds/db_snapshot.rb +18 -9
- data/lib/aws-sdk-rds/db_snapshot_attribute.rb +2 -0
- data/lib/aws-sdk-rds/db_subnet_group.rb +2 -0
- data/lib/aws-sdk-rds/errors.rb +2 -0
- data/lib/aws-sdk-rds/event.rb +2 -0
- data/lib/aws-sdk-rds/event_category_map.rb +2 -0
- data/lib/aws-sdk-rds/event_subscription.rb +2 -0
- data/lib/aws-sdk-rds/option_group.rb +2 -0
- data/lib/aws-sdk-rds/option_group_option.rb +2 -0
- data/lib/aws-sdk-rds/parameter.rb +2 -0
- data/lib/aws-sdk-rds/pending_maintenance_action.rb +2 -0
- data/lib/aws-sdk-rds/plugins/cross_region_copying.rb +2 -0
- data/lib/aws-sdk-rds/reserved_db_instance.rb +2 -0
- data/lib/aws-sdk-rds/reserved_db_instances_offering.rb +2 -0
- data/lib/aws-sdk-rds/resource.rb +24 -5
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
- data/lib/aws-sdk-rds/types.rb +190 -48
- data/lib/aws-sdk-rds/waiters.rb +2 -0
- 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: ce11175095cb41855e69bbb78870c421c5568b989abe3511cfa185495fe416df
|
4
|
+
data.tar.gz: 115f10e65a060adf5513e876ebb51e216a9c47ec92a6bd8477558e67d22de982
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88e8510b67c1e09f80e6d1618ea46e3cee23dc89873842e023fb76136399f26c6164844113baad7d0c962f85a8cb66de491ee417ad3a379de386c57e41e6ba1d
|
7
|
+
data.tar.gz: 89aa1dc7b1452bad8a2d007ec5b50ec36d2359817c4b2b812c1f4d959e77a3d4ca54ad82a29e61f153ed6110a88bebab30d4997a403ba48c55b8d18913265e82
|
data/lib/aws-sdk-rds.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -71,6 +73,6 @@ require_relative 'aws-sdk-rds/customizations'
|
|
71
73
|
# @service
|
72
74
|
module Aws::RDS
|
73
75
|
|
74
|
-
GEM_VERSION = '1.
|
76
|
+
GEM_VERSION = '1.87.0'
|
75
77
|
|
76
78
|
end
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
require 'aws-sdk-rds/plugins/cross_region_copying.rb'
|
@@ -70,6 +73,7 @@ module Aws::RDS
|
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
71
74
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
72
75
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
73
77
|
add_plugin(Aws::Plugins::SignatureV4)
|
74
78
|
add_plugin(Aws::Plugins::Protocols::Query)
|
75
79
|
add_plugin(Aws::RDS::Plugins::CrossRegionCopying)
|
@@ -107,7 +111,7 @@ module Aws::RDS
|
|
107
111
|
# @option options [required, String] :region
|
108
112
|
# The AWS region to connect to. The configured `:region` is
|
109
113
|
# used to determine the service `:endpoint`. When not passed,
|
110
|
-
# a default `:region` is
|
114
|
+
# a default `:region` is searched for in the following locations:
|
111
115
|
#
|
112
116
|
# * `Aws.config[:region]`
|
113
117
|
# * `ENV['AWS_REGION']`
|
@@ -163,7 +167,7 @@ module Aws::RDS
|
|
163
167
|
# @option options [String] :endpoint
|
164
168
|
# The client endpoint is normally constructed from the `:region`
|
165
169
|
# option. You should only configure an `:endpoint` when connecting
|
166
|
-
# to test endpoints. This should be
|
170
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
167
171
|
#
|
168
172
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
169
173
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -178,7 +182,7 @@ module Aws::RDS
|
|
178
182
|
# requests fetching endpoints information. Defaults to 60 sec.
|
179
183
|
#
|
180
184
|
# @option options [Boolean] :endpoint_discovery (false)
|
181
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
185
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
182
186
|
#
|
183
187
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
184
188
|
# The log formatter.
|
@@ -720,7 +724,7 @@ module Aws::RDS
|
|
720
724
|
# For more information on backtracking, see [ Backtracking an Aurora DB
|
721
725
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
722
726
|
#
|
723
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
727
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
724
728
|
#
|
725
729
|
# </note>
|
726
730
|
#
|
@@ -2100,6 +2104,10 @@ module Aws::RDS
|
|
2100
2104
|
# The target backtrack window, in seconds. To disable backtracking, set
|
2101
2105
|
# this value to 0.
|
2102
2106
|
#
|
2107
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
2108
|
+
#
|
2109
|
+
# </note>
|
2110
|
+
#
|
2103
2111
|
# Default: 0
|
2104
2112
|
#
|
2105
2113
|
# Constraints:
|
@@ -2198,6 +2206,14 @@ module Aws::RDS
|
|
2198
2206
|
# Specify the name of the IAM role to be used when making API calls to
|
2199
2207
|
# the Directory Service.
|
2200
2208
|
#
|
2209
|
+
# @option params [Boolean] :enable_global_write_forwarding
|
2210
|
+
# A value that indicates whether to enable write operations to be
|
2211
|
+
# forwarded from this cluster to the primary cluster in an Aurora global
|
2212
|
+
# database. The resulting changes are replicated back to this cluster.
|
2213
|
+
# This parameter only applies to DB clusters that are secondary clusters
|
2214
|
+
# in an Aurora global database. By default, Aurora disallows write
|
2215
|
+
# operations for secondary clusters.
|
2216
|
+
#
|
2201
2217
|
# @option params [String] :source_region
|
2202
2218
|
# The source region of the snapshot. This is only needed when the
|
2203
2219
|
# shapshot is encrypted and in a different region.
|
@@ -2279,6 +2295,7 @@ module Aws::RDS
|
|
2279
2295
|
# copy_tags_to_snapshot: false,
|
2280
2296
|
# domain: "String",
|
2281
2297
|
# domain_iam_role_name: "String",
|
2298
|
+
# enable_global_write_forwarding: false,
|
2282
2299
|
# source_region: "String",
|
2283
2300
|
# })
|
2284
2301
|
#
|
@@ -2359,6 +2376,8 @@ module Aws::RDS
|
|
2359
2376
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2360
2377
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2361
2378
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
2379
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
2380
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
2362
2381
|
#
|
2363
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2364
2383
|
#
|
@@ -3280,11 +3299,16 @@ module Aws::RDS
|
|
3280
3299
|
#
|
3281
3300
|
# @option params [Boolean] :publicly_accessible
|
3282
3301
|
# A value that indicates whether the DB instance is publicly accessible.
|
3283
|
-
#
|
3284
|
-
#
|
3285
|
-
#
|
3286
|
-
#
|
3287
|
-
#
|
3302
|
+
#
|
3303
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
3304
|
+
# to the private IP address from within the DB instance's VPC, and to
|
3305
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
3306
|
+
# to the DB instance is ultimately controlled by the security group it
|
3307
|
+
# uses, and that public access is not permitted if the security group
|
3308
|
+
# assigned to the DB instance doesn't permit it.
|
3309
|
+
#
|
3310
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
3311
|
+
# instance with a DNS name that resolves to a private IP address.
|
3288
3312
|
#
|
3289
3313
|
# Default: The default behavior varies depending on whether
|
3290
3314
|
# `DBSubnetGroupName` is specified.
|
@@ -3895,11 +3919,18 @@ module Aws::RDS
|
|
3895
3919
|
#
|
3896
3920
|
# @option params [Boolean] :publicly_accessible
|
3897
3921
|
# A value that indicates whether the DB instance is publicly accessible.
|
3898
|
-
#
|
3899
|
-
#
|
3900
|
-
#
|
3901
|
-
#
|
3902
|
-
#
|
3922
|
+
#
|
3923
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
3924
|
+
# to the private IP address from within the DB instance's VPC, and to
|
3925
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
3926
|
+
# to the DB instance is ultimately controlled by the security group it
|
3927
|
+
# uses, and that public access is not permitted if the security group
|
3928
|
+
# assigned to the DB instance doesn't permit it.
|
3929
|
+
#
|
3930
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
3931
|
+
# instance with a DNS name that resolves to a private IP address.
|
3932
|
+
#
|
3933
|
+
# For more information, see CreateDBInstance.
|
3903
3934
|
#
|
3904
3935
|
# @option params [Array<Types::Tag>] :tags
|
3905
3936
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -5108,6 +5139,7 @@ module Aws::RDS
|
|
5108
5139
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
5109
5140
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
5110
5141
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
5142
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5111
5143
|
#
|
5112
5144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
|
5113
5145
|
#
|
@@ -5436,6 +5468,8 @@ module Aws::RDS
|
|
5436
5468
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5437
5469
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5438
5470
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
5471
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
5472
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
5439
5473
|
#
|
5440
5474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
5441
5475
|
#
|
@@ -6287,6 +6321,7 @@ module Aws::RDS
|
|
6287
6321
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
6288
6322
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
6289
6323
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
6324
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
6290
6325
|
#
|
6291
6326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
|
6292
6327
|
#
|
@@ -6627,7 +6662,7 @@ module Aws::RDS
|
|
6627
6662
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
6628
6663
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6629
6664
|
#
|
6630
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6665
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
6631
6666
|
#
|
6632
6667
|
# </note>
|
6633
6668
|
#
|
@@ -7466,6 +7501,8 @@ module Aws::RDS
|
|
7466
7501
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7467
7502
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7468
7503
|
# resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
|
7504
|
+
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7505
|
+
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7469
7506
|
#
|
7470
7507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
7471
7508
|
#
|
@@ -9603,6 +9640,7 @@ module Aws::RDS
|
|
9603
9640
|
# resp.global_clusters[0].global_cluster_members[0].readers #=> Array
|
9604
9641
|
# resp.global_clusters[0].global_cluster_members[0].readers[0] #=> String
|
9605
9642
|
# resp.global_clusters[0].global_cluster_members[0].is_writer #=> Boolean
|
9643
|
+
# resp.global_clusters[0].global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9606
9644
|
#
|
9607
9645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
9608
9646
|
#
|
@@ -9930,6 +9968,14 @@ module Aws::RDS
|
|
9930
9968
|
# The license model filter value. Specify this parameter to show only
|
9931
9969
|
# the available offerings matching the specified license model.
|
9932
9970
|
#
|
9971
|
+
# @option params [String] :availability_zone_group
|
9972
|
+
# The Availability Zone group associated with a Local Zone. Specify this
|
9973
|
+
# parameter to retrieve available offerings for the Local Zones in the
|
9974
|
+
# group.
|
9975
|
+
#
|
9976
|
+
# Omit this parameter to show the available offerings in the specified
|
9977
|
+
# AWS Region.
|
9978
|
+
#
|
9933
9979
|
# @option params [Boolean] :vpc
|
9934
9980
|
# A value that indicates whether to show only VPC or non-VPC offerings.
|
9935
9981
|
#
|
@@ -9984,6 +10030,7 @@ module Aws::RDS
|
|
9984
10030
|
# engine_version: "String",
|
9985
10031
|
# db_instance_class: "String",
|
9986
10032
|
# license_model: "String",
|
10033
|
+
# availability_zone_group: "String",
|
9987
10034
|
# vpc: false,
|
9988
10035
|
# filters: [
|
9989
10036
|
# {
|
@@ -10002,6 +10049,7 @@ module Aws::RDS
|
|
10002
10049
|
# resp.orderable_db_instance_options[0].engine_version #=> String
|
10003
10050
|
# resp.orderable_db_instance_options[0].db_instance_class #=> String
|
10004
10051
|
# resp.orderable_db_instance_options[0].license_model #=> String
|
10052
|
+
# resp.orderable_db_instance_options[0].availability_zone_group #=> String
|
10005
10053
|
# resp.orderable_db_instance_options[0].availability_zones #=> Array
|
10006
10054
|
# resp.orderable_db_instance_options[0].availability_zones[0].name #=> String
|
10007
10055
|
# resp.orderable_db_instance_options[0].multi_az_capable #=> Boolean
|
@@ -10813,6 +10861,8 @@ module Aws::RDS
|
|
10813
10861
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10814
10862
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10815
10863
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
10864
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10865
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10816
10866
|
#
|
10817
10867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
10818
10868
|
#
|
@@ -11327,6 +11377,10 @@ module Aws::RDS
|
|
11327
11377
|
# The target backtrack window, in seconds. To disable backtracking, set
|
11328
11378
|
# this value to 0.
|
11329
11379
|
#
|
11380
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
11381
|
+
#
|
11382
|
+
# </note>
|
11383
|
+
#
|
11330
11384
|
# Default: 0
|
11331
11385
|
#
|
11332
11386
|
# Constraints:
|
@@ -11431,6 +11485,14 @@ module Aws::RDS
|
|
11431
11485
|
# A value that indicates whether to copy all tags from the DB cluster to
|
11432
11486
|
# snapshots of the DB cluster. The default is not to copy them.
|
11433
11487
|
#
|
11488
|
+
# @option params [Boolean] :enable_global_write_forwarding
|
11489
|
+
# A value that indicates whether to enable write operations to be
|
11490
|
+
# forwarded from this cluster to the primary cluster in an Aurora global
|
11491
|
+
# database. The resulting changes are replicated back to this cluster.
|
11492
|
+
# This parameter only applies to DB clusters that are secondary clusters
|
11493
|
+
# in an Aurora global database. By default, Aurora disallows write
|
11494
|
+
# operations for secondary clusters.
|
11495
|
+
#
|
11434
11496
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11435
11497
|
#
|
11436
11498
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11490,6 +11552,7 @@ module Aws::RDS
|
|
11490
11552
|
# deletion_protection: false,
|
11491
11553
|
# enable_http_endpoint: false,
|
11492
11554
|
# copy_tags_to_snapshot: false,
|
11555
|
+
# enable_global_write_forwarding: false,
|
11493
11556
|
# })
|
11494
11557
|
#
|
11495
11558
|
# @example Response structure
|
@@ -11569,6 +11632,8 @@ module Aws::RDS
|
|
11569
11632
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11570
11633
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11571
11634
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11635
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11636
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11572
11637
|
#
|
11573
11638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
11574
11639
|
#
|
@@ -11760,16 +11825,23 @@ module Aws::RDS
|
|
11760
11825
|
# to add a list of IDs of the AWS accounts that are authorized to
|
11761
11826
|
# restore the manual DB cluster snapshot. Use the value `all` to make
|
11762
11827
|
# the manual DB cluster snapshot public, which means that it can be
|
11763
|
-
# copied or restored by all AWS accounts.
|
11764
|
-
#
|
11765
|
-
#
|
11766
|
-
#
|
11767
|
-
#
|
11768
|
-
#
|
11828
|
+
# copied or restored by all AWS accounts.
|
11829
|
+
#
|
11830
|
+
# <note markdown="1"> Don't add the `all` value for any manual DB cluster snapshots that
|
11831
|
+
# contain private information that you don't want available to all AWS
|
11832
|
+
# accounts.
|
11833
|
+
#
|
11834
|
+
# </note>
|
11835
|
+
#
|
11836
|
+
# If a manual DB cluster snapshot is encrypted, it can be shared, but
|
11837
|
+
# only by specifying a list of authorized AWS account IDs for the
|
11838
|
+
# `ValuesToAdd` parameter. You can't use `all` as a value for that
|
11839
|
+
# parameter in this case.
|
11769
11840
|
#
|
11770
11841
|
# To view which AWS accounts have access to copy or restore a manual DB
|
11771
|
-
# cluster snapshot, or whether a manual DB cluster snapshot public or
|
11772
|
-
# private, use the
|
11842
|
+
# cluster snapshot, or whether a manual DB cluster snapshot is public or
|
11843
|
+
# private, use the DescribeDBClusterSnapshotAttributes API action. The
|
11844
|
+
# accounts are returned as values for the `restore` attribute.
|
11773
11845
|
#
|
11774
11846
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
11775
11847
|
#
|
@@ -11785,6 +11857,11 @@ module Aws::RDS
|
|
11785
11857
|
# To manage authorization for other AWS accounts to copy or restore a
|
11786
11858
|
# manual DB cluster snapshot, set this value to `restore`.
|
11787
11859
|
#
|
11860
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
11861
|
+
# DescribeDBClusterSnapshotAttributes API action.
|
11862
|
+
#
|
11863
|
+
# </note>
|
11864
|
+
#
|
11788
11865
|
# @option params [Array<String>] :values_to_add
|
11789
11866
|
# A list of DB cluster snapshot attributes to add to the attribute
|
11790
11867
|
# specified by `AttributeName`.
|
@@ -12343,11 +12420,16 @@ module Aws::RDS
|
|
12343
12420
|
#
|
12344
12421
|
# @option params [Boolean] :publicly_accessible
|
12345
12422
|
# A value that indicates whether the DB instance is publicly accessible.
|
12346
|
-
#
|
12347
|
-
#
|
12348
|
-
#
|
12349
|
-
#
|
12350
|
-
#
|
12423
|
+
#
|
12424
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
12425
|
+
# to the private IP address from within the DB instance's VPC, and to
|
12426
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
12427
|
+
# to the DB instance is ultimately controlled by the security group it
|
12428
|
+
# uses, and that public access is not permitted if the security group
|
12429
|
+
# assigned to the DB instance doesn't permit it.
|
12430
|
+
#
|
12431
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
12432
|
+
# instance with a DNS name that resolves to a private IP address.
|
12351
12433
|
#
|
12352
12434
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
12353
12435
|
# instance must be part of a public subnet and `PubliclyAccessible` must
|
@@ -13083,16 +13165,23 @@ module Aws::RDS
|
|
13083
13165
|
# to add a list of IDs of the AWS accounts that are authorized to
|
13084
13166
|
# restore the manual DB snapshot. Uses the value `all` to make the
|
13085
13167
|
# manual DB snapshot public, which means it can be copied or restored by
|
13086
|
-
# all AWS accounts.
|
13087
|
-
#
|
13088
|
-
#
|
13089
|
-
#
|
13090
|
-
#
|
13091
|
-
#
|
13168
|
+
# all AWS accounts.
|
13169
|
+
#
|
13170
|
+
# <note markdown="1"> Don't add the `all` value for any manual DB snapshots that contain
|
13171
|
+
# private information that you don't want available to all AWS
|
13172
|
+
# accounts.
|
13173
|
+
#
|
13174
|
+
# </note>
|
13175
|
+
#
|
13176
|
+
# If the manual DB snapshot is encrypted, it can be shared, but only by
|
13177
|
+
# specifying a list of authorized AWS account IDs for the `ValuesToAdd`
|
13178
|
+
# parameter. You can't use `all` as a value for that parameter in this
|
13179
|
+
# case.
|
13092
13180
|
#
|
13093
13181
|
# To view which AWS accounts have access to copy or restore a manual DB
|
13094
13182
|
# snapshot, or whether a manual DB snapshot public or private, use the
|
13095
|
-
#
|
13183
|
+
# DescribeDBSnapshotAttributes API action. The accounts are returned as
|
13184
|
+
# values for the `restore` attribute.
|
13096
13185
|
#
|
13097
13186
|
# @option params [required, String] :db_snapshot_identifier
|
13098
13187
|
# The identifier for the DB snapshot to modify the attributes for.
|
@@ -13103,6 +13192,11 @@ module Aws::RDS
|
|
13103
13192
|
# To manage authorization for other AWS accounts to copy or restore a
|
13104
13193
|
# manual DB snapshot, set this value to `restore`.
|
13105
13194
|
#
|
13195
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
13196
|
+
# DescribeDBSnapshotAttributes API action.
|
13197
|
+
#
|
13198
|
+
# </note>
|
13199
|
+
#
|
13106
13200
|
# @option params [Array<String>] :values_to_add
|
13107
13201
|
# A list of DB snapshot attributes to add to the attribute specified by
|
13108
13202
|
# `AttributeName`.
|
@@ -13418,6 +13512,7 @@ module Aws::RDS
|
|
13418
13512
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
13419
13513
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
13420
13514
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
13515
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
13421
13516
|
#
|
13422
13517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
13423
13518
|
#
|
@@ -13874,6 +13969,8 @@ module Aws::RDS
|
|
13874
13969
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
13875
13970
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
13876
13971
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
13972
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
13973
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
13877
13974
|
#
|
13878
13975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
13879
13976
|
#
|
@@ -14258,6 +14355,7 @@ module Aws::RDS
|
|
14258
14355
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
14259
14356
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
14260
14357
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
14358
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14261
14359
|
#
|
14262
14360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
14263
14361
|
#
|
@@ -14662,6 +14760,18 @@ module Aws::RDS
|
|
14662
14760
|
# described in [ Migrating Data to an Amazon Aurora MySQL DB Cluster][1]
|
14663
14761
|
# in the *Amazon Aurora User Guide*.
|
14664
14762
|
#
|
14763
|
+
# <note markdown="1"> This action only restores the DB cluster, not the DB instances for
|
14764
|
+
# that DB cluster. You must invoke the `CreateDBInstance` action to
|
14765
|
+
# create DB instances for the restored DB cluster, specifying the
|
14766
|
+
# identifier of the restored DB cluster in `DBClusterIdentifier`. You
|
14767
|
+
# can create DB instances only after the `RestoreDBClusterFromS3` action
|
14768
|
+
# has completed and the DB cluster is available.
|
14769
|
+
#
|
14770
|
+
# </note>
|
14771
|
+
#
|
14772
|
+
# For more information on Amazon Aurora, see [ What Is Amazon
|
14773
|
+
# Aurora?][2] in the *Amazon Aurora User Guide.*
|
14774
|
+
#
|
14665
14775
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
14666
14776
|
#
|
14667
14777
|
# </note>
|
@@ -14669,6 +14779,7 @@ module Aws::RDS
|
|
14669
14779
|
#
|
14670
14780
|
#
|
14671
14781
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/AuroraMySQL.Migrating.html
|
14782
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
14672
14783
|
#
|
14673
14784
|
# @option params [Array<String>] :availability_zones
|
14674
14785
|
# A list of Availability Zones (AZs) where instances in the restored DB
|
@@ -14911,6 +15022,10 @@ module Aws::RDS
|
|
14911
15022
|
# The target backtrack window, in seconds. To disable backtracking, set
|
14912
15023
|
# this value to 0.
|
14913
15024
|
#
|
15025
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15026
|
+
#
|
15027
|
+
# </note>
|
15028
|
+
#
|
14914
15029
|
# Default: 0
|
14915
15030
|
#
|
14916
15031
|
# Constraints:
|
@@ -15079,6 +15194,8 @@ module Aws::RDS
|
|
15079
15194
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15080
15195
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15081
15196
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15197
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15198
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15082
15199
|
#
|
15083
15200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
15084
15201
|
#
|
@@ -15108,6 +15225,10 @@ module Aws::RDS
|
|
15108
15225
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
15109
15226
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
15110
15227
|
#
|
15228
|
+
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
15229
|
+
#
|
15230
|
+
# </note>
|
15231
|
+
#
|
15111
15232
|
#
|
15112
15233
|
#
|
15113
15234
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/CHAP_AuroraOverview.html
|
@@ -15249,6 +15370,10 @@ module Aws::RDS
|
|
15249
15370
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15250
15371
|
# this value to 0.
|
15251
15372
|
#
|
15373
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15374
|
+
#
|
15375
|
+
# </note>
|
15376
|
+
#
|
15252
15377
|
# Default: 0
|
15253
15378
|
#
|
15254
15379
|
# Constraints:
|
@@ -15446,6 +15571,8 @@ module Aws::RDS
|
|
15446
15571
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15447
15572
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15448
15573
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15574
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15575
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15449
15576
|
#
|
15450
15577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
15451
15578
|
#
|
@@ -15621,6 +15748,10 @@ module Aws::RDS
|
|
15621
15748
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15622
15749
|
# this value to 0.
|
15623
15750
|
#
|
15751
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15752
|
+
#
|
15753
|
+
# </note>
|
15754
|
+
#
|
15624
15755
|
# Default: 0
|
15625
15756
|
#
|
15626
15757
|
# Constraints:
|
@@ -15810,6 +15941,8 @@ module Aws::RDS
|
|
15810
15941
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15811
15942
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15812
15943
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15944
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15945
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15813
15946
|
#
|
15814
15947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
15815
15948
|
#
|
@@ -15918,11 +16051,18 @@ module Aws::RDS
|
|
15918
16051
|
#
|
15919
16052
|
# @option params [Boolean] :publicly_accessible
|
15920
16053
|
# A value that indicates whether the DB instance is publicly accessible.
|
15921
|
-
#
|
15922
|
-
#
|
15923
|
-
#
|
15924
|
-
#
|
15925
|
-
#
|
16054
|
+
#
|
16055
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
16056
|
+
# to the private IP address from within the DB instance's VPC, and to
|
16057
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
16058
|
+
# to the DB instance is ultimately controlled by the security group it
|
16059
|
+
# uses, and that public access is not permitted if the security group
|
16060
|
+
# assigned to the DB instance doesn't permit it.
|
16061
|
+
#
|
16062
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
16063
|
+
# instance with a DNS name that resolves to a private IP address.
|
16064
|
+
#
|
16065
|
+
# For more information, see CreateDBInstance.
|
15926
16066
|
#
|
15927
16067
|
# @option params [Boolean] :auto_minor_version_upgrade
|
15928
16068
|
# A value that indicates whether minor version upgrades are applied
|
@@ -16591,11 +16731,18 @@ module Aws::RDS
|
|
16591
16731
|
#
|
16592
16732
|
# @option params [Boolean] :publicly_accessible
|
16593
16733
|
# A value that indicates whether the DB instance is publicly accessible.
|
16594
|
-
#
|
16595
|
-
#
|
16596
|
-
#
|
16597
|
-
#
|
16598
|
-
#
|
16734
|
+
#
|
16735
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
16736
|
+
# to the private IP address from within the DB instance's VPC, and to
|
16737
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
16738
|
+
# to the DB instance is ultimately controlled by the security group it
|
16739
|
+
# uses, and that public access is not permitted if the security group
|
16740
|
+
# assigned to the DB instance doesn't permit it.
|
16741
|
+
#
|
16742
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
16743
|
+
# instance with a DNS name that resolves to a private IP address.
|
16744
|
+
#
|
16745
|
+
# For more information, see CreateDBInstance.
|
16599
16746
|
#
|
16600
16747
|
# @option params [Array<Types::Tag>] :tags
|
16601
16748
|
# A list of tags to associate with this DB instance. For more
|
@@ -17049,11 +17196,18 @@ module Aws::RDS
|
|
17049
17196
|
#
|
17050
17197
|
# @option params [Boolean] :publicly_accessible
|
17051
17198
|
# A value that indicates whether the DB instance is publicly accessible.
|
17052
|
-
#
|
17053
|
-
#
|
17054
|
-
#
|
17055
|
-
#
|
17056
|
-
#
|
17199
|
+
#
|
17200
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
17201
|
+
# to the private IP address from within the DB instance's VPC, and to
|
17202
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
17203
|
+
# to the DB instance is ultimately controlled by the security group it
|
17204
|
+
# uses, and that public access is not permitted if the security group
|
17205
|
+
# assigned to the DB instance doesn't permit it.
|
17206
|
+
#
|
17207
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
17208
|
+
# instance with a DNS name that resolves to a private IP address.
|
17209
|
+
#
|
17210
|
+
# For more information, see CreateDBInstance.
|
17057
17211
|
#
|
17058
17212
|
# @option params [Boolean] :auto_minor_version_upgrade
|
17059
17213
|
# A value that indicates whether minor version upgrades are applied
|
@@ -17776,6 +17930,8 @@ module Aws::RDS
|
|
17776
17930
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
17777
17931
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
17778
17932
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
17933
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
17934
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
17779
17935
|
#
|
17780
17936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
17781
17937
|
#
|
@@ -18202,6 +18358,8 @@ module Aws::RDS
|
|
18202
18358
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18203
18359
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18204
18360
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18361
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18362
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18205
18363
|
#
|
18206
18364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
18207
18365
|
#
|
@@ -18386,7 +18544,7 @@ module Aws::RDS
|
|
18386
18544
|
params: params,
|
18387
18545
|
config: config)
|
18388
18546
|
context[:gem_name] = 'aws-sdk-rds'
|
18389
|
-
context[:gem_version] = '1.
|
18547
|
+
context[:gem_version] = '1.87.0'
|
18390
18548
|
Seahorse::Client::Request.new(handlers, context)
|
18391
18549
|
end
|
18392
18550
|
|