aws-sdk-rds 1.84.0 → 1.89.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 +204 -55
- data/lib/aws-sdk-rds/client_api.rb +56 -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 +59 -25
- 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 +70 -50
- 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 +54 -77
- data/lib/aws-sdk-rds/resource_pending_maintenance_action_list.rb +2 -0
- data/lib/aws-sdk-rds/types.rb +502 -51
- 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: dd877c805fcd575d56f64bf93aece8b3da22c9e64925aa79e0bba9ff5e694b58
|
4
|
+
data.tar.gz: f05f7fb832e68f7b05cd960a59dcdcded196ab29e1c48d3f18289316ecb6a38e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6db8ef3c5e0dd1795b4e8fd2eee94fec1d864e519fd30ca99cef2d971bd7e9604e6911e3f2567e3e718d596aef27e31f3ed9a61a69f4058c1bd4a45faffffa0
|
7
|
+
data.tar.gz: 252486af72f9648367e89dae0c892d35ce5c1112e330770531ba2a7f8e2ea63a793b92329855fd2f279f791c820dc85ccb38410fed0b093f2e00a9af5e35e280
|
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.89.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)
|
@@ -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 a valid HTTP(S) URI.
|
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
|
#
|
@@ -6493,6 +6528,8 @@ module Aws::RDS
|
|
6493
6528
|
# * {Types::CertificateMessage#certificates #certificates} => Array<Types::Certificate>
|
6494
6529
|
# * {Types::CertificateMessage#marker #marker} => String
|
6495
6530
|
#
|
6531
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6532
|
+
#
|
6496
6533
|
#
|
6497
6534
|
# @example Example: To list certificates
|
6498
6535
|
#
|
@@ -6627,7 +6664,7 @@ module Aws::RDS
|
|
6627
6664
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
6628
6665
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6629
6666
|
#
|
6630
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6667
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
6631
6668
|
#
|
6632
6669
|
# </note>
|
6633
6670
|
#
|
@@ -6710,6 +6747,8 @@ module Aws::RDS
|
|
6710
6747
|
# * {Types::DBClusterBacktrackMessage#marker #marker} => String
|
6711
6748
|
# * {Types::DBClusterBacktrackMessage#db_cluster_backtracks #db_cluster_backtracks} => Array<Types::DBClusterBacktrack>
|
6712
6749
|
#
|
6750
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6751
|
+
#
|
6713
6752
|
# @example Request syntax with placeholder values
|
6714
6753
|
#
|
6715
6754
|
# resp = client.describe_db_cluster_backtracks({
|
@@ -6793,6 +6832,8 @@ module Aws::RDS
|
|
6793
6832
|
# * {Types::DBClusterEndpointMessage#marker #marker} => String
|
6794
6833
|
# * {Types::DBClusterEndpointMessage#db_cluster_endpoints #db_cluster_endpoints} => Array<Types::DBClusterEndpoint>
|
6795
6834
|
#
|
6835
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6836
|
+
#
|
6796
6837
|
# @example Request syntax with placeholder values
|
6797
6838
|
#
|
6798
6839
|
# resp = client.describe_db_cluster_endpoints({
|
@@ -6885,6 +6926,8 @@ module Aws::RDS
|
|
6885
6926
|
# * {Types::DBClusterParameterGroupsMessage#marker #marker} => String
|
6886
6927
|
# * {Types::DBClusterParameterGroupsMessage#db_cluster_parameter_groups #db_cluster_parameter_groups} => Array<Types::DBClusterParameterGroup>
|
6887
6928
|
#
|
6929
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
6930
|
+
#
|
6888
6931
|
#
|
6889
6932
|
# @example Example: To list DB cluster parameter group settings
|
6890
6933
|
#
|
@@ -6983,6 +7026,8 @@ module Aws::RDS
|
|
6983
7026
|
# * {Types::DBClusterParameterGroupDetails#parameters #parameters} => Array<Types::Parameter>
|
6984
7027
|
# * {Types::DBClusterParameterGroupDetails#marker #marker} => String
|
6985
7028
|
#
|
7029
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7030
|
+
#
|
6986
7031
|
#
|
6987
7032
|
# @example Example: To list DB cluster parameters
|
6988
7033
|
#
|
@@ -7222,6 +7267,8 @@ module Aws::RDS
|
|
7222
7267
|
# * {Types::DBClusterSnapshotMessage#marker #marker} => String
|
7223
7268
|
# * {Types::DBClusterSnapshotMessage#db_cluster_snapshots #db_cluster_snapshots} => Array<Types::DBClusterSnapshot>
|
7224
7269
|
#
|
7270
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
7271
|
+
#
|
7225
7272
|
#
|
7226
7273
|
# @example Example: To list DB cluster snapshots
|
7227
7274
|
#
|
@@ -7466,6 +7513,8 @@ module Aws::RDS
|
|
7466
7513
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7467
7514
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7468
7515
|
# resp.db_clusters[0].domain_memberships[0].iam_role_name #=> String
|
7516
|
+
# resp.db_clusters[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
7517
|
+
# resp.db_clusters[0].global_write_forwarding_requested #=> Boolean
|
7469
7518
|
#
|
7470
7519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
7471
7520
|
#
|
@@ -9603,6 +9652,7 @@ module Aws::RDS
|
|
9603
9652
|
# resp.global_clusters[0].global_cluster_members[0].readers #=> Array
|
9604
9653
|
# resp.global_clusters[0].global_cluster_members[0].readers[0] #=> String
|
9605
9654
|
# resp.global_clusters[0].global_cluster_members[0].is_writer #=> Boolean
|
9655
|
+
# resp.global_clusters[0].global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
9606
9656
|
#
|
9607
9657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
9608
9658
|
#
|
@@ -10090,6 +10140,8 @@ module Aws::RDS
|
|
10090
10140
|
# * {Types::PendingMaintenanceActionsMessage#pending_maintenance_actions #pending_maintenance_actions} => Array<Types::ResourcePendingMaintenanceActions>
|
10091
10141
|
# * {Types::PendingMaintenanceActionsMessage#marker #marker} => String
|
10092
10142
|
#
|
10143
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10144
|
+
#
|
10093
10145
|
#
|
10094
10146
|
# @example Example: To list information about pending maintenance actions
|
10095
10147
|
#
|
@@ -10444,6 +10496,8 @@ module Aws::RDS
|
|
10444
10496
|
# * {Types::SourceRegionMessage#marker #marker} => String
|
10445
10497
|
# * {Types::SourceRegionMessage#source_regions #source_regions} => Array<Types::SourceRegion>
|
10446
10498
|
#
|
10499
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
10500
|
+
#
|
10447
10501
|
#
|
10448
10502
|
# @example Example: To describe source regions
|
10449
10503
|
#
|
@@ -10823,6 +10877,8 @@ module Aws::RDS
|
|
10823
10877
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10824
10878
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10825
10879
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
10880
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
10881
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
10826
10882
|
#
|
10827
10883
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
10828
10884
|
#
|
@@ -11337,6 +11393,10 @@ module Aws::RDS
|
|
11337
11393
|
# The target backtrack window, in seconds. To disable backtracking, set
|
11338
11394
|
# this value to 0.
|
11339
11395
|
#
|
11396
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
11397
|
+
#
|
11398
|
+
# </note>
|
11399
|
+
#
|
11340
11400
|
# Default: 0
|
11341
11401
|
#
|
11342
11402
|
# Constraints:
|
@@ -11441,6 +11501,14 @@ module Aws::RDS
|
|
11441
11501
|
# A value that indicates whether to copy all tags from the DB cluster to
|
11442
11502
|
# snapshots of the DB cluster. The default is not to copy them.
|
11443
11503
|
#
|
11504
|
+
# @option params [Boolean] :enable_global_write_forwarding
|
11505
|
+
# A value that indicates whether to enable write operations to be
|
11506
|
+
# forwarded from this cluster to the primary cluster in an Aurora global
|
11507
|
+
# database. The resulting changes are replicated back to this cluster.
|
11508
|
+
# This parameter only applies to DB clusters that are secondary clusters
|
11509
|
+
# in an Aurora global database. By default, Aurora disallows write
|
11510
|
+
# operations for secondary clusters.
|
11511
|
+
#
|
11444
11512
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11445
11513
|
#
|
11446
11514
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11500,6 +11568,7 @@ module Aws::RDS
|
|
11500
11568
|
# deletion_protection: false,
|
11501
11569
|
# enable_http_endpoint: false,
|
11502
11570
|
# copy_tags_to_snapshot: false,
|
11571
|
+
# enable_global_write_forwarding: false,
|
11503
11572
|
# })
|
11504
11573
|
#
|
11505
11574
|
# @example Response structure
|
@@ -11579,6 +11648,8 @@ module Aws::RDS
|
|
11579
11648
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11580
11649
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11581
11650
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
11651
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
11652
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
11582
11653
|
#
|
11583
11654
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
11584
11655
|
#
|
@@ -11770,16 +11841,23 @@ module Aws::RDS
|
|
11770
11841
|
# to add a list of IDs of the AWS accounts that are authorized to
|
11771
11842
|
# restore the manual DB cluster snapshot. Use the value `all` to make
|
11772
11843
|
# the manual DB cluster snapshot public, which means that it can be
|
11773
|
-
# copied or restored by all AWS accounts.
|
11774
|
-
#
|
11775
|
-
#
|
11776
|
-
#
|
11777
|
-
#
|
11778
|
-
#
|
11844
|
+
# copied or restored by all AWS accounts.
|
11845
|
+
#
|
11846
|
+
# <note markdown="1"> Don't add the `all` value for any manual DB cluster snapshots that
|
11847
|
+
# contain private information that you don't want available to all AWS
|
11848
|
+
# accounts.
|
11849
|
+
#
|
11850
|
+
# </note>
|
11851
|
+
#
|
11852
|
+
# If a manual DB cluster snapshot is encrypted, it can be shared, but
|
11853
|
+
# only by specifying a list of authorized AWS account IDs for the
|
11854
|
+
# `ValuesToAdd` parameter. You can't use `all` as a value for that
|
11855
|
+
# parameter in this case.
|
11779
11856
|
#
|
11780
11857
|
# To view which AWS accounts have access to copy or restore a manual DB
|
11781
|
-
# cluster snapshot, or whether a manual DB cluster snapshot public or
|
11782
|
-
# private, use the
|
11858
|
+
# cluster snapshot, or whether a manual DB cluster snapshot is public or
|
11859
|
+
# private, use the DescribeDBClusterSnapshotAttributes API action. The
|
11860
|
+
# accounts are returned as values for the `restore` attribute.
|
11783
11861
|
#
|
11784
11862
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
11785
11863
|
#
|
@@ -11795,6 +11873,11 @@ module Aws::RDS
|
|
11795
11873
|
# To manage authorization for other AWS accounts to copy or restore a
|
11796
11874
|
# manual DB cluster snapshot, set this value to `restore`.
|
11797
11875
|
#
|
11876
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
11877
|
+
# DescribeDBClusterSnapshotAttributes API action.
|
11878
|
+
#
|
11879
|
+
# </note>
|
11880
|
+
#
|
11798
11881
|
# @option params [Array<String>] :values_to_add
|
11799
11882
|
# A list of DB cluster snapshot attributes to add to the attribute
|
11800
11883
|
# specified by `AttributeName`.
|
@@ -12353,11 +12436,16 @@ module Aws::RDS
|
|
12353
12436
|
#
|
12354
12437
|
# @option params [Boolean] :publicly_accessible
|
12355
12438
|
# A value that indicates whether the DB instance is publicly accessible.
|
12356
|
-
#
|
12357
|
-
#
|
12358
|
-
#
|
12359
|
-
#
|
12360
|
-
#
|
12439
|
+
#
|
12440
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
12441
|
+
# to the private IP address from within the DB instance's VPC, and to
|
12442
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
12443
|
+
# to the DB instance is ultimately controlled by the security group it
|
12444
|
+
# uses, and that public access is not permitted if the security group
|
12445
|
+
# assigned to the DB instance doesn't permit it.
|
12446
|
+
#
|
12447
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
12448
|
+
# instance with a DNS name that resolves to a private IP address.
|
12361
12449
|
#
|
12362
12450
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
12363
12451
|
# instance must be part of a public subnet and `PubliclyAccessible` must
|
@@ -13093,16 +13181,23 @@ module Aws::RDS
|
|
13093
13181
|
# to add a list of IDs of the AWS accounts that are authorized to
|
13094
13182
|
# restore the manual DB snapshot. Uses the value `all` to make the
|
13095
13183
|
# manual DB snapshot public, which means it can be copied or restored by
|
13096
|
-
# all AWS accounts.
|
13097
|
-
#
|
13098
|
-
#
|
13099
|
-
#
|
13100
|
-
#
|
13101
|
-
#
|
13184
|
+
# all AWS accounts.
|
13185
|
+
#
|
13186
|
+
# <note markdown="1"> Don't add the `all` value for any manual DB snapshots that contain
|
13187
|
+
# private information that you don't want available to all AWS
|
13188
|
+
# accounts.
|
13189
|
+
#
|
13190
|
+
# </note>
|
13191
|
+
#
|
13192
|
+
# If the manual DB snapshot is encrypted, it can be shared, but only by
|
13193
|
+
# specifying a list of authorized AWS account IDs for the `ValuesToAdd`
|
13194
|
+
# parameter. You can't use `all` as a value for that parameter in this
|
13195
|
+
# case.
|
13102
13196
|
#
|
13103
13197
|
# To view which AWS accounts have access to copy or restore a manual DB
|
13104
13198
|
# snapshot, or whether a manual DB snapshot public or private, use the
|
13105
|
-
#
|
13199
|
+
# DescribeDBSnapshotAttributes API action. The accounts are returned as
|
13200
|
+
# values for the `restore` attribute.
|
13106
13201
|
#
|
13107
13202
|
# @option params [required, String] :db_snapshot_identifier
|
13108
13203
|
# The identifier for the DB snapshot to modify the attributes for.
|
@@ -13113,6 +13208,11 @@ module Aws::RDS
|
|
13113
13208
|
# To manage authorization for other AWS accounts to copy or restore a
|
13114
13209
|
# manual DB snapshot, set this value to `restore`.
|
13115
13210
|
#
|
13211
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
13212
|
+
# DescribeDBSnapshotAttributes API action.
|
13213
|
+
#
|
13214
|
+
# </note>
|
13215
|
+
#
|
13116
13216
|
# @option params [Array<String>] :values_to_add
|
13117
13217
|
# A list of DB snapshot attributes to add to the attribute specified by
|
13118
13218
|
# `AttributeName`.
|
@@ -13428,6 +13528,7 @@ module Aws::RDS
|
|
13428
13528
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
13429
13529
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
13430
13530
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
13531
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
13431
13532
|
#
|
13432
13533
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
13433
13534
|
#
|
@@ -13884,6 +13985,8 @@ module Aws::RDS
|
|
13884
13985
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
13885
13986
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
13886
13987
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
13988
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
13989
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
13887
13990
|
#
|
13888
13991
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
13889
13992
|
#
|
@@ -14268,6 +14371,7 @@ module Aws::RDS
|
|
14268
14371
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
14269
14372
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
14270
14373
|
# resp.global_cluster.global_cluster_members[0].is_writer #=> Boolean
|
14374
|
+
# resp.global_cluster.global_cluster_members[0].global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
14271
14375
|
#
|
14272
14376
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
14273
14377
|
#
|
@@ -14718,7 +14822,7 @@ module Aws::RDS
|
|
14718
14822
|
#
|
14719
14823
|
# @option params [required, String] :db_cluster_identifier
|
14720
14824
|
# The name of the DB cluster to create from the source data in the
|
14721
|
-
# Amazon S3 bucket. This parameter
|
14825
|
+
# Amazon S3 bucket. This parameter isn't case-sensitive.
|
14722
14826
|
#
|
14723
14827
|
# Constraints:
|
14724
14828
|
#
|
@@ -14911,9 +15015,9 @@ module Aws::RDS
|
|
14911
15015
|
# @option params [required, String] :source_engine_version
|
14912
15016
|
# The version of the database that the backup files were created from.
|
14913
15017
|
#
|
14914
|
-
# MySQL
|
15018
|
+
# MySQL versions 5.5, 5.6, and 5.7 are supported.
|
14915
15019
|
#
|
14916
|
-
# Example: `5.6.
|
15020
|
+
# Example: `5.6.40`
|
14917
15021
|
#
|
14918
15022
|
# @option params [required, String] :s3_bucket_name
|
14919
15023
|
# The name of the Amazon S3 bucket that contains the data used to create
|
@@ -14934,6 +15038,10 @@ module Aws::RDS
|
|
14934
15038
|
# The target backtrack window, in seconds. To disable backtracking, set
|
14935
15039
|
# this value to 0.
|
14936
15040
|
#
|
15041
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15042
|
+
#
|
15043
|
+
# </note>
|
15044
|
+
#
|
14937
15045
|
# Default: 0
|
14938
15046
|
#
|
14939
15047
|
# Constraints:
|
@@ -15102,6 +15210,8 @@ module Aws::RDS
|
|
15102
15210
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15103
15211
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15104
15212
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15213
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15214
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15105
15215
|
#
|
15106
15216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
15107
15217
|
#
|
@@ -15276,6 +15386,10 @@ module Aws::RDS
|
|
15276
15386
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15277
15387
|
# this value to 0.
|
15278
15388
|
#
|
15389
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15390
|
+
#
|
15391
|
+
# </note>
|
15392
|
+
#
|
15279
15393
|
# Default: 0
|
15280
15394
|
#
|
15281
15395
|
# Constraints:
|
@@ -15473,6 +15587,8 @@ module Aws::RDS
|
|
15473
15587
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15474
15588
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15475
15589
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15590
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15591
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15476
15592
|
#
|
15477
15593
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
15478
15594
|
#
|
@@ -15648,6 +15764,10 @@ module Aws::RDS
|
|
15648
15764
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15649
15765
|
# this value to 0.
|
15650
15766
|
#
|
15767
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15768
|
+
#
|
15769
|
+
# </note>
|
15770
|
+
#
|
15651
15771
|
# Default: 0
|
15652
15772
|
#
|
15653
15773
|
# Constraints:
|
@@ -15837,6 +15957,8 @@ module Aws::RDS
|
|
15837
15957
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15838
15958
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15839
15959
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
15960
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
15961
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
15840
15962
|
#
|
15841
15963
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
15842
15964
|
#
|
@@ -15945,11 +16067,18 @@ module Aws::RDS
|
|
15945
16067
|
#
|
15946
16068
|
# @option params [Boolean] :publicly_accessible
|
15947
16069
|
# A value that indicates whether the DB instance is publicly accessible.
|
15948
|
-
#
|
15949
|
-
#
|
15950
|
-
#
|
15951
|
-
#
|
15952
|
-
#
|
16070
|
+
#
|
16071
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
16072
|
+
# to the private IP address from within the DB instance's VPC, and to
|
16073
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
16074
|
+
# to the DB instance is ultimately controlled by the security group it
|
16075
|
+
# uses, and that public access is not permitted if the security group
|
16076
|
+
# assigned to the DB instance doesn't permit it.
|
16077
|
+
#
|
16078
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
16079
|
+
# instance with a DNS name that resolves to a private IP address.
|
16080
|
+
#
|
16081
|
+
# For more information, see CreateDBInstance.
|
15953
16082
|
#
|
15954
16083
|
# @option params [Boolean] :auto_minor_version_upgrade
|
15955
16084
|
# A value that indicates whether minor version upgrades are applied
|
@@ -16618,11 +16747,18 @@ module Aws::RDS
|
|
16618
16747
|
#
|
16619
16748
|
# @option params [Boolean] :publicly_accessible
|
16620
16749
|
# A value that indicates whether the DB instance is publicly accessible.
|
16621
|
-
#
|
16622
|
-
#
|
16623
|
-
#
|
16624
|
-
#
|
16625
|
-
#
|
16750
|
+
#
|
16751
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
16752
|
+
# to the private IP address from within the DB instance's VPC, and to
|
16753
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
16754
|
+
# to the DB instance is ultimately controlled by the security group it
|
16755
|
+
# uses, and that public access is not permitted if the security group
|
16756
|
+
# assigned to the DB instance doesn't permit it.
|
16757
|
+
#
|
16758
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
16759
|
+
# instance with a DNS name that resolves to a private IP address.
|
16760
|
+
#
|
16761
|
+
# For more information, see CreateDBInstance.
|
16626
16762
|
#
|
16627
16763
|
# @option params [Array<Types::Tag>] :tags
|
16628
16764
|
# A list of tags to associate with this DB instance. For more
|
@@ -16712,9 +16848,11 @@ module Aws::RDS
|
|
16712
16848
|
# Valid Values: `mysql`
|
16713
16849
|
#
|
16714
16850
|
# @option params [required, String] :source_engine_version
|
16715
|
-
# The
|
16851
|
+
# The version of the database that the backup files were created from.
|
16716
16852
|
#
|
16717
|
-
#
|
16853
|
+
# MySQL versions 5.6 and 5.7 are supported.
|
16854
|
+
#
|
16855
|
+
# Example: `5.6.40`
|
16718
16856
|
#
|
16719
16857
|
# @option params [required, String] :s3_bucket_name
|
16720
16858
|
# The name of your Amazon S3 bucket that contains your database backup
|
@@ -17076,11 +17214,18 @@ module Aws::RDS
|
|
17076
17214
|
#
|
17077
17215
|
# @option params [Boolean] :publicly_accessible
|
17078
17216
|
# A value that indicates whether the DB instance is publicly accessible.
|
17079
|
-
#
|
17080
|
-
#
|
17081
|
-
#
|
17082
|
-
#
|
17083
|
-
#
|
17217
|
+
#
|
17218
|
+
# When the DB instance is publicly accessible, its DNS endpoint resolves
|
17219
|
+
# to the private IP address from within the DB instance's VPC, and to
|
17220
|
+
# the public IP address from outside of the DB instance's VPC. Access
|
17221
|
+
# to the DB instance is ultimately controlled by the security group it
|
17222
|
+
# uses, and that public access is not permitted if the security group
|
17223
|
+
# assigned to the DB instance doesn't permit it.
|
17224
|
+
#
|
17225
|
+
# When the DB instance isn't publicly accessible, it is an internal DB
|
17226
|
+
# instance with a DNS name that resolves to a private IP address.
|
17227
|
+
#
|
17228
|
+
# For more information, see CreateDBInstance.
|
17084
17229
|
#
|
17085
17230
|
# @option params [Boolean] :auto_minor_version_upgrade
|
17086
17231
|
# A value that indicates whether minor version upgrades are applied
|
@@ -17803,6 +17948,8 @@ module Aws::RDS
|
|
17803
17948
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
17804
17949
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
17805
17950
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
17951
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
17952
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
17806
17953
|
#
|
17807
17954
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
17808
17955
|
#
|
@@ -18229,6 +18376,8 @@ module Aws::RDS
|
|
18229
18376
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18230
18377
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18231
18378
|
# resp.db_cluster.domain_memberships[0].iam_role_name #=> String
|
18379
|
+
# resp.db_cluster.global_write_forwarding_status #=> String, one of "enabled", "disabled", "enabling", "disabling", "unknown"
|
18380
|
+
# resp.db_cluster.global_write_forwarding_requested #=> Boolean
|
18232
18381
|
#
|
18233
18382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
18234
18383
|
#
|
@@ -18413,7 +18562,7 @@ module Aws::RDS
|
|
18413
18562
|
params: params,
|
18414
18563
|
config: config)
|
18415
18564
|
context[:gem_name] = 'aws-sdk-rds'
|
18416
|
-
context[:gem_version] = '1.
|
18565
|
+
context[:gem_version] = '1.89.0'
|
18417
18566
|
Seahorse::Client::Request.new(handlers, context)
|
18418
18567
|
end
|
18419
18568
|
|