aws-sdk-rds 1.86.1 → 1.87.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +3 -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 +177 -48
- data/lib/aws-sdk-rds/client_api.rb +8 -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 +172 -46
- data/lib/aws-sdk-rds/waiters.rb +2 -0
- metadata +2 -2
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:
|
@@ -722,7 +724,7 @@ module Aws::RDS
|
|
722
724
|
# For more information on backtracking, see [ Backtracking an Aurora DB
|
723
725
|
# Cluster][1] in the *Amazon Aurora User Guide.*
|
724
726
|
#
|
725
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
727
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
726
728
|
#
|
727
729
|
# </note>
|
728
730
|
#
|
@@ -2102,6 +2104,10 @@ module Aws::RDS
|
|
2102
2104
|
# The target backtrack window, in seconds. To disable backtracking, set
|
2103
2105
|
# this value to 0.
|
2104
2106
|
#
|
2107
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
2108
|
+
#
|
2109
|
+
# </note>
|
2110
|
+
#
|
2105
2111
|
# Default: 0
|
2106
2112
|
#
|
2107
2113
|
# Constraints:
|
@@ -2200,6 +2206,14 @@ module Aws::RDS
|
|
2200
2206
|
# Specify the name of the IAM role to be used when making API calls to
|
2201
2207
|
# the Directory Service.
|
2202
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
|
+
#
|
2203
2217
|
# @option params [String] :source_region
|
2204
2218
|
# The source region of the snapshot. This is only needed when the
|
2205
2219
|
# shapshot is encrypted and in a different region.
|
@@ -2281,6 +2295,7 @@ module Aws::RDS
|
|
2281
2295
|
# copy_tags_to_snapshot: false,
|
2282
2296
|
# domain: "String",
|
2283
2297
|
# domain_iam_role_name: "String",
|
2298
|
+
# enable_global_write_forwarding: false,
|
2284
2299
|
# source_region: "String",
|
2285
2300
|
# })
|
2286
2301
|
#
|
@@ -2361,6 +2376,8 @@ module Aws::RDS
|
|
2361
2376
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
2362
2377
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
2363
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
|
2364
2381
|
#
|
2365
2382
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
2366
2383
|
#
|
@@ -3282,11 +3299,16 @@ module Aws::RDS
|
|
3282
3299
|
#
|
3283
3300
|
# @option params [Boolean] :publicly_accessible
|
3284
3301
|
# A value that indicates whether the DB instance is publicly accessible.
|
3285
|
-
#
|
3286
|
-
#
|
3287
|
-
#
|
3288
|
-
#
|
3289
|
-
#
|
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.
|
3290
3312
|
#
|
3291
3313
|
# Default: The default behavior varies depending on whether
|
3292
3314
|
# `DBSubnetGroupName` is specified.
|
@@ -3897,11 +3919,18 @@ module Aws::RDS
|
|
3897
3919
|
#
|
3898
3920
|
# @option params [Boolean] :publicly_accessible
|
3899
3921
|
# A value that indicates whether the DB instance is publicly accessible.
|
3900
|
-
#
|
3901
|
-
#
|
3902
|
-
#
|
3903
|
-
#
|
3904
|
-
#
|
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.
|
3905
3934
|
#
|
3906
3935
|
# @option params [Array<Types::Tag>] :tags
|
3907
3936
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
@@ -5110,6 +5139,7 @@ module Aws::RDS
|
|
5110
5139
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
5111
5140
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
5112
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"
|
5113
5143
|
#
|
5114
5144
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
|
5115
5145
|
#
|
@@ -5438,6 +5468,8 @@ module Aws::RDS
|
|
5438
5468
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
5439
5469
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
5440
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
|
5441
5473
|
#
|
5442
5474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
5443
5475
|
#
|
@@ -6289,6 +6321,7 @@ module Aws::RDS
|
|
6289
6321
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
6290
6322
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
6291
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"
|
6292
6325
|
#
|
6293
6326
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
|
6294
6327
|
#
|
@@ -6629,7 +6662,7 @@ module Aws::RDS
|
|
6629
6662
|
# For more information on Amazon Aurora, see [ What Is Amazon
|
6630
6663
|
# Aurora?][1] in the *Amazon Aurora User Guide.*
|
6631
6664
|
#
|
6632
|
-
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
6665
|
+
# <note markdown="1"> This action only applies to Aurora MySQL DB clusters.
|
6633
6666
|
#
|
6634
6667
|
# </note>
|
6635
6668
|
#
|
@@ -7468,6 +7501,8 @@ module Aws::RDS
|
|
7468
7501
|
# resp.db_clusters[0].domain_memberships[0].status #=> String
|
7469
7502
|
# resp.db_clusters[0].domain_memberships[0].fqdn #=> String
|
7470
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
|
7471
7506
|
#
|
7472
7507
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
7473
7508
|
#
|
@@ -9605,6 +9640,7 @@ module Aws::RDS
|
|
9605
9640
|
# resp.global_clusters[0].global_cluster_members[0].readers #=> Array
|
9606
9641
|
# resp.global_clusters[0].global_cluster_members[0].readers[0] #=> String
|
9607
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"
|
9608
9644
|
#
|
9609
9645
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
9610
9646
|
#
|
@@ -10825,6 +10861,8 @@ module Aws::RDS
|
|
10825
10861
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
10826
10862
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
10827
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
|
10828
10866
|
#
|
10829
10867
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
10830
10868
|
#
|
@@ -11339,6 +11377,10 @@ module Aws::RDS
|
|
11339
11377
|
# The target backtrack window, in seconds. To disable backtracking, set
|
11340
11378
|
# this value to 0.
|
11341
11379
|
#
|
11380
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
11381
|
+
#
|
11382
|
+
# </note>
|
11383
|
+
#
|
11342
11384
|
# Default: 0
|
11343
11385
|
#
|
11344
11386
|
# Constraints:
|
@@ -11443,6 +11485,14 @@ module Aws::RDS
|
|
11443
11485
|
# A value that indicates whether to copy all tags from the DB cluster to
|
11444
11486
|
# snapshots of the DB cluster. The default is not to copy them.
|
11445
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
|
+
#
|
11446
11496
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11447
11497
|
#
|
11448
11498
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -11502,6 +11552,7 @@ module Aws::RDS
|
|
11502
11552
|
# deletion_protection: false,
|
11503
11553
|
# enable_http_endpoint: false,
|
11504
11554
|
# copy_tags_to_snapshot: false,
|
11555
|
+
# enable_global_write_forwarding: false,
|
11505
11556
|
# })
|
11506
11557
|
#
|
11507
11558
|
# @example Response structure
|
@@ -11581,6 +11632,8 @@ module Aws::RDS
|
|
11581
11632
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
11582
11633
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
11583
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
|
11584
11637
|
#
|
11585
11638
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
11586
11639
|
#
|
@@ -11772,16 +11825,23 @@ module Aws::RDS
|
|
11772
11825
|
# to add a list of IDs of the AWS accounts that are authorized to
|
11773
11826
|
# restore the manual DB cluster snapshot. Use the value `all` to make
|
11774
11827
|
# the manual DB cluster snapshot public, which means that it can be
|
11775
|
-
# copied or restored by all AWS accounts.
|
11776
|
-
#
|
11777
|
-
#
|
11778
|
-
#
|
11779
|
-
#
|
11780
|
-
#
|
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.
|
11781
11840
|
#
|
11782
11841
|
# To view which AWS accounts have access to copy or restore a manual DB
|
11783
|
-
# cluster snapshot, or whether a manual DB cluster snapshot public or
|
11784
|
-
# 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.
|
11785
11845
|
#
|
11786
11846
|
# <note markdown="1"> This action only applies to Aurora DB clusters.
|
11787
11847
|
#
|
@@ -11797,6 +11857,11 @@ module Aws::RDS
|
|
11797
11857
|
# To manage authorization for other AWS accounts to copy or restore a
|
11798
11858
|
# manual DB cluster snapshot, set this value to `restore`.
|
11799
11859
|
#
|
11860
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
11861
|
+
# DescribeDBClusterSnapshotAttributes API action.
|
11862
|
+
#
|
11863
|
+
# </note>
|
11864
|
+
#
|
11800
11865
|
# @option params [Array<String>] :values_to_add
|
11801
11866
|
# A list of DB cluster snapshot attributes to add to the attribute
|
11802
11867
|
# specified by `AttributeName`.
|
@@ -12355,11 +12420,16 @@ module Aws::RDS
|
|
12355
12420
|
#
|
12356
12421
|
# @option params [Boolean] :publicly_accessible
|
12357
12422
|
# A value that indicates whether the DB instance is publicly accessible.
|
12358
|
-
#
|
12359
|
-
#
|
12360
|
-
#
|
12361
|
-
#
|
12362
|
-
#
|
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.
|
12363
12433
|
#
|
12364
12434
|
# `PubliclyAccessible` only applies to DB instances in a VPC. The DB
|
12365
12435
|
# instance must be part of a public subnet and `PubliclyAccessible` must
|
@@ -13095,16 +13165,23 @@ module Aws::RDS
|
|
13095
13165
|
# to add a list of IDs of the AWS accounts that are authorized to
|
13096
13166
|
# restore the manual DB snapshot. Uses the value `all` to make the
|
13097
13167
|
# manual DB snapshot public, which means it can be copied or restored by
|
13098
|
-
# all AWS accounts.
|
13099
|
-
#
|
13100
|
-
#
|
13101
|
-
#
|
13102
|
-
#
|
13103
|
-
#
|
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.
|
13104
13180
|
#
|
13105
13181
|
# To view which AWS accounts have access to copy or restore a manual DB
|
13106
13182
|
# snapshot, or whether a manual DB snapshot public or private, use the
|
13107
|
-
#
|
13183
|
+
# DescribeDBSnapshotAttributes API action. The accounts are returned as
|
13184
|
+
# values for the `restore` attribute.
|
13108
13185
|
#
|
13109
13186
|
# @option params [required, String] :db_snapshot_identifier
|
13110
13187
|
# The identifier for the DB snapshot to modify the attributes for.
|
@@ -13115,6 +13192,11 @@ module Aws::RDS
|
|
13115
13192
|
# To manage authorization for other AWS accounts to copy or restore a
|
13116
13193
|
# manual DB snapshot, set this value to `restore`.
|
13117
13194
|
#
|
13195
|
+
# <note markdown="1"> To view the list of attributes available to modify, use the
|
13196
|
+
# DescribeDBSnapshotAttributes API action.
|
13197
|
+
#
|
13198
|
+
# </note>
|
13199
|
+
#
|
13118
13200
|
# @option params [Array<String>] :values_to_add
|
13119
13201
|
# A list of DB snapshot attributes to add to the attribute specified by
|
13120
13202
|
# `AttributeName`.
|
@@ -13430,6 +13512,7 @@ module Aws::RDS
|
|
13430
13512
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
13431
13513
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
13432
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"
|
13433
13516
|
#
|
13434
13517
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
13435
13518
|
#
|
@@ -13886,6 +13969,8 @@ module Aws::RDS
|
|
13886
13969
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
13887
13970
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
13888
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
|
13889
13974
|
#
|
13890
13975
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
13891
13976
|
#
|
@@ -14270,6 +14355,7 @@ module Aws::RDS
|
|
14270
14355
|
# resp.global_cluster.global_cluster_members[0].readers #=> Array
|
14271
14356
|
# resp.global_cluster.global_cluster_members[0].readers[0] #=> String
|
14272
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"
|
14273
14359
|
#
|
14274
14360
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
14275
14361
|
#
|
@@ -14936,6 +15022,10 @@ module Aws::RDS
|
|
14936
15022
|
# The target backtrack window, in seconds. To disable backtracking, set
|
14937
15023
|
# this value to 0.
|
14938
15024
|
#
|
15025
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15026
|
+
#
|
15027
|
+
# </note>
|
15028
|
+
#
|
14939
15029
|
# Default: 0
|
14940
15030
|
#
|
14941
15031
|
# Constraints:
|
@@ -15104,6 +15194,8 @@ module Aws::RDS
|
|
15104
15194
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15105
15195
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15106
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
|
15107
15199
|
#
|
15108
15200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
15109
15201
|
#
|
@@ -15278,6 +15370,10 @@ module Aws::RDS
|
|
15278
15370
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15279
15371
|
# this value to 0.
|
15280
15372
|
#
|
15373
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15374
|
+
#
|
15375
|
+
# </note>
|
15376
|
+
#
|
15281
15377
|
# Default: 0
|
15282
15378
|
#
|
15283
15379
|
# Constraints:
|
@@ -15475,6 +15571,8 @@ module Aws::RDS
|
|
15475
15571
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15476
15572
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15477
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
|
15478
15576
|
#
|
15479
15577
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
15480
15578
|
#
|
@@ -15650,6 +15748,10 @@ module Aws::RDS
|
|
15650
15748
|
# The target backtrack window, in seconds. To disable backtracking, set
|
15651
15749
|
# this value to 0.
|
15652
15750
|
#
|
15751
|
+
# <note markdown="1"> Currently, Backtrack is only supported for Aurora MySQL DB clusters.
|
15752
|
+
#
|
15753
|
+
# </note>
|
15754
|
+
#
|
15653
15755
|
# Default: 0
|
15654
15756
|
#
|
15655
15757
|
# Constraints:
|
@@ -15839,6 +15941,8 @@ module Aws::RDS
|
|
15839
15941
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
15840
15942
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
15841
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
|
15842
15946
|
#
|
15843
15947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
15844
15948
|
#
|
@@ -15947,11 +16051,18 @@ module Aws::RDS
|
|
15947
16051
|
#
|
15948
16052
|
# @option params [Boolean] :publicly_accessible
|
15949
16053
|
# A value that indicates whether the DB instance is publicly accessible.
|
15950
|
-
#
|
15951
|
-
#
|
15952
|
-
#
|
15953
|
-
#
|
15954
|
-
#
|
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.
|
15955
16066
|
#
|
15956
16067
|
# @option params [Boolean] :auto_minor_version_upgrade
|
15957
16068
|
# A value that indicates whether minor version upgrades are applied
|
@@ -16620,11 +16731,18 @@ module Aws::RDS
|
|
16620
16731
|
#
|
16621
16732
|
# @option params [Boolean] :publicly_accessible
|
16622
16733
|
# A value that indicates whether the DB instance is publicly accessible.
|
16623
|
-
#
|
16624
|
-
#
|
16625
|
-
#
|
16626
|
-
#
|
16627
|
-
#
|
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.
|
16628
16746
|
#
|
16629
16747
|
# @option params [Array<Types::Tag>] :tags
|
16630
16748
|
# A list of tags to associate with this DB instance. For more
|
@@ -17078,11 +17196,18 @@ module Aws::RDS
|
|
17078
17196
|
#
|
17079
17197
|
# @option params [Boolean] :publicly_accessible
|
17080
17198
|
# A value that indicates whether the DB instance is publicly accessible.
|
17081
|
-
#
|
17082
|
-
#
|
17083
|
-
#
|
17084
|
-
#
|
17085
|
-
#
|
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.
|
17086
17211
|
#
|
17087
17212
|
# @option params [Boolean] :auto_minor_version_upgrade
|
17088
17213
|
# A value that indicates whether minor version upgrades are applied
|
@@ -17805,6 +17930,8 @@ module Aws::RDS
|
|
17805
17930
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
17806
17931
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
17807
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
|
17808
17935
|
#
|
17809
17936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
17810
17937
|
#
|
@@ -18231,6 +18358,8 @@ module Aws::RDS
|
|
18231
18358
|
# resp.db_cluster.domain_memberships[0].status #=> String
|
18232
18359
|
# resp.db_cluster.domain_memberships[0].fqdn #=> String
|
18233
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
|
18234
18363
|
#
|
18235
18364
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
18236
18365
|
#
|
@@ -18415,7 +18544,7 @@ module Aws::RDS
|
|
18415
18544
|
params: params,
|
18416
18545
|
config: config)
|
18417
18546
|
context[:gem_name] = 'aws-sdk-rds'
|
18418
|
-
context[:gem_version] = '1.
|
18547
|
+
context[:gem_version] = '1.87.0'
|
18419
18548
|
Seahorse::Client::Request.new(handlers, context)
|
18420
18549
|
end
|
18421
18550
|
|