aws-sdk-rds 1.54.0 → 1.55.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 +1 -1
- data/lib/aws-sdk-rds/client.rb +398 -416
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +78 -79
- data/lib/aws-sdk-rds/db_cluster_parameter_group.rb +5 -5
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +11 -12
- data/lib/aws-sdk-rds/db_engine.rb +8 -10
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/db_instance.rb +200 -211
- data/lib/aws-sdk-rds/db_parameter_group.rb +4 -3
- data/lib/aws-sdk-rds/db_snapshot.rb +28 -29
- data/lib/aws-sdk-rds/event_subscription.rb +3 -4
- data/lib/aws-sdk-rds/option_group.rb +3 -3
- data/lib/aws-sdk-rds/resource.rb +80 -85
- data/lib/aws-sdk-rds/types.rb +427 -525
- metadata +2 -2
@@ -351,9 +351,10 @@ module Aws::RDS
|
|
351
351
|
# })
|
352
352
|
# @param [Hash] options ({})
|
353
353
|
# @option options [Boolean] :reset_all_parameters
|
354
|
-
#
|
355
|
-
# parameter group to default values.
|
356
|
-
#
|
354
|
+
# Specifies whether (`true`) or not (`false`) to reset all parameters in
|
355
|
+
# the DB parameter group to default values.
|
356
|
+
#
|
357
|
+
# Default: `true`
|
357
358
|
# @option options [Array<Types::Parameter>] :parameters
|
358
359
|
# To reset the entire DB parameter group, specify the `DBParameterGroup`
|
359
360
|
# name and `ResetAllParameters` parameters. To reset specific
|
@@ -436,8 +436,8 @@ module Aws::RDS
|
|
436
436
|
#
|
437
437
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
438
438
|
# @option options [Boolean] :copy_tags
|
439
|
-
#
|
440
|
-
# snapshot
|
439
|
+
# True to copy all tags from the source DB snapshot to the target DB
|
440
|
+
# snapshot, and otherwise false. The default is false.
|
441
441
|
# @option options [String] :pre_signed_url
|
442
442
|
# The URL that contains a Signature Version 4 signed request for the
|
443
443
|
# `CopyDBSnapshot` API action in the source AWS Region that contains the
|
@@ -610,8 +610,8 @@ module Aws::RDS
|
|
610
610
|
#
|
611
611
|
# Default: A random, system-chosen Availability Zone.
|
612
612
|
#
|
613
|
-
# Constraint: You can't specify the
|
614
|
-
#
|
613
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
614
|
+
# MultiAZ parameter is set to `true`.
|
615
615
|
#
|
616
616
|
# Example: `us-east-1a`
|
617
617
|
# @option options [String] :db_subnet_group_name
|
@@ -622,21 +622,19 @@ module Aws::RDS
|
|
622
622
|
#
|
623
623
|
# Example: `mySubnetgroup`
|
624
624
|
# @option options [Boolean] :multi_az
|
625
|
-
#
|
626
|
-
# deployment.
|
625
|
+
# Specifies if the DB instance is a Multi-AZ deployment.
|
627
626
|
#
|
628
|
-
# Constraint: You can't specify the
|
629
|
-
#
|
627
|
+
# Constraint: You can't specify the AvailabilityZone parameter if the
|
628
|
+
# MultiAZ parameter is set to `true`.
|
630
629
|
# @option options [Boolean] :publicly_accessible
|
631
|
-
#
|
632
|
-
#
|
633
|
-
#
|
634
|
-
#
|
635
|
-
#
|
636
|
-
# address. For more information, see CreateDBInstance.
|
630
|
+
# Specifies the accessibility options for the DB instance. A value of
|
631
|
+
# true specifies an Internet-facing instance with a publicly resolvable
|
632
|
+
# DNS name, which resolves to a public IP address. A value of false
|
633
|
+
# specifies an internal instance with a DNS name that resolves to a
|
634
|
+
# private IP address. For more information, see `CreateDBInstance`.
|
637
635
|
# @option options [Boolean] :auto_minor_version_upgrade
|
638
|
-
#
|
639
|
-
#
|
636
|
+
# Indicates that minor version upgrades are applied automatically to the
|
637
|
+
# DB instance during the maintenance window.
|
640
638
|
# @option options [String] :license_model
|
641
639
|
# License model information for the restored DB instance.
|
642
640
|
#
|
@@ -723,7 +721,8 @@ module Aws::RDS
|
|
723
721
|
# If you specify `io1`, you must also include a value for the `Iops`
|
724
722
|
# parameter.
|
725
723
|
#
|
726
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
724
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
725
|
+
# `standard`
|
727
726
|
# @option options [String] :tde_credential_arn
|
728
727
|
# The ARN from the key store with which to associate the instance for
|
729
728
|
# TDE encryption.
|
@@ -738,16 +737,14 @@ module Aws::RDS
|
|
738
737
|
# @option options [String] :domain
|
739
738
|
# Specify the Active Directory Domain to restore the instance in.
|
740
739
|
# @option options [Boolean] :copy_tags_to_snapshot
|
741
|
-
#
|
742
|
-
#
|
743
|
-
# copied.
|
740
|
+
# True to copy all tags from the restored DB instance to snapshots of
|
741
|
+
# the restored DB instance, and otherwise false. The default is false.
|
744
742
|
# @option options [String] :domain_iam_role_name
|
745
743
|
# Specify the name of the IAM role to be used when making API calls to
|
746
744
|
# the Directory Service.
|
747
745
|
# @option options [Boolean] :enable_iam_database_authentication
|
748
|
-
#
|
749
|
-
#
|
750
|
-
# mapping is disabled.
|
746
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
747
|
+
# accounts to database accounts, and otherwise false.
|
751
748
|
#
|
752
749
|
# You can enable IAM database authentication for the following database
|
753
750
|
# engines
|
@@ -755,6 +752,8 @@ module Aws::RDS
|
|
755
752
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
756
753
|
#
|
757
754
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
755
|
+
#
|
756
|
+
# Default: `false`
|
758
757
|
# @option options [Array<String>] :enable_cloudwatch_logs_exports
|
759
758
|
# The list of logs that the restored DB instance is to export to
|
760
759
|
# CloudWatch Logs. The values in the list depend on the DB engine being
|
@@ -768,8 +767,8 @@ module Aws::RDS
|
|
768
767
|
# The number of CPU cores and the number of threads per core for the DB
|
769
768
|
# instance class of the DB instance.
|
770
769
|
# @option options [Boolean] :use_default_processor_features
|
771
|
-
# A value that
|
772
|
-
#
|
770
|
+
# A value that specifies that the DB instance class of the DB instance
|
771
|
+
# uses its default processor features.
|
773
772
|
# @option options [String] :db_parameter_group_name
|
774
773
|
# The name of the DB parameter group to associate with this DB instance.
|
775
774
|
# If this argument is omitted, the default DBParameterGroup for the
|
@@ -785,10 +784,10 @@ module Aws::RDS
|
|
785
784
|
#
|
786
785
|
# * Can't end with a hyphen or contain two consecutive hyphens.
|
787
786
|
# @option options [Boolean] :deletion_protection
|
788
|
-
#
|
789
|
-
#
|
790
|
-
#
|
791
|
-
#
|
787
|
+
# Indicates if the DB instance should have deletion protection enabled.
|
788
|
+
# The database can't be deleted when this value is set to true. The
|
789
|
+
# default is false. For more information, see [ Deleting a DB
|
790
|
+
# Instance][1].
|
792
791
|
#
|
793
792
|
#
|
794
793
|
#
|
@@ -323,9 +323,8 @@ module Aws::RDS
|
|
323
323
|
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` must
|
324
324
|
# be supplied.
|
325
325
|
# @option options [Boolean] :enabled
|
326
|
-
# A value
|
327
|
-
#
|
328
|
-
# created but not active.
|
326
|
+
# A Boolean value; set to **true** to activate the subscription, set to
|
327
|
+
# **false** to create the subscription but not active it.
|
329
328
|
# @option options [Array<Types::Tag>] :tags
|
330
329
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
331
330
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -390,7 +389,7 @@ module Aws::RDS
|
|
390
389
|
#
|
391
390
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.html
|
392
391
|
# @option options [Boolean] :enabled
|
393
|
-
# A value
|
392
|
+
# A Boolean value; set to **true** to activate the subscription.
|
394
393
|
# @return [EventSubscription]
|
395
394
|
def modify(options = {})
|
396
395
|
options = options.merge(subscription_name: @name)
|
@@ -342,9 +342,9 @@ module Aws::RDS
|
|
342
342
|
# @option options [Array<String>] :options_to_remove
|
343
343
|
# Options in this list are removed from the option group.
|
344
344
|
# @option options [Boolean] :apply_immediately
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
345
|
+
# Indicates whether the changes should be applied immediately, or during
|
346
|
+
# the next maintenance window for each instance associated with the
|
347
|
+
# option group.
|
348
348
|
# @return [OptionGroup]
|
349
349
|
def modify(options = {})
|
350
350
|
options = options.merge(option_group_name: @name)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -216,7 +216,7 @@ module Aws::RDS
|
|
216
216
|
# @option options [Array<Types::Tag>] :tags
|
217
217
|
# Tags to assign to the DB cluster.
|
218
218
|
# @option options [Boolean] :storage_encrypted
|
219
|
-
#
|
219
|
+
# Specifies whether the DB cluster is encrypted.
|
220
220
|
# @option options [String] :kms_key_id
|
221
221
|
# The AWS KMS key identifier for an encrypted DB cluster.
|
222
222
|
#
|
@@ -232,7 +232,7 @@ module Aws::RDS
|
|
232
232
|
# then Amazon RDS will use the encryption key used to encrypt the
|
233
233
|
# source. Otherwise, Amazon RDS will use your default encryption key.
|
234
234
|
#
|
235
|
-
# * If the `StorageEncrypted` parameter is
|
235
|
+
# * If the `StorageEncrypted` parameter is true and
|
236
236
|
# `ReplicationSourceIdentifier` is not specified, then Amazon RDS will
|
237
237
|
# use your default encryption key.
|
238
238
|
#
|
@@ -284,9 +284,10 @@ module Aws::RDS
|
|
284
284
|
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
285
285
|
# [2]: https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
286
286
|
# @option options [Boolean] :enable_iam_database_authentication
|
287
|
-
#
|
288
|
-
#
|
289
|
-
#
|
287
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
288
|
+
# accounts to database accounts, and otherwise false.
|
289
|
+
#
|
290
|
+
# Default: `false`
|
290
291
|
# @option options [Integer] :backtrack_window
|
291
292
|
# The target backtrack window, in seconds. To disable backtracking, set
|
292
293
|
# this value to 0.
|
@@ -315,15 +316,15 @@ module Aws::RDS
|
|
315
316
|
# For DB clusters in `serverless` DB engine mode, the scaling properties
|
316
317
|
# of the DB cluster.
|
317
318
|
# @option options [Boolean] :deletion_protection
|
318
|
-
#
|
319
|
-
# enabled. The database can't be deleted when
|
320
|
-
#
|
319
|
+
# Indicates whether the DB cluster should have deletion protection
|
320
|
+
# enabled. The database can't be deleted when this value is set to
|
321
|
+
# true. The default is false.
|
321
322
|
# @option options [String] :global_cluster_identifier
|
322
323
|
# The global cluster ID of an Aurora cluster that becomes the primary
|
323
324
|
# cluster in the new global database cluster.
|
324
325
|
# @option options [Boolean] :copy_tags_to_snapshot
|
325
|
-
#
|
326
|
-
#
|
326
|
+
# True to copy all tags from the DB cluster to snapshots of the DB
|
327
|
+
# cluster, and otherwise false. The default is false.
|
327
328
|
# @option options [String] :destination_region
|
328
329
|
# @option options [String] :source_region
|
329
330
|
# The source region of the snapshot. This is only needed when the
|
@@ -554,10 +555,10 @@ module Aws::RDS
|
|
554
555
|
# following:
|
555
556
|
#
|
556
557
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
557
|
-
#
|
558
|
+
# 32768.
|
558
559
|
#
|
559
560
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
560
|
-
#
|
561
|
+
# 32768.
|
561
562
|
#
|
562
563
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
563
564
|
#
|
@@ -567,10 +568,10 @@ module Aws::RDS
|
|
567
568
|
# following:
|
568
569
|
#
|
569
570
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
570
|
-
#
|
571
|
+
# 32768.
|
571
572
|
#
|
572
573
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
573
|
-
#
|
574
|
+
# 32768.
|
574
575
|
#
|
575
576
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
576
577
|
#
|
@@ -580,10 +581,10 @@ module Aws::RDS
|
|
580
581
|
# following:
|
581
582
|
#
|
582
583
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
583
|
-
#
|
584
|
+
# 32768.
|
584
585
|
#
|
585
586
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
586
|
-
#
|
587
|
+
# 32768.
|
587
588
|
#
|
588
589
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
589
590
|
#
|
@@ -593,10 +594,10 @@ module Aws::RDS
|
|
593
594
|
# following:
|
594
595
|
#
|
595
596
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
|
596
|
-
#
|
597
|
+
# 32768.
|
597
598
|
#
|
598
599
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
599
|
-
#
|
600
|
+
# 32768.
|
600
601
|
#
|
601
602
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
602
603
|
#
|
@@ -787,9 +788,9 @@ module Aws::RDS
|
|
787
788
|
#
|
788
789
|
# Example: `us-east-1d`
|
789
790
|
#
|
790
|
-
# Constraint: The
|
791
|
-
#
|
792
|
-
#
|
791
|
+
# Constraint: The AvailabilityZone parameter can't be specified if the
|
792
|
+
# MultiAZ parameter is set to `true`. The specified Availability Zone
|
793
|
+
# must be in the same AWS Region as the current endpoint.
|
793
794
|
#
|
794
795
|
#
|
795
796
|
#
|
@@ -923,9 +924,9 @@ module Aws::RDS
|
|
923
924
|
#
|
924
925
|
# Type: Integer
|
925
926
|
# @option options [Boolean] :multi_az
|
926
|
-
# A value that
|
927
|
-
# deployment. You can't set the
|
928
|
-
#
|
927
|
+
# A value that specifies whether the DB instance is a Multi-AZ
|
928
|
+
# deployment. You can't set the AvailabilityZone parameter if the
|
929
|
+
# MultiAZ parameter is set to true.
|
929
930
|
# @option options [String] :engine_version
|
930
931
|
# The version number of the database engine to use.
|
931
932
|
#
|
@@ -973,9 +974,10 @@ module Aws::RDS
|
|
973
974
|
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.Oracle.PatchComposition.html
|
974
975
|
# [5]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_PostgreSQL.html#PostgreSQL.Concepts.General.DBVersions
|
975
976
|
# @option options [Boolean] :auto_minor_version_upgrade
|
976
|
-
#
|
977
|
-
#
|
978
|
-
#
|
977
|
+
# Indicates that minor engine upgrades are applied automatically to the
|
978
|
+
# DB instance during the maintenance window.
|
979
|
+
#
|
980
|
+
# Default: `true`
|
979
981
|
# @option options [String] :license_model
|
980
982
|
# License model information for this DB instance.
|
981
983
|
#
|
@@ -1010,12 +1012,11 @@ module Aws::RDS
|
|
1010
1012
|
# Not applicable. The character set is managed by the DB cluster. For
|
1011
1013
|
# more information, see `CreateDBCluster`.
|
1012
1014
|
# @option options [Boolean] :publicly_accessible
|
1013
|
-
#
|
1014
|
-
#
|
1015
|
-
#
|
1016
|
-
#
|
1017
|
-
#
|
1018
|
-
# address.
|
1015
|
+
# Specifies the accessibility options for the DB instance. A value of
|
1016
|
+
# true specifies an Internet-facing instance with a publicly resolvable
|
1017
|
+
# DNS name, which resolves to a public IP address. A value of false
|
1018
|
+
# specifies an internal instance with a DNS name that resolves to a
|
1019
|
+
# private IP address.
|
1019
1020
|
#
|
1020
1021
|
# Default: The default behavior varies depending on whether
|
1021
1022
|
# `DBSubnetGroupName` is specified.
|
@@ -1049,7 +1050,8 @@ module Aws::RDS
|
|
1049
1050
|
# If you specify `io1`, you must also include a value for the `Iops`
|
1050
1051
|
# parameter.
|
1051
1052
|
#
|
1052
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
1053
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
1054
|
+
# `standard`
|
1053
1055
|
# @option options [String] :tde_credential_arn
|
1054
1056
|
# The ARN from the key store with which to associate the instance for
|
1055
1057
|
# TDE encryption.
|
@@ -1057,13 +1059,14 @@ module Aws::RDS
|
|
1057
1059
|
# The password for the given ARN from the key store in order to access
|
1058
1060
|
# the device.
|
1059
1061
|
# @option options [Boolean] :storage_encrypted
|
1060
|
-
#
|
1061
|
-
# default, it is not encrypted.
|
1062
|
+
# Specifies whether the DB instance is encrypted.
|
1062
1063
|
#
|
1063
1064
|
# **Amazon Aurora**
|
1064
1065
|
#
|
1065
1066
|
# Not applicable. The encryption for DB instances is managed by the DB
|
1066
1067
|
# cluster.
|
1068
|
+
#
|
1069
|
+
# Default: false
|
1067
1070
|
# @option options [String] :kms_key_id
|
1068
1071
|
# The AWS KMS key identifier for an encrypted DB instance.
|
1069
1072
|
#
|
@@ -1078,11 +1081,11 @@ module Aws::RDS
|
|
1078
1081
|
# Not applicable. The KMS key identifier is managed by the DB cluster.
|
1079
1082
|
# For more information, see `CreateDBCluster`.
|
1080
1083
|
#
|
1081
|
-
# If `StorageEncrypted` is
|
1082
|
-
# the `KmsKeyId` parameter, then Amazon RDS will use your
|
1083
|
-
# encryption key. AWS KMS creates the default encryption key for
|
1084
|
-
# AWS account. Your AWS account has a different default encryption
|
1085
|
-
# for each AWS Region.
|
1084
|
+
# If the `StorageEncrypted` parameter is true, and you do not specify a
|
1085
|
+
# value for the `KmsKeyId` parameter, then Amazon RDS will use your
|
1086
|
+
# default encryption key. AWS KMS creates the default encryption key for
|
1087
|
+
# your AWS account. Your AWS account has a different default encryption
|
1088
|
+
# key for each AWS Region.
|
1086
1089
|
# @option options [String] :domain
|
1087
1090
|
# For an Amazon RDS DB instance that's running Microsoft SQL Server,
|
1088
1091
|
# this parameter specifies the Active Directory directory ID to create
|
@@ -1096,8 +1099,8 @@ module Aws::RDS
|
|
1096
1099
|
#
|
1097
1100
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/DeveloperGuide/USER_SQLServerWinAuth.html
|
1098
1101
|
# @option options [Boolean] :copy_tags_to_snapshot
|
1099
|
-
#
|
1100
|
-
#
|
1102
|
+
# True to copy all tags from the DB instance to snapshots of the DB
|
1103
|
+
# instance, and otherwise false. The default is false.
|
1101
1104
|
#
|
1102
1105
|
# **Amazon Aurora**
|
1103
1106
|
#
|
@@ -1150,9 +1153,8 @@ module Aws::RDS
|
|
1150
1153
|
#
|
1151
1154
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
1152
1155
|
# @option options [Boolean] :enable_iam_database_authentication
|
1153
|
-
#
|
1154
|
-
#
|
1155
|
-
# mapping is disabled.
|
1156
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
1157
|
+
# accounts to database accounts, and otherwise false.
|
1156
1158
|
#
|
1157
1159
|
# You can enable IAM database authentication for the following database
|
1158
1160
|
# engines:
|
@@ -1167,9 +1169,11 @@ module Aws::RDS
|
|
1167
1169
|
# * For MySQL 5.6, minor version 5.6.34 or higher
|
1168
1170
|
#
|
1169
1171
|
# * For MySQL 5.7, minor version 5.7.16 or higher
|
1172
|
+
#
|
1173
|
+
# Default: `false`
|
1170
1174
|
# @option options [Boolean] :enable_performance_insights
|
1171
|
-
#
|
1172
|
-
#
|
1175
|
+
# True to enable Performance Insights for the DB instance, and otherwise
|
1176
|
+
# false.
|
1173
1177
|
#
|
1174
1178
|
# For more information, see [Using Amazon Performance Insights][1] in
|
1175
1179
|
# the *Amazon Relational Database Service User Guide*.
|
@@ -1181,11 +1185,6 @@ module Aws::RDS
|
|
1181
1185
|
# The AWS KMS key identifier for encryption of Performance Insights
|
1182
1186
|
# data. The KMS key ID is the Amazon Resource Name (ARN), KMS key
|
1183
1187
|
# identifier, or the KMS key alias for the KMS encryption key.
|
1184
|
-
#
|
1185
|
-
# If you do not specify a value for `PerformanceInsightsKMSKeyId`, then
|
1186
|
-
# Amazon RDS uses your default encryption key. AWS KMS creates the
|
1187
|
-
# default encryption key for your AWS account. Your AWS account has a
|
1188
|
-
# different default encryption key for each AWS Region.
|
1189
1188
|
# @option options [Integer] :performance_insights_retention_period
|
1190
1189
|
# The amount of time, in days, to retain Performance Insights data.
|
1191
1190
|
# Valid values are 7 or 731 (2 years).
|
@@ -1203,10 +1202,10 @@ module Aws::RDS
|
|
1203
1202
|
# The number of CPU cores and the number of threads per core for the DB
|
1204
1203
|
# instance class of the DB instance.
|
1205
1204
|
# @option options [Boolean] :deletion_protection
|
1206
|
-
#
|
1207
|
-
#
|
1208
|
-
#
|
1209
|
-
#
|
1205
|
+
# Indicates if the DB instance should have deletion protection enabled.
|
1206
|
+
# The database can't be deleted when this value is set to true. The
|
1207
|
+
# default is false. For more information, see [ Deleting a DB
|
1208
|
+
# Instance][1].
|
1210
1209
|
#
|
1211
1210
|
#
|
1212
1211
|
#
|
@@ -1423,9 +1422,8 @@ module Aws::RDS
|
|
1423
1422
|
# * If the source type is a DB snapshot, a `DBSnapshotIdentifier` must
|
1424
1423
|
# be supplied.
|
1425
1424
|
# @option options [Boolean] :enabled
|
1426
|
-
# A value
|
1427
|
-
#
|
1428
|
-
# created but not active.
|
1425
|
+
# A Boolean value; set to **true** to activate the subscription, set to
|
1426
|
+
# **false** to create the subscription but not active it.
|
1429
1427
|
# @option options [Array<Types::Tag>] :tags
|
1430
1428
|
# A list of tags. For more information, see [Tagging Amazon RDS
|
1431
1429
|
# Resources][1] in the *Amazon RDS User Guide.*
|
@@ -1740,6 +1738,7 @@ module Aws::RDS
|
|
1740
1738
|
# default_only: false,
|
1741
1739
|
# list_supported_character_sets: false,
|
1742
1740
|
# list_supported_timezones: false,
|
1741
|
+
# include_all: false,
|
1743
1742
|
# })
|
1744
1743
|
# @param [Hash] options ({})
|
1745
1744
|
# @option options [String] :engine
|
@@ -1760,22 +1759,19 @@ module Aws::RDS
|
|
1760
1759
|
# @option options [Array<Types::Filter>] :filters
|
1761
1760
|
# This parameter is not currently supported.
|
1762
1761
|
# @option options [Boolean] :default_only
|
1763
|
-
#
|
1764
|
-
#
|
1762
|
+
# Indicates that only the default version of the specified engine or
|
1763
|
+
# engine and major version combination is returned.
|
1765
1764
|
# @option options [Boolean] :list_supported_character_sets
|
1766
|
-
#
|
1767
|
-
# for each engine version.
|
1768
|
-
#
|
1769
|
-
# If this parameter is enabled and the requested engine supports the
|
1765
|
+
# If this parameter is specified and the requested engine supports the
|
1770
1766
|
# `CharacterSetName` parameter for `CreateDBInstance`, the response
|
1771
1767
|
# includes a list of supported character sets for each engine version.
|
1772
1768
|
# @option options [Boolean] :list_supported_timezones
|
1773
|
-
#
|
1774
|
-
# each engine version.
|
1775
|
-
#
|
1776
|
-
# If this parameter is enabled and the requested engine supports the
|
1769
|
+
# If this parameter is specified and the requested engine supports the
|
1777
1770
|
# `TimeZone` parameter for `CreateDBInstance`, the response includes a
|
1778
1771
|
# list of supported time zones for each engine version.
|
1772
|
+
# @option options [Boolean] :include_all
|
1773
|
+
# Whether to include non-available engine versions in the list. The
|
1774
|
+
# default is to list only available engine versions.
|
1779
1775
|
# @return [DBEngineVersion::Collection]
|
1780
1776
|
def db_engine_versions(options = {})
|
1781
1777
|
batches = Enumerator.new do |y|
|
@@ -2027,9 +2023,9 @@ module Aws::RDS
|
|
2027
2023
|
# If you don't specify a `SnapshotType` value, then both automated and
|
2028
2024
|
# manual snapshots are returned. Shared and public DB snapshots are not
|
2029
2025
|
# included in the returned results by default. You can include shared
|
2030
|
-
# snapshots with these results by
|
2031
|
-
#
|
2032
|
-
#
|
2026
|
+
# snapshots with these results by setting the `IncludeShared` parameter
|
2027
|
+
# to `true`. You can include public snapshots with these results by
|
2028
|
+
# setting the `IncludePublic` parameter to `true`.
|
2033
2029
|
#
|
2034
2030
|
# The `IncludeShared` and `IncludePublic` parameters don't apply for
|
2035
2031
|
# `SnapshotType` values of `manual` or `automated`. The `IncludePublic`
|
@@ -2043,21 +2039,20 @@ module Aws::RDS
|
|
2043
2039
|
# @option options [Array<Types::Filter>] :filters
|
2044
2040
|
# This parameter is not currently supported.
|
2045
2041
|
# @option options [Boolean] :include_shared
|
2046
|
-
#
|
2047
|
-
#
|
2048
|
-
#
|
2049
|
-
# included.
|
2042
|
+
# True to include shared manual DB snapshots from other AWS accounts
|
2043
|
+
# that this AWS account has been given permission to copy or restore,
|
2044
|
+
# and otherwise false. The default is `false`.
|
2050
2045
|
#
|
2051
2046
|
# You can give an AWS account permission to restore a manual DB snapshot
|
2052
2047
|
# from another AWS account by using the `ModifyDBSnapshotAttribute` API
|
2053
2048
|
# action.
|
2054
2049
|
# @option options [Boolean] :include_public
|
2055
|
-
#
|
2056
|
-
#
|
2057
|
-
#
|
2050
|
+
# True to include manual DB snapshots that are public and can be copied
|
2051
|
+
# or restored by any AWS account, and otherwise false. The default is
|
2052
|
+
# false.
|
2058
2053
|
#
|
2059
2054
|
# You can share a manual DB snapshot as public by using the
|
2060
|
-
# ModifyDBSnapshotAttribute API.
|
2055
|
+
# `ModifyDBSnapshotAttribute` API.
|
2061
2056
|
# @option options [String] :dbi_resource_id
|
2062
2057
|
# A specific DB resource ID to describe.
|
2063
2058
|
# @return [DBSnapshot::Collection]
|
@@ -2421,8 +2416,8 @@ module Aws::RDS
|
|
2421
2416
|
#
|
2422
2417
|
# Valid Values: `"Partial Upfront" | "All Upfront" | "No Upfront" `
|
2423
2418
|
# @option options [Boolean] :multi_az
|
2424
|
-
#
|
2425
|
-
#
|
2419
|
+
# The Multi-AZ filter value. Specify this parameter to show only those
|
2420
|
+
# reservations matching the specified Multi-AZ parameter.
|
2426
2421
|
# @option options [Array<Types::Filter>] :filters
|
2427
2422
|
# This parameter is not currently supported.
|
2428
2423
|
# @return [ReservedDBInstance::Collection]
|
@@ -2498,8 +2493,8 @@ module Aws::RDS
|
|
2498
2493
|
#
|
2499
2494
|
# Valid Values: `"Partial Upfront" | "All Upfront" | "No Upfront" `
|
2500
2495
|
# @option options [Boolean] :multi_az
|
2501
|
-
#
|
2502
|
-
#
|
2496
|
+
# The Multi-AZ filter value. Specify this parameter to show only the
|
2497
|
+
# available offerings matching the specified Multi-AZ parameter.
|
2503
2498
|
# @option options [Array<Types::Filter>] :filters
|
2504
2499
|
# This parameter is not currently supported.
|
2505
2500
|
# @return [ReservedDBInstancesOffering::Collection]
|